Tools, FAQ, Tutorials:
id_token Online Decode Tool
Is there any online tool to decode an id_token string?
✍: FYIcenter.com
There are several good online tools you can use to decode an id_token string.
For example, go to jwt.io.
Copy and paste your id_token string in the input box on left, for example:
eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9. eyJuYW1lIjoiSm9lIERvZSIsImlhdCI6MTUxNjIzOTAyMn0. GY7yE8s2XoM2eXZ3nvsloPRFcBaVi4fL6Mhb6bzfrQQ
The decode information will displayed on the right:
Header =
{"alg":"HS256","typ":"JWT"}
Body =
{"name":"Joe Doe","iat":1516239022}
Signature =
...
The signature in the above example uses the HS256 algorithm with a secret string of "poiuytre". You need to enter it in the input box in the signature area. The signature will be verified:
⇒ Google OpenID Connect Integration
⇐ What Is the Authentication Claim in id_token
2021-06-20, ∼3396🔥, 0💬
Popular Posts:
How To Pad an Array with the Same Value Multiple Times in PHP? If you want to add the same value mul...
How to include additional claims in Azure AD v2.0 id_tokens? If you want to include additional claim...
How to use the "find-and-replace" Policy Statement for an Azure API service operation? The "find-and...
How to run CMD Commands in Dockerfile to change Windows Docker images? When building a new Windows i...
How to use the Atom Online Validator at w3.org? w3.org feed validation service is provided at http:/...