Uses of Class
com.nimbusds.oauth2.sdk.token.BearerTokenError
Packages that use BearerTokenError
Package
Description
OAuth 2.0 access and refresh token implementations.
Classes for representing, serialising and parsing core OpenID Connect
concepts.
-
Uses of BearerTokenError in com.nimbusds.oauth2.sdk.token
Fields in com.nimbusds.oauth2.sdk.token declared as BearerTokenErrorModifier and TypeFieldDescriptionstatic final BearerTokenError
BearerTokenError.INSUFFICIENT_SCOPE
The request requires higher privileges than provided by the access token.static final BearerTokenError
BearerTokenError.INVALID_REQUEST
The request is missing a required parameter, includes an unsupported parameter or parameter value, repeats the same parameter, uses more than one method for including an access token, or is otherwise malformed.static final BearerTokenError
BearerTokenError.INVALID_TOKEN
The access token provided is expired, revoked, malformed, or invalid for other reasons.static final BearerTokenError
BearerTokenError.MISSING_TOKEN
The request does not contain an access token.Methods in com.nimbusds.oauth2.sdk.token that return BearerTokenErrorModifier and TypeMethodDescriptionBearerTokenError.appendDescription
(String text) static BearerTokenError
Parses an OAuth 2.0 bearer token error from the specified HTTP responseWWW-Authenticate
header.BearerTokenError.setDescription
(String description) BearerTokenError.setHTTPStatusCode
(int httpStatusCode) -
Uses of BearerTokenError in com.nimbusds.openid.connect.sdk
Methods in com.nimbusds.openid.connect.sdk that return types with arguments of type BearerTokenErrorModifier and TypeMethodDescriptionstatic Set<BearerTokenError>
UserInfoErrorResponse.getStandardErrors()
Gets the standard errors for a UserInfo error response.Constructors in com.nimbusds.openid.connect.sdk with parameters of type BearerTokenErrorModifierConstructorDescriptionCreates a new UserInfo error response indicating a bearer token error.