I have an Azure website which currently leverages MSAL and Entra for login and authorization.
Every time the site is loaded on a new session, the user must manually select a login from the Azure redirect screen.
What I would like to do is cache this token or force automatic SSO for the signed-in user, without forcing a login selection every time.
In mobile apps (Xamarin), I was able to cache the token for re-use until it expired. Can I employ a similar strategy here? Or can I setup "forced" SSO for the signed-in Windows user..?
I vaguely remember that you can force Hybrid Windows tokens in certain scenarios, but I can't seem to find MSAL docs on it.
To achieve single sign-on (SSO) and automatic token acquisition without prompting the user every time, you can indeed leverage token caching and other features provided by Microsoft Authentication Library (MSAL). In your case, for a web application hosted on Azure, you can use the
TokenCache
to cache tokens and reduce the need for the user to sign in repeatedly.Ensure that you are configuring a persistent token cache. This can be achieved by using a cache that persists across sessions. For example, you can use a distributed cache like
DistributedTokenCache
Here is the way i configured TokenCache and deployedStep 1: Install NuGet Packages
Step 2: Create a
TokenCacheProvider
ClassStep 3: Configure Services in
program.cs
Step 4- Add AzureAd
Step 5: Deploy to Azure web App
You can also refer below MSDoc
Token cache serialization in MSAL.NET
Acquire and cache tokens using the Microsoft Authentication Library (MSAL)