-
Notifications
You must be signed in to change notification settings - Fork 1.3k
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
Implement end_session_endpoint for RP-Initiated Logout #266
Comments
And I would be interested in helping to implement this feature |
Thanks for the detailed report @mcginkel ! We will need to implement this feature. However, the focus at this time is the login-specific features before we build out the logout features, since the initial implementation of OIDC is quite minimal. I'll be sure to reach out when we are ready to implement this. If you see another login-specific feature you would like to work on then please let me know and we'll figure out the scheduling for it. |
Hi @jgrandja, |
@phuongdpham This issue is still on hold. Please see previous comment for additional details. |
@jgrandja yeah, so how can we logout or disable current session for user logged in right now? Thanks, |
The question you have does not seem directly related to the Please see the Spring Security reference for Handling Logouts. |
Thanks, |
@jgrandja Hi, will this feature be implemented in near future? This seems like a necessary feature doesn't it? :) I would love to have that functionality. |
@vakho10 We're planning on building out OIDC specific features after we release 0.3.0. I don't have a timeline for this feature yet. |
don't have a timeline for this feature yet,Now, How to log out of the client website and the oauth2 authorization server when using oauth2login |
hi @jgrandja, |
now,I use twice logout ,one send to client ,other send to oauth server |
@sahariardev This feature is still on hold. We have a few higher priority items that need to be completed first. |
Any updates on this feature? |
@monstrfolk No update as of now. After we release |
hi guys I have in my personal application VAuthenticator a my implementation of front channel single logout. I do not know, but it is possible that I made some mistake or misunderstanding reading the RFC. |
Exciting to see it be moved from |
@mcginkel We're going to start working on this feature. Are you still interested and available to work on this feature? No worries if you're not available as I can take it on. I wanted to reach out either way. |
This feature very much needed for us. Kindly release it ASAP |
Huge release. Thanks |
hi when do we have this feature on maven ? |
@imaxkhan The |
tnx thats awsome |
hi |
Expected Behavior
Implement the end_session endpoint to support rp initiated logout according to the spec in https://openid.net/specs/openid-connect-rpinitiated-1_0.html#rfc.section.2
Scope: implement MUST and enough SHOULD so the scenario described in context is supported
Current Behavior
Not yet supported.
Context
When I use the spring-authorization-server to facilitate aso via openid-connect, I am not aware of an alternative way to logout and return to the client app.
If I logout now in the client app I cannot add the OidcClientInitiatedLogoutSuccessHandler as described in
https://docs.spring.io/spring-security/site/docs/current/reference/html5/#oauth2login-advanced-oidc-logout
Expected work:
not yet in scope: (as it seems too much work for one issue)
"As part of the OP logging out the End-User, the OP uses the logout mechanism(s) registered by the RPs to notify any RPs logged in as that End-User that they are to likewise log out the End-User. RPs can use any of OpenID Connect Session Management 1.0 [OpenID.Session], OpenID Connect Front-Channel Logout 1.0 [OpenID.FrontChannel], and/or OpenID Connect Back-Channel Logout 1.0 [OpenID.BackChannel] to receive logout notifications from the OP, depending upon which of these mechanisms the OP and RPs mutually support."
The text was updated successfully, but these errors were encountered: