Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Note that the number of attributes/claims as well as the claim values are dependent on the context, the userinfoSecurity Domain the userinfo service belong to.

...

The userinfo endpoint URL can be found by looking at the value of the "userinfo_endpoint" key in the userinfoopenid-configuration.

Typical format of the URL is:

...

The request should be done using HTTP GET and with the Access Token sent using the Authorization header field.

Clients can use scope values to specify what access privileges are being requested for Access Tokens. The scopes associated with Access Tokens determine what resources will be available and what claims to be returned from the protected endpoints. See Using scope values and "claims" request parameters for details on requesting claims.

...

Note that the number of attributes/claims as well as the claim values are dependent on the context, the Security Domain.

Code Block
languagejs
themeMidnight
titleUserinfo respons example
{
   "sub": "d6cccb1c-4390-41c1-b956-184ac9213a64",
   "name": "Jane Doe",
   "given_name": "Jane",
   "family_name": "Doe",
   "preferred_username": "j.doe",
   "email": "janedoe@example.com",
   "picture": "http://example.com/janedoe/me.jpg"
}

...