I’ve just started my first Blazor WASM project which requires authentication. We use Auth0 for user identity management.
Following this article on Auth0 website, I was able to get authentication working: https://auth0.com/blog/securing-blazor-webassembly-apps/
My question is about where the actual access and refresh tokens are stored. Typically, they’re stored in local or session storage in the browser but when I checked both, I didn’t see the actual tokens. I can see that some settings such as my client Id, etc are stored in session storage but I don’t see the actual tokens — see image.
Where does Blazor (WASM) store JWT
tokens?