OpenID Connect (OIDC) scopes
Standard OpenID Connect scopes control which user claims are included in an id_token or in a userinfo response. Unlike other resources, scopes from this resource can be included in an access token along with scopes from another resource.
PingOne supports the following OIDC scopes:
| Scope | Description |
|---|---|
|
This scope value requests access to the end-user’s profile claims, which are: |
|
This scope value requests access to the |
|
This scope value requests access to the following claims: |
|
This scope value requests access to the |
|
For |
OIDC scopes for user information
The following sample shows an implicit authorization request with an id_token response type. The scope parameter specifies the required openid scope. It also specifies the optional profile scope to provide access to the end-user’s default profile claims.
curl -X GET \
'https://auth.pingone.com/{{envID}}/as/authorize?client_id={{appID}}&redirect_uri={{redirect_uri}}&response_type=id_token&scope=openid%20profile'
|
You must include |
For more information about retrieving scopes for a specified resource, refer to Get scopes for a resource in the PingOne Platform API Reference.