How to verify a JWT ignoring the expiry #258
Answered
by
panva
varuna-aample
asked this question in
Q&A
-
I'm looking for a way to verify a JWT ignoring its expiration claim, I couldn't find any such options for the |
Beta Was this translation helpful? Give feedback.
Answered by
panva
Sep 3, 2021
Replies: 1 comment 1 reply
-
You can either validate the JWT in full using jwtVerify, or just it's signature using compactVerify. There's no middle ground available. |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
varuna-aample
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You can either validate the JWT in full using jwtVerify, or just it's signature using compactVerify. There's no middle ground available.