1
Capture the authorization token
- Open your browser’s developer tools (typically by pressing F12 or Ctrl+Shift+I).
- Go to the Network tab.
- Refresh the page and look for a request to an API endpoint that includes an Authorization: Bearer header.
- Copy the token value (the long string following Bearer ).
2
Decode the token using a trusted tool
- Go to https://jwt.ms or another trusted JWT decoder.
- Paste the token into the input field.
- The tool will decode the token and display the payload, which includes all the claims.
3