Implementing hybrid authentication in Azure

Providing SSO across on-premises applications and those running in the cloud (yours and 3rd party), enabling access to applications with organizational as well as individual credentials are all examples of what is called hybrid authentication. How would you approach implementing it in your solution? »

ADAL distributed token cache in ASP.NET Core

Azure AD Authentication Library relies on its token cache for efficient token management. When you request an access token with AcquireTokenSilentAsync and there is a valid token in the cache you get it right away. Otherwise if there is a refresh token it's used to obtain a new access token... »