Tools, FAQ, Tutorials:
Google OpenID Connect Authentication Request
What is the Google OpenID Connect Authentication Request?
✍: FYIcenter.com
Before deciding which authentication flow you want to implement
in your Web application, you need to have a good understanding of the
Google OpenID Connect authentication request, which is the first call you
have to make in any authentication flow.
Here is an example of Google OpenID Connect authentication request and its parameters:
GET https://accounts.google.com/o/oauth2/v2/auth? client_id=9150833677096-....apps.googleusercontent.com &redirect_uri=http%3A%2F%2Ffyicenter.com%3aopenID_receiver.php &response_type=id_token &scope=openid &nonce=xxxxxx &state=yyyyyy
Here are the parameters you need to provide:
Google also supports some other request parameters:
Note that if there is issue with authentication request, Google OpenID Connect will display an error page to your end user during the sign-on process.
Â
⇒ Initiate Google OpenID Connect Authentication Request
⇠Google OpenID Connect Metadata Document
⇑ Google OpenID Connect Integration
⇑⇑ OpenID Tutorials
2021-03-07, 870👍, 0💬
Popular Posts:
How To Remove Slashes on Submitted Input Values in PHP? By default, when input values are submitted ...
How to include additional claims in Azure AD v2.0 id_tokens? If you want to include additional claim...
How to Create a New Instance of a Class? There are two ways to create a new instance (object) of a c...
How to extend json.JSONEncoder class? I want to encode other Python data types to JSON. If you encod...
How to add request query string Parameters to my Azure API operation 2017 version to make it more us...