public interface OidcScopes
claims.
The scope(s) associated to an OAuth2AccessToken determine what claims (resources)
will be available when they are used to access OAuth 2.0 Protected Endpoints,
such as the UserInfo Endpoint.
StandardClaimNames,
Requesting Claims using Scope Values| Modifier and Type | Field and Description |
|---|---|
static java.lang.String |
ADDRESS
The
address scope requests access to the address claim. |
static java.lang.String |
EMAIL
The
email scope requests access to the email and email_verified claims. |
static java.lang.String |
OPENID
The
openid scope is required for OpenID Connect Authentication Requests. |
static java.lang.String |
PHONE
The
phone scope requests access to the phone_number and phone_number_verified claims. |
static java.lang.String |
PROFILE
The
profile scope requests access to the default profile claims, which are:
name, family_name, given_name, middle_name, nickname, preferred_username,
profile, picture, website, gender, birthdate, zoneinfo, locale, updated_at. |
static final java.lang.String OPENID
openid scope is required for OpenID Connect Authentication Requests.static final java.lang.String PROFILE
profile scope requests access to the default profile claims, which are:
name, family_name, given_name, middle_name, nickname, preferred_username,
profile, picture, website, gender, birthdate, zoneinfo, locale, updated_at.static final java.lang.String EMAIL
email scope requests access to the email and email_verified claims.static final java.lang.String ADDRESS
address scope requests access to the address claim.static final java.lang.String PHONE
phone scope requests access to the phone_number and phone_number_verified claims.