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
⇑ OpenID Connect Authentication Flows
⇑⇑ OpenID Tutorials
2021-06-20, 1311👍, 0💬
Popular Posts:
How to extend json.JSONEncoder class? I want to encode other Python data types to JSON. If you encod...
Where to see resource detailed information of my API Management Service on Azure Portal? Once you ha...
How to use "json-to-xml" Azure API Policy Statement? The "json-to-xml" Policy Statement allows you t...
How to create a new API on the Publisher Portal 2017 version of an Azure API Management Service? If ...
How to read Atom validation errors at w3.org? If your Atom feed has errors, the Atom validator at w3...