You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on May 31, 2022. It is now read-only.
I've set up an authorization server and a resource server to use the remote token services on spring boot.
The authorization server returns the xml below from the /oauth/check_token endpoint:
The issue is that the decoded authentication doesn't decode the authorities and scopes correctly. It seems to convert the list to a string by taking the last item so the authentication only has the ROLE_USER authority and the write scope.
The text was updated successfully, but these errors were encountered:
Okay, so I fixed this by removing com.fasterxml.jackson.dataformat:jackson-dataformat-xml from the build file. Does this mean that xml serialization isn't supported?
I've set up an authorization server and a resource server to use the remote token services on spring boot.
The authorization server returns the xml below from the
/oauth/check_token
endpoint:The issue is that the decoded authentication doesn't decode the authorities and scopes correctly. It seems to convert the list to a string by taking the last item so the authentication only has the
ROLE_USER
authority and thewrite
scope.The text was updated successfully, but these errors were encountered: