Header and payload
JWTs are split into header, payload and signature sections. Formalint decodes the readable JSON sections so claims are easier to inspect.
Browser-based developer tools
Decode token headers and payloads, inspect common claims and check expiration times locally in the browser.
Reference notes
JWTs are split into header, payload and signature sections. Formalint decodes the readable JSON sections so claims are easier to inspect.
Common numeric date claims such as exp, iat and nbf are converted into ISO timestamps to make debugging authentication flows easier.
A decoded JWT can still be forged. Production systems must verify the signature, issuer, audience and expiration using trusted server-side code.