- 08 Jul 2024
- 1 Minute to read
- Print
- DarkLight
OpenID Connect UserInfo Request
- Updated on 08 Jul 2024
- 1 Minute to read
- Print
- DarkLight
UserInfo Request
Issue a GET to /idp/profile/oidc/userinfo, including the Access Token in the Authorization HTTP header using the "Bearer" scheme.
GET /idp/profile/oauth2/me
Authorization: Bearer BEARERTOKENGOESHERE
If UserInfo signing an encryption is disabled, the response will be a JSON document with Content-Type application/json.
If UserInfo signing is enabled, the response will be a signed JWT with Content-Type application/jwt.
If UserInfo encryption is enabled, the response will be an encrypted JWT with Content-Type application/jwt.
If UserInfo signing and encryption are enabled, the response will be a JWT first signed, then encrypted with Content-Type application/jwt.
The UserInfo content will be based on the claims which were configured for the client.