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 BearerTokenErrorBearerTokenError.INSUFFICIENT_SCOPEThe request requires higher privileges than provided by the access token.static final BearerTokenErrorBearerTokenError.INVALID_REQUESTThe 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 BearerTokenErrorBearerTokenError.INVALID_TOKENThe access token provided is expired, revoked, malformed, or invalid for other reasons.static final BearerTokenErrorBearerTokenError.MISSING_TOKENThe request does not contain an access token.Methods in com.nimbusds.oauth2.sdk.token that return BearerTokenErrorModifier and TypeMethodDescriptionBearerTokenError.appendDescription(String text) static BearerTokenErrorParses an OAuth 2.0 bearer token error from the specified HTTP responseWWW-Authenticateheader.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.