-
Notifications
You must be signed in to change notification settings - Fork 1.3k
OAuth2AuthorizationRequestDeserializer fails on multi-valued request parameters #1666
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
Comments
@stefanocke Thanks for reporting this. I've confirmed this is a bug. It appears we need to register a mixin in Would you be interested in submitting a fix for this? |
Hi @jgrandja, Since OP is not replying, could I work on this issue? Thanks! |
Yes, please @MrJovanovic13. Thank you. |
MrJovanovic13
added a commit
to MrJovanovic13/spring-authorization-server
that referenced
this issue
Jul 22, 2024
MrJovanovic13
added a commit
to MrJovanovic13/spring-authorization-server
that referenced
this issue
Jul 22, 2024
MrJovanovic13
added a commit
to MrJovanovic13/spring-authorization-server
that referenced
this issue
Jul 22, 2024
MrJovanovic13
added a commit
to MrJovanovic13/spring-authorization-server
that referenced
this issue
Jul 22, 2024
MrJovanovic13
added a commit
to MrJovanovic13/spring-authorization-server
that referenced
this issue
Jul 22, 2024
This was referenced Jul 31, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Describe the bug
#1250 introduced to store mutli-valued OAuth2 Authorization Request parameters as string arrays.
This seems to lead to the following exception when serializing and de-serializing the request, like done by JdbcOAuth2AuthorizationService.
My assumption is that the OAuth2AuthorizationRequestDeserializer does not support string arrays for "additionalParameters".
To Reproduce
foo=1234&foo=4567
Expected behavior
There should be no exception when using JdbcOAuth2AuthorizationService and multi-valued params.
The text was updated successfully, but these errors were encountered: