Tools, FAQ, Tutorials:
Capture Google OpenID Connect Authentication Response
How to capture the Google OpenID Connect Authentication Response?
✍: FYIcenter.com
If you are use the Google-OpenID-Connect-Test-Page.html
test Web form using "response_type=id_token" to test the implicit flow,
you can capture the id_token value with the browser.
1. Run Google-OpenID-Connect-Test-Page.html in a Web browser.
2. Enter "id_token" in the "response_type" field.
3. Click "Submit". You see Google sign-in page.
4. Sign in with any Google account. You see browser is redirected to "openID_receiver.php" server side script. But the script will get no parameters.
5. Copy the value in the browser URL address input box. The "id_token" value is included in the "anchor" part after the "#":
http://dev.fyicenter.com/openID_receiver.php#state=7654321&id_token=ey4MjZkZDFkYzE5mN...
6. Copy the "id_token" value "ey4MjZkZDFkYzE5mN..." and decode it with the Base64URL decode algorithm.
⇒ Build Implicit Flow with Google OpenID Connect
⇐ Google OpenID Authentication Request Test
2022-03-29, ∼1604🔥, 0💬
Popular Posts:
How to use the "set-body" Policy Statement for an Azure API service operation? The "set-body" Policy...
How to access URL template parameters from "context.Request.Matched Parameters"object in Azure API P...
What is EPUB 2.0 Metadata "dc:publisher" and "dc:rights" elements? EPUB 2.0 Metadata "dc:publisher" ...
How to create the Hello-3.0.epub package? I have all required files to create Hello-3.0.epub. To cre...
What is the Azure AD v1.0 OpenID Metadata Document? Azure AD v1.0 OpenID Metadata Document is an onl...