0
  1. Can we make jwt bearer token as invalid

1 Answers1

0

A JWT bearer token is supposed to be a self-contained token that includes a verifiable expiry timestamp. Typical deployments won't allow to revoke it since there's no entity that will tell you that it is revoked. If you control the "issuer" side you can change that behavior yourself but it defeats the primary reason for using JWTs.

Hans Z.
  • 50,496
  • 12
  • 102
  • 115