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
I have my authorization server (spring boot auth server) refusing to return a access token for silent refresh. However initial request for code flow works just fine.
After doing some investigating, I find out that for some reason, silent refresh /oauth2/token send Authorization header with request
but initial one doesn't
then my auth server tries to decode jwt token and extract client auth from it and fails.
So my question is, is that a expected behavior? I can't see in oauth2 specification any case when users access token used for obtaining a new token. Or there is a problem on my configuration side and this not suppose to happen
The text was updated successfully, but these errors were encountered:
teheidoma
changed the title
Silent refresh Authoriaztion header
Silent refresh Authorization header
Jun 27, 2024
I have my authorization server (spring boot auth server) refusing to return a access token for silent refresh. However initial request for code flow works just fine.
After doing some investigating, I find out that for some reason, silent refresh /oauth2/token send Authorization header with request
but initial one doesn't
then my auth server tries to decode jwt token and extract client auth from it and fails.
So my question is, is that a expected behavior? I can't see in oauth2 specification any case when users access token used for obtaining a new token. Or there is a problem on my configuration side and this not suppose to happen
The text was updated successfully, but these errors were encountered: