User Info Endpoint
The User Info (/connect/userinfo) endpoint is a protected resource that returns claims about the authenticated user once the client presents a valid access token.
This allows applications to retrieve details such as profile information, email, or phone number in a standardized way.
User Info Request
Sample request with bearer authentication
GET /dppassivests/connect/userinfo HTTP/1.1
Host: idp.contoso.com
Authorization: Bearer <access_token>
Sample request with form authentication
POST /dppassivests/connect/userinfo HTTP/1.1
Host: idp.contoso.com
access_token=<access_token>
User Info Response
Sample response
HTTP/1.1 200 OK
Content-Type: application/json
{
"sub": "bob@contoso.com",
"name": "Bob"
...
}