Tools, FAQ, Tutorials:
Validate Google OpenID Connect id_token
How to validate the id_token value received from Google OpenID Connect authentication response?
✍: FYIcenter.com
As you can see from the previous tutorials, you can easily decode the
"id_token" value received from Google OpenID Connect authentication response using a
simple PHP script.
After decoding, you can get all information about the end user from the body component, and trust it without any validation.
But, since the "id_token" is included in the authentication response delivered over the public Internet, you should not trust it and perform a number validation steps:
1. Data structure validation.
2. Data attributes validation.
3. Timestamp attributes validation. This will prevent someone to repost the authentication response to your server script at a later time.
4. "nonce" protection and validation. This will prevent someone to repost the authentication response again immediately.
5. Signature validation. This is to ensure the entire authentication response message has not been modified by someone else. See next tutorial on how to perform "id_token" signature validation.
⇒ Validate Google OpenID Connect id_token Signature
⇐ Decode Google OpenID Connect id_token
2022-02-04, 1488🔥, 0💬
Popular Posts:
What is EPUB 2.0 Metadata "dc:creator" and "dc:contributor" elements? EPUB 2.0 Metadata "dc:creator"...
Where can I download the EPUB 2.0 sample book "The Metamorphosis" by Franz Kafka? You can following ...
How to search for the first match of a regular expression using re.search()? The re.search() functio...
Where to get a real Atom XML example? You can follow this tutorial to get a real Atom XML example: 1...
How To Open Standard Output as a File Handle in PHP? If you want to open the standard output as a fi...