-
-
Notifications
You must be signed in to change notification settings - Fork 694
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The token is not yet valid (iat) #824
Comments
Thanks and i also met this question and i just back to 2.5.0 and try again. question: |
jwt.decode(token, key=self.public_pem_key, algorithms=['RS256'], options={"verify_iat": False}) It worked for me but it's not recommended |
Since upgrading to version 2.6.0 the decoding of my ID Token fails with:
jwt.exceptions.ImmatureSignatureError: The token is not yet valid (iat)
The token has valid values. For example:
Epoch timestamp at calling the decode method was 1667737094. From client view the token is generated in the future.
Previous versions (2.4.0 and 2.5.0) are decoding the token susccessfully.
I have also tried
options={"verify_aud": False, "verify_nbf": False}
, but get the same error!Did you changed any parameters of validation?
Reproduction Steps
System Information
The text was updated successfully, but these errors were encountered: