- What's the timeline view?
- Shows iat (issued at), nbf (not before), and exp (expiration) as timestamps with visual timeline. Plus delta from now (+15 minutes, -3 hours).
- Why is this useful?
- Auth debugging — when a token is rejected, knowing whether it's not-yet-valid, expired, or in the wrong time zone speeds diagnosis.
- What about clock skew?
- Yes — the tool shows relative time. Some auth servers allow ±30s clock skew; the timeline makes clock-drift issues visible.
- Does it validate the signature?
- No — just shows the timestamps. Use JWT Encoder/Decoder for signature operations. Timeline focuses on the time-related claims.