corrige l'id client

This commit is contained in:
2016-06-04 20:59:23 +02:00
parent 242972e930
commit edcac5f332

View File

@ -11,7 +11,7 @@ namespace Mvc.Client.Controllers {
public ActionResult SignIn(string returnUrl) {
// Instruct the OIDC client middleware to redirect the user agent to the identity provider.
// Note: the authenticationType parameter must match the value configured in Startup.cs
var properties = new AuthenticationProperties { RedirectUri = "http://localhost:5002/" };
var properties = new AuthenticationProperties { RedirectUri = "/" };
return new ChallengeResult(OpenIdConnectDefaults.AuthenticationScheme, properties);
}