Redirect user after authentication with OpenIdConnect in ASP.Net MVC
问题 I am using OpenIdConnect provider with Owin/Katana for authentication in my asp.net mvc application. OpenIdConnect Provide authenticates users against Active Directory. I wanted to do a simple authorization check once the user is authenticated and redirect the user to another view. app.UseOpenIdConnectAuthentication(new OpenIdConnectAuthenticationOptions() { Authority = "url", Scope="scopes", ResponseType = "response", ClientId = "clientid", SignInAsAuthenticationType = "Cookies",