-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Registration access token cannot be de-serialized when calling Client Configuration Endpoint #495
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
Comments
@ovidiupopa91 Instead of
Changing |
@jgrandja that's true. This is how it was initially, but in your polish commit you've changed it and I think it makes sense to have an immutable |
ghost
pushed a commit
to ovidiupopa07/spring-authorization-server
that referenced
this issue
Nov 16, 2021
… as there is no mixin registered for SingletonSet Closes spring-projectsgh-495
ghost
pushed a commit
to ovidiupopa07/spring-authorization-server
that referenced
this issue
Nov 17, 2021
Change the authorized scopes Set from SingletonSet to UnmodifiableSet as there is no mixin registered for SingletonSet Closes spring-projectsgh-495
ghost
pushed a commit
to ovidiupopa07/spring-authorization-server
that referenced
this issue
Nov 30, 2021
Change the authorized scopes Set from SingletonSet to UnmodifiableSet as there is no mixin registered for SingletonSet Closes spring-projectsgh-495
doba16
pushed a commit
to doba16/spring-authorization-server
that referenced
this issue
Apr 21, 2023
Change the authorized scopes Set from SingletonSet to UnmodifiableSet as there is no mixin registered for SingletonSet Closes spring-projectsgh-495
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Because the initial registration access token saves the authorized scope in a
SingletonSet
when calling the Client Configuration Endpoint the access token cannot be deserialized because there's no Mixin registered.A new mixin and custom deserializer should be registered in
OAuth2AuthorizationServerJackson2Module
The text was updated successfully, but these errors were encountered: