-
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
Allow non-authorization code requests to generate the sid field. #1654
Conversation
@leshalv I'm trying to understand the reason for this change. The
At the moment, Spring Authorization Server supports OpenID Connect Authentication using As an FYI, before submitting a PR, please log an issue first describing the proposed enhancement so we can discuss beforehand. Please provide your reasoning on this proposed change. |
Current Implementation and LimitationsAt present, the Spring Authorization Server supports OpenID Connect Authentication using the Reasons for Adding the
|
I don't understand why this is listed since the
This comment is too general. What part of the current implementation does not align with the spec? Please be specific and reference the part of the spec that the current implementation does not align with. The comments under "Improved User Experience" and "Security Considerations" are also too general and speculative. Again, if you see room for improvement, please be very specific and demonstrate there is an issue with the current implementation.
FYI, there are no plans to support the Since the |
When using it, if you want to extend other authentication methods, such as implicit authorization, you also need sid and nonce, I don't think you have to judge whether it is authorization_code here, because the id_token itself can contain sid and nonce, which is convenient for better expansion and reduces duplicate boilerplate code. @jgrandja |
You can register a custom |
No description provided.