OAuth2
Get user info
Returns the user information associated with an access token.
GET
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Response
200 - application/json
User given name.
Example:
"John"
User family name.
Example:
"Doe"
User full name.
Example:
"John Doe"
User picture URL.
Example:
"https://..."
User email.
Example:
"john@doe.com"
Indicates if the user email is verified.
Example:
true
Was this page helpful?