Decode a JSON Web Token and inspect its header and payload.
A JSON Web Token (JWT) is a compact token format used for authentication and information exchange. It consists of three parts: header, payload and signature.
eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...
Decoded payload example:
{ "user": "Alex", "admin": true }