fixed oidc not using https callbacks
This commit is contained in:
parent
587d6cafc2
commit
30b5429e11
|
@ -125,6 +125,15 @@
|
|||
options.CallbackPath = new PathString("/signin-oidc");
|
||||
options.SignedOutCallbackPath = new PathString("/signout-callback-oidc");
|
||||
options.RemoteSignOutPath = new PathString("/signout-oidc");
|
||||
|
||||
options.Events.OnRedirectToIdentityProvider = context => {
|
||||
var uri = new UriBuilder(context.ProtocolMessage.RedirectUri) {
|
||||
Scheme = "https",
|
||||
Port = -1
|
||||
};
|
||||
context.ProtocolMessage.RedirectUri = uri.ToString();
|
||||
return Task.FromResult(0);
|
||||
};
|
||||
});
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue