I\'m using OWIN / OAuth with OpenId Connect authentication (Microsoft.Owin.Security.OpenIdConnect
) in a C# ASP MVC web app. The SSO login with Microsoft account
For me the solution was to enforce the creation of an ASP.NET session.
Steps to reproduce:
Solution: Enforce session creation by adding
protected void Session_Start(object sender, EventArgs e)
{
}
to global.asax.cs.