How to Authenticate an Anaplan SSO user(SAML) in React application.
We have configured SSO for authentication in Anaplan against SAML2.0 AAD,
We have a requirement that user should be able to login to his anaplan account without entering username and password using SSO as user is already logged into machine.
We want to Authenticate Anaplan User from React Application and want to fetch details of workspace etc from user account.
Please help if any one has worked on similar requirement can help me with the documentation.
Answers
-
Seamless SSO between a React app, Anaplan, and Azure AD involves configuring SAML 2.0 between Anaplan and AAD, using the Authorization Code Grant with PKCE and MSAL in your React app for secure authentication, and then AZ DMV using the obtained access token to interact with the Anaplan API. Silent authentication with MSAL enables automatic login if the user is already authenticated with AAD. Careful configuration, security measures, and error handling are crucial.
0