Access tokens
After finding a service endpoint to interact with, it's time to request an access token. You can request one via your own Nuts node:
POST /internal/auth/v2/my_subject_identifier/request-service-access-token
{
"authorization_server": "https://example.com/oauth2/other_subject_identifier",
"scope": "coffee",
"token_type": "Bearer",
"credentials": [...]
}
The scope
is mapped by a policy file to a presentation definition. Policy files are provided by the use case. If your wallet contains the correct credentials according to the presentation definition, an access token will be given:
{
"access_token": "ciOiJSUzI1NiIsInR5cCI6Ikp",
"token_type": "Bearer",
"expires_in": 3600,
}
The access_token
can then be put in the HTTP Authorization header.
No Comments