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
Spring Authorization Server supports the Exchange Token feature; introduced in #60
According to RFC 8693, the token type id_token is valid, but not supported by OAuth2TokenExchangeAuthenticationConverter, which accepts only jwt and access_token.
id_token
jwt
access_token
Moreover, the class is final without any extension points. Right now, the whole AuthenticationConverter has to be implemented.
AuthenticationConverter
The same situation is for OAuth2TokenExchangeAuthenticationProvider, that always issues an access token.
I already asked at StackOverflow, but it seems that it is more of a feature request than just a question.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Spring Authorization Server supports the Exchange Token feature; introduced in #60
According to RFC 8693, the token type
id_token
is valid, but not supported by OAuth2TokenExchangeAuthenticationConverter, which accepts onlyjwt
andaccess_token
.Moreover, the class is final without any extension points. Right now, the whole
AuthenticationConverter
has to be implemented.The same situation is for OAuth2TokenExchangeAuthenticationProvider, that always issues an access token.
I already asked at StackOverflow, but it seems that it is more of a feature request than just a question.
The text was updated successfully, but these errors were encountered: