I am working on enabling SSO for one of our apps. I am using the NodeJS MSAL-node module. I am using the authorization code flow. It works fine but I don't see anything stored in cookies, local storage or session storage. My question is where does MSAL-node store its ID token, refresh token or access token to enable SSO?
Asked
Active
Viewed 322 times
1 Answers
2
They are stored in the applications memory. You can retrieve them with getTokenCache().
Cookies, local storage or session storage are in the browser. Since node does not run in the browser, the tokens are not there.

Moritz Ringler
- 9,772
- 9
- 21
- 34

Paul Killian
- 21
- 2