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
initialize DelegatedTokenCredentials with authorization_code
do request to resource A with DelegatedTokenCredentials (OK)
do request to resource B with DelegatedTokenCredentials (fail with message OAuth2 Authorization code was already redeemed)
But actually bug is not about authorization_code. First exception occurs in RefreshTokenClient in method refreshToken but he just returns null in catch block and by this reason DelegatedTokenCredentials is trying to use authorization_code to acquire access token
my fix for this issue you can find in my fork
The text was updated successfully, but these errors were encountered:
flow:
But actually bug is not about authorization_code. First exception occurs in RefreshTokenClient in method refreshToken but he just returns null in catch block and by this reason DelegatedTokenCredentials is trying to use authorization_code to acquire access token
my fix for this issue you can find in my fork
The text was updated successfully, but these errors were encountered: