public
OpenID Connect Userinfo
This endpoint returns the payload of the ID Token, including the idTokenExtra values, of the provided OAuth 2.0 Access Token.
For more information please refer to the spec.
In the case of authentication error, a WWW-Authenticate header might be set in the response with more information about the error. See the spec for more details about header format.
get/userinfo
Response
userinfoResponse
Example response
{
"sub": "sub",
"website": "website",
"zoneinfo": "zoneinfo",
"birthdate": "birthdate",
"email_verified": true,
"gender": "gender",
"profile": "profile",
"phone_number_verified": true,
"preferred_username": "preferred_username",
"given_name": "given_name",
"locale": "locale",
"middle_name": "middle_name",
"picture": "picture",
"updated_at": 0,
"name": "name",
"nickname": "nickname",
"phone_number": "phone_number",
"family_name": "family_name",
"email": "email"
}