Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Describe the bug The behavior for handling prompt=none described in the OIDC spec (https://openid.net/specs/openid-connect-core-1_0.html#AuthRequest) is:
prompt=none
prompt=none + something else
The current implementation raises an OIDCNoPrompt exception whenever we get prompt=none, the code to properly handle the exists in https://github.com/oauthlib/oauthlib/blob/master/oauthlib/openid/connect/core/grant_types/base.py#L302
OIDCNoPrompt
Expected behavior
The functions validate_silent_login and validate_silent_authorization must be called and the proper errors must be raised
validate_silent_login
validate_silent_authorization
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Describe the bug
The behavior for handling
prompt=none
described in the OIDC spec (https://openid.net/specs/openid-connect-core-1_0.html#AuthRequest) is:prompt=none
, return error it user isn't authenticatedprompt=none + something else
then return an error.The current implementation raises an
OIDCNoPrompt
exception whenever we getprompt=none
, the code to properly handle the exists in https://github.com/oauthlib/oauthlib/blob/master/oauthlib/openid/connect/core/grant_types/base.py#L302Expected behavior
The functions
validate_silent_login
andvalidate_silent_authorization
must be called and the proper errors must be raisedThe text was updated successfully, but these errors were encountered: