-
Notifications
You must be signed in to change notification settings - Fork 6k
Add POST Binding for RP-initiated OIDC Logout #13002
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
Labels
in: oauth2
An issue in OAuth2 modules (oauth2-core, oauth2-client, oauth2-resource-server, oauth2-jose)
status: duplicate
A duplicate of another issue
type: enhancement
A general enhancement
Milestone
Comments
candrews
added a commit
to candrews/spring-security
that referenced
this issue
Dec 4, 2024
FormRedirectStrategy redirects using an autosubmitting HTML form using the POST method versus DefaultRedirectStrategy which redirects using the GET method. Can be used to implement POST binding for relying party initiated OIDC logout by setting FormRedirectStrategy as the redirection strategy on OidcClientInitiatedLogoutSuccessHandler. Closes spring-projectsgh-13002
candrews
added a commit
to candrews/spring-security
that referenced
this issue
Dec 4, 2024
FormRedirectStrategy redirects using an autosubmitting HTML form using the POST method versus DefaultRedirectStrategy which redirects using the GET method. Can be used to implement POST binding for relying party initiated OIDC logout by setting FormRedirectStrategy as the redirection strategy on OidcClientInitiatedLogoutSuccessHandler. Closes spring-projectsgh-13002 Signed-off-by: Craig Andrews <[email protected]>
candrews
added a commit
to candrews/spring-security
that referenced
this issue
Dec 4, 2024
FormRedirectStrategy redirects using an autosubmitting HTML form using the POST method versus DefaultRedirectStrategy which redirects using the GET method. Can be used to implement POST binding for relying party initiated OIDC logout by setting FormRedirectStrategy as the redirection strategy on OidcClientInitiatedLogoutSuccessHandler. Closes spring-projectsgh-13002 Signed-off-by: Craig Andrews <[email protected]>
candrews
added a commit
to candrews/spring-security
that referenced
this issue
Dec 4, 2024
FormRedirectStrategy redirects using an autosubmitting HTML form using the POST method versus DefaultRedirectStrategy which redirects using the GET method. Can be used to implement POST binding for relying party initiated OIDC logout by setting FormRedirectStrategy as the redirection strategy on OidcClientInitiatedLogoutSuccessHandler. Closes spring-projectsgh-13002 Signed-off-by: Craig Andrews <[email protected]>
candrews
added a commit
to candrews/spring-security
that referenced
this issue
Dec 4, 2024
FormRedirectStrategy redirects using an autosubmitting HTML form using the POST method versus DefaultRedirectStrategy which redirects using the GET method. Can be used to implement POST binding for relying party initiated OIDC logout by setting FormRedirectStrategy as the redirection strategy on OidcClientInitiatedLogoutSuccessHandler. Closes spring-projectsgh-13002 Signed-off-by: Craig Andrews <[email protected]>
candrews
added a commit
to candrews/spring-security
that referenced
this issue
Dec 4, 2024
FormRedirectStrategy redirects using an autosubmitting HTML form using the POST method versus DefaultRedirectStrategy which redirects using the GET method. Can be used to implement POST binding for relying party initiated OIDC logout by setting FormRedirectStrategy as the redirection strategy on OidcClientInitiatedLogoutSuccessHandler. Closes spring-projectsgh-13002 Signed-off-by: Craig Andrews <[email protected]>
sjohnr
pushed a commit
to candrews/spring-security
that referenced
this issue
Jan 29, 2025
FormRedirectStrategy redirects using an autosubmitting HTML form using the POST method versus DefaultRedirectStrategy which redirects using the GET method. Can be used to implement POST binding for relying party initiated OIDC logout by setting FormRedirectStrategy as the redirection strategy on OidcClientInitiatedLogoutSuccessHandler. Closes spring-projectsgh-13002 Signed-off-by: Craig Andrews <[email protected]>
sjohnr
pushed a commit
to candrews/spring-security
that referenced
this issue
Feb 3, 2025
FormRedirectStrategy redirects using an autosubmitting HTML form using the POST method versus DefaultRedirectStrategy which redirects using the GET method. Can be used to implement POST binding for relying party initiated OIDC logout by setting FormRedirectStrategy as the redirection strategy on OidcClientInitiatedLogoutSuccessHandler. Closes spring-projectsgh-13002 Signed-off-by: Craig Andrews <[email protected]>
sjohnr
pushed a commit
that referenced
this issue
Feb 3, 2025
FormRedirectStrategy redirects using an autosubmitting HTML form using the POST method versus DefaultRedirectStrategy which redirects using the GET method. Can be used to implement POST binding for relying party initiated OIDC logout by setting FormRedirectStrategy as the redirection strategy on OidcClientInitiatedLogoutSuccessHandler. Closes gh-13002 Signed-off-by: Craig Andrews <[email protected]>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
in: oauth2
An issue in OAuth2 modules (oauth2-core, oauth2-client, oauth2-resource-server, oauth2-jose)
status: duplicate
A duplicate of another issue
type: enhancement
A general enhancement
Expected Behavior
According to the OIDC spec, the RP-initiated global logout request method could be POST or GET. But currently, the framework doesn't support the POST method.
Current Behavior
The OIDC global logout request seems only to support the GET request method in
org.springframework.security.oauth2.client.oidc.web.logout.OidcClientInitiatedLogoutSuccessHandler
.Context
My question is: Is there any plan to support this, or is there any suggestions on implementing this at the production code? Thanks.
The text was updated successfully, but these errors were encountered: