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
In the OpenID Connect Client:
When using a shared secret to request tokens at the token endpoint after a successful login,
The clientKey and Secret does not seem to be encoded correctly.
So a '/' in the secret is correctly encoded to %2F
While '+' and '=' signs in the client secret is not encoded at all.
The encoding takes place in line 248 in OIDCAuthenticationFilter class
The text was updated successfully, but these errors were encountered:
In the OpenID Connect Client:
When using a shared secret to request tokens at the token endpoint after a successful login,
The clientKey and Secret does not seem to be encoded correctly.
So a '/' in the secret is correctly encoded to %2F
While '+' and '=' signs in the client secret is not encoded at all.
The encoding takes place in line 248 in OIDCAuthenticationFilter class
The text was updated successfully, but these errors were encountered: