Google OAuth2 API
  1. userinfo
Google OAuth2 API
  • userinfo
    • /oauth2/v2/userinfo
      GET
    • /userinfo/v2/me
      GET
  • /oauth2/v2/tokeninfo
    POST
  1. userinfo

/userinfo/v2/me

GET
/userinfo/v2/me
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://www.googleapis.com//userinfo/v2/me'
Response Response Example
{
    "email": "string",
    "family_name": "string",
    "gender": "string",
    "given_name": "string",
    "hd": "string",
    "id": "string",
    "link": "string",
    "locale": "string",
    "name": "string",
    "picture": "string",
    "verified_email": true
}

Request

None

Responses

🟢200Successful response
application/json
Body

Modified at 2023-08-15 04:15:17
Previous
/oauth2/v2/userinfo
Next
/oauth2/v2/tokeninfo
Built with