I have an ASP.Net MVC Application, Owin, and I\'m using Azure Active Directory authentication as well.
I want to pass a parameter when the user is redirected to the
Just add context.ProtocolMessage.SetParameter(, ); in RedirectToIdentityProvider
context.ProtocolMessage.SetParameter(, );
Notifications = new OpenIdConnectAuthenticationNotifications() { RedirectToIdentityProvider = context => { context.ProtocolMessage.SetParameter("prompt", "login"); return Task.FromResult(0); }, } };