JWT Decoding

Decoding JWT Tokens

JWT tokens contain a set of fields called claims. http://jwt.io is a powerful debugging tool for decoding access tokens and seeing the claim values.

To decode a token follow these steps:

  1. Copy your token to the clipboard

  2. Navigate to http://jwt.io

  3. Paste token into the Encoded section

  4. Hit Enter

The decoded claims will show on the right side in the Decoded section.

 

 

On This Page: