Tools, FAQ, Tutorials:
Google OpenID Authentication Request Test
How to build a Google OpenID Authentication Request Test page?
✍: FYIcenter.com
The Authentication Request is the first call to the Google OpenID Connect service.
You can build a simple Web form page to test different behavior
of the Authentication Request.
Here is an example, Google-OpenID-Authentication-Request-Test.html:
<html><body><h3>Google OpenID Connect Test Request Example</h3> <form method="GET" action="https://accounts.google.com/o/oauth2/v2/auth"> client_id: <input size="80" name="client_id" value="9150833677096-....apps.googleusercontent.com"><br/> response_type: <input size="10" name="response_type" value="id_token"><br/> scope: <input size="10" name="scope" value="openid email"><br/> redirect_uri: <input size="80" name="redirect_uri" value="http://dev.fyicenter.com/openID_receiver.php"><br/> nonce: <input size="10" name="nonce" value="1234567"><br/> state: <input size="10" name="state" value="7654321"><br/> <br/> <input type="Submit" name="Submit" value="Submit"><br/> </form> </body></html>
Upload this page to your Web server, and view it from a Web browser,
you see the test form displayed:
You can enter your own client_id, redirect_uri and other parameters to try it.
Â
⇒ Capture Google OpenID Connect Authentication Response
⇠Authentication Response Received from Google OpenID Connect
⇑ Google OpenID Connect Integration
⇑⇑ OpenID Tutorials
2022-04-13, 955👍, 0💬
Popular Posts:
Where to get a JSON.stringify() Example Code in JavaScript? Here is a good JSON.stringify() example ...
How To Pass Arrays By References? in PHP? Like normal variables, you can pass an array by reference ...
How to start Visual Studio Command Prompt? I have Visual Studio 2017 Community version with Visual C...
How to use "xml-to-json" Azure API Policy Statement? The "xml-to-json" Policy Statement allows you t...
How to Build my "sleep" Docker image from the Alpine image? I want the container to sleep for 10 hou...