Allows for specifying the scopes that get associated with the access token. The value of the scope parameter is expressed as a list of space-delimited, case-sensitive strings. If the value contains multiple space-delimited strings, their order does not matter, and each string adds an additional requested scope.
If this value is not provided, then the scopes associated with the issued access token will default to the scopes provided in the authorization request.
If this value is provided, the scopes listed must abide by the following requirements:
- The provided scopes must be a subset of the scopes defined during the initial authorization request.
- The
openid scope must always be included.
Note: The scope field should not be set if the client_credentials grant type is being used.