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.
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.
Spring Authorization Server supports the Exchange Token feature; introduced in #60
According to RFC 8693, the token type
id_tokenis valid, but not supported by OAuth2TokenExchangeAuthenticationConverter, which accepts onlyjwtandaccess_token.Moreover, the class is final without any extension points. Right now, the whole
AuthenticationConverterhas 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.