User info endpoint
UserInfo Endpoint is an OAuth 2.0 Protected Resource that returns Claims about the authenticated End-User.
Responses
- 200
ok
application/json
Schema
Example (from schema)
Schema
- Array [
- ]
aud string
email string
exp string
extra object
property name* string[]
string
iat string
iss string
jti string
locale string
name string
nbf string
nonce string
preferred_username string
scopes string[]
sub string
token_type string
username string
{
"aud": "string",
"email": "string",
"exp": "string",
"extra": {},
"iat": "string",
"iss": "string",
"jti": "string",
"locale": "string",
"name": "string",
"nbf": "string",
"nonce": "string",
"preferred_username": "string",
"scopes": [
"string"
],
"sub": "string",
"token_type": "string",
"username": "string"
}
Loading...