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
When add invalid token and then add a valid token on first request it throws 500 internal server error. with exception com.nimbusds.jose.proc.BadJWSException: Signed JWT rejected: Invalid signature
#22
Open
HamzaShahidAli opened this issue
Oct 3, 2019
· 0 comments
When add invalid token and then add a valid token on first request it throws 500 internal server error. with exception com.nimbusds.jose.proc.BadJWSException: Signed JWT rejected: Invalid signature
On Class AwsCognitoIdTokenProcessor claimsSet = configurableJWTProcessor.process(stripBearerToken(idToken), null);
How to fix this issue.
But when send second request with the same token without changing any thing it work perfectly.
What i observe is the issue came due to when 1st request is processing with valid token after using the invalid token it process once old token with new token, but i dont know how to stop doing this.
The text was updated successfully, but these errors were encountered:
When add invalid token and then add a valid token on first request it throws 500 internal server error. with exception com.nimbusds.jose.proc.BadJWSException: Signed JWT rejected: Invalid signature
On Class AwsCognitoIdTokenProcessor
claimsSet = configurableJWTProcessor.process(stripBearerToken(idToken), null);
How to fix this issue.
But when send second request with the same token without changing any thing it work perfectly.
What i observe is the issue came due to when 1st request is processing with valid token after using the invalid token it process once old token with new token, but i dont know how to stop doing this.
The text was updated successfully, but these errors were encountered: