MobilePay supports different scopes.
When making the initial authorization request, your application can request multiple scopes as a space or comma separated list, e.g.
The full list of possible scopes is |
subscriptions invoice openid transactionreporting offline_access |
Invoice |
openid invoice transactionreporting offline_access |
Subscriptions |
openid subscriptions transactionreporting offline_access |
scope
openid
, means that the /token
endpoint will return an ID token. For more information about scopes, see here. For details, refer to OpenID Connect Scopes
offline_access
can only be requested in combination with a response_type
that contains code
.
If the response_type
doesn't contain code
, offline_access
is ignored.
For more information about offline_access
, see the OIDC spec.