-
Notifications
You must be signed in to change notification settings - Fork 85
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
feat(jans-auth-server): add client_id parameter support to /end_session #5942
Comments
Without the client_id, the problem is that we don't know where to redirect the browser after end_session? |
@nynymike we know where to redirect because usually |
Ok, let's go ahead with it. Although the client_id is not a secret, we're still enforcing re-registered redirect_uris. |
#5942 Signed-off-by: YuriyZ <yzabrovarniy@gmail.com>
…t_id parameter is present #5942 Signed-off-by: YuriyZ <yzabrovarniy@gmail.com>
Describe the issue
Add client_id parameter support to /end_session
Support: 11416
oxauth ticket GluuFederation/oxAuth#1862
Motivation
Corner case is when session is expired and grant object is expired (or revoked) and AS is not able to identify client.
Obviously if AS can't identify client (due to missed session and id_token_hint) it falls back to global validation via
clientWhiteList
andallowPostLogoutRedirectWithoutValidation=true
.If we want to avoid global
clientWhiteList
question is still the same, how AS should figure out client if session and id_token_hint is not there ?One possible solution is to pass client_id explicitly, so AS will do following:
The text was updated successfully, but these errors were encountered: