Microsoft Entra ID
A Microsoft Entra identity service that provides identity management and access control capabilities. Replaces Azure Active Directory.
23,097 questions
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Looking at using MSAL.js across SPA micro apps registered with this library. Does MSAL.js support session sharing across SPA micro apps?
MSAL.js will not support it by design. MSAL.js is a JavaScript library which will work on client side of applications and it will not have any direct interaction to the session stored in server. Also, MSAL is designed for authenticating users using Azure AD and not to handle sessions.
You need to use any server side languages such as C#,java..etc to handle session sharing across SPA micro app.