Information
The OAuth access token contains sensitive data and should be hashed to protect it.
Encoding the OAuth access token using a hashing algorithm protects sensitive information.
Solution
Add the accessTokenEncoding attribute to the oauthProvider element to ${server.config.dir}/configDropins/overrides/*.xml and set it to a valid encoding type, for example PBKDF2WithHmacSHA512 to enable stored access token encoding. Do not use the plain value as it does not encode.
<oauthProvider accessTokenEncoding="PBKDF2WithHmacSHA512" />