1

I am working on a Spring web application that uses Oauth2 for authentication, we have Oauth server to where the web applications redirect to and perform the form-based login. I am trying to find a way to integrate the Oauth server with Azure AD B2C i.e authentication should be done against the Azure AD B2C but the access token generation should happen in the Oauth server.

Is there a way to configure Oauth server to perform the Authentication against the Azure AD B2C?

RamDas
  • 11
  • 3

1 Answers1

0

If you are using OpenID Connect as the authentication protocol.You can add custom OpenID Connect identity providers into your user flows.

enter image description here

See this document for more details.

Tony Ju
  • 14,891
  • 3
  • 17
  • 31
  • Welcome to Stack overflow! If the answer is helpful, please accept it as answer( click on the check mark beside the answer to toggle it from greyed out to filled in). Thank you. – Tony Ju Nov 25 '19 at 07:37