{{ if .IDToken }}
ID Token:
Decode on jwt.io
{{ .IDToken }}
{{ end }} {{ if .AccessToken }}
Access Token:
Decode on jwt.io
{{ .AccessToken }}
{{ end }} {{ if .Claims }}
ID Token Claims:
{{ .Claims }}
{{ end }} {{ if .AccessToken }}
UserInfo:
Fetch UserInfo
Loading...
{{ end }} {{ if .RefreshToken }}
Refresh Token:
{{ .RefreshToken }}
{{ end }} {{ if .PublicKeyPEM }}
Public Key (for JWT verification):
Copy to Clipboard
{{ .PublicKeyPEM }}
Copy this key and paste it into jwt.io's "Verify Signature" section to validate the token signature.
{{ end }}
Back to Home