You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 18 Next »

Endpoint
URL<baseurl>/oauth/userinfo
AuthenticationBearer  (Default Token)

This standard endpoint is associated with the Resource Server for the TINFO service. The endpoint is Protected Endpoint and requires a Default Bearer Access Token contain in the Authorize header of the request.

Request parameters

None

Response elements

The response is a signed JSON structure (JWS) containing additional claims about an authenticated user beyond the claims that are directly contain in the ID Token.  See description of the TINO service for further details on supported claims. Below is an example response from the OIDC Provider in its BankID pilot configuration in pre-production:

{
"sub": "9578-6000-4-127698",
"iss": "https://preprod.bankidapis.no",
"iat": 1485866449,
"exp": 1485870048,
"preferred_username": "Testesen, Test",
"name": "Testesen, Test",
"given_name": "Test",
"family_name": "Testesen",
"birthdate": "1980-03-09",
"nnin": "09038000010"
}

  • No labels