Is there a way to redirect the to a URL on OpenIdConnect signout? #28153
Unanswered
paulomorgado
asked this question in
Q&A
Replies: 1 comment 5 replies
-
|
Can you show the config as well?
Could you back up and summarize what you're trying to acomplish? |
Beta Was this translation helpful? Give feedback.
5 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
When the request hits the endpoint configured in
OpenIdConnectOptions.RemoteSignoutPath, it doesn't invoke the remote authority and doesn't redirect to the endpoint defined inOpenIdConnectOptions.SignedOutRedirectUribecauseOpenIdConnectOptions.SignedOutCallbackPathis not being invoked.I've set up authentication as:
Startup.ConfigureServices
appsettings.json
{ "Security": { "OpenIdConnect": { "Authority": "<redacted>", "ClientId": "<redacted>", "CallbackPath": "/auth/signin-callback-oidc", "RemoteSignOutPath": "/auth/signout-oidc", "SignedOutCallbackPath": "/auth/signout-callback-oidc", "SignedOutRedirectUri": "/", "UseTokenLifetime": true, "RequireHttpsMetadata": false } }According to the
OpenIdConnectOptions Class:SignedOutRedirectUriRemoteSignOutPathWhat am I missing here?
Beta Was this translation helpful? Give feedback.
All reactions