-
Notifications
You must be signed in to change notification settings - Fork 689
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
State param during logout #739
Comments
Makes sense to me. 👍 If it's part of the specs then direct support for a |
For everyone's convenience : https://openid.net/specs/openid-connect-session-1_0.html#RPLogout (yes, it is part of the (oidc session management) spec) |
Thx @vdveer then it for sure makes sense to add this feature to the library! I'll tag this with |
PR has been submitted by one of my colleagues: @pmccloghrylaing |
Hello, first off I'd like to say how much I appreciate this module and the author(s) for all the effort that has been put into it.
I'd like to request a feature, I could potentially create a PR for it if necessary.
Is your feature request related to a problem? Please describe.
I want to forcibly log out an existing user in order to log them in with an external provider. I want to do this in order to ensure that the user in my application is the same user logged in via the external provider. However, upon logging out the user all context is lost during the round-trip.
Describe the solution you'd like
During logOut, I'd like to be able to pass a
state
parameter along with thepostLogoutRedirectUri
andid_token_hint
so that after logout I can round-trip state across the redirect.Additional context
http://docs.identityserver.io/en/3.1.0/endpoints/endsession.html
The text was updated successfully, but these errors were encountered: