Home > other >  ReactJS app authentication and authorization with Azure AD with OpenID connect
ReactJS app authentication and authorization with Azure AD with OpenID connect

Time:10-18

I wanted to implement ReactJS application authentication with Azure AD with OpenID connect. Microsoft has provided MSAL2.0 library (MSAL React supports the authorization code flow) but is it based on OpenID connect protocol?

Thanks, Mahesh

CodePudding user response:

MSAL Standards compliant with OAuth v2.0 and OpenID Connect (OIDC).

When it comes to your scenario MSAL React uses the OAuth 2.0 Authorization Code Flow with PKCE (Proof Key for Code Exchange), providing additional security.

You can find more information here MSAL for React

  • Related