Loading tool, please wait…
JWT tokens rely on Unix Epoch timestamps (in seconds) to manage session validity without maintaining database session lookups. This reference details how time-based claims interact.
| Claim | Name | RFC Meaning | Validation Rule |
|---|---|---|---|
| exp | Expiration Time | Time on or after which the token must not be accepted | Reject if CurrentTime >= exp |
| iat | Issued At | Time at which the JWT was generated | Must not be in the future (subject to clock skew) |
| nbf | Not Before | Time before which the JWT must not be accepted | Reject if CurrentTime < nbf |
Convert 10-digit JWT Unix timestamps into UTC and local date formats.
1788134400