Uses of Class
com.nimbusds.oauth2.sdk.token.BearerTokenError
-
Packages that use BearerTokenError Package Description com.nimbusds.oauth2.sdk.token OAuth 2.0 access and refresh token implementations.com.nimbusds.openid.connect.sdk Classes for representing, serialising and parsing OpenID Connect client requests and server responses. -
-
Uses of BearerTokenError in com.nimbusds.oauth2.sdk.token
Fields in com.nimbusds.oauth2.sdk.token declared as BearerTokenError Modifier and Type Field Description static BearerTokenErrorBearerTokenError. INSUFFICIENT_SCOPEThe request requires higher privileges than provided by the access token.static 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 BearerTokenErrorBearerTokenError. INVALID_TOKENThe access token provided is expired, revoked, malformed, or invalid for other reasons.static BearerTokenErrorBearerTokenError. MISSING_TOKENThe request does not contain an access token.Methods in com.nimbusds.oauth2.sdk.token that return BearerTokenError Modifier and Type Method Description BearerTokenErrorBearerTokenError. appendDescription(String text)static BearerTokenErrorBearerTokenError. parse(String wwwAuth)Parses an OAuth 2.0 bearer token error from the specified HTTP responseWWW-Authenticateheader.BearerTokenErrorBearerTokenError. setDescription(String description)BearerTokenErrorBearerTokenError. setHTTPStatusCode(int httpStatusCode)BearerTokenErrorBearerTokenError. setRealm(String realm)Sets the realm.BearerTokenErrorBearerTokenError. setScope(Scope scope)Sets the required scope.BearerTokenErrorBearerTokenError. setURI(URI uri) -
Uses of BearerTokenError in com.nimbusds.openid.connect.sdk
Methods in com.nimbusds.openid.connect.sdk that return types with arguments of type BearerTokenError Modifier and Type Method Description static Set<BearerTokenError>UserInfoErrorResponse. getStandardErrors()Gets the standard errors for a UserInfo error response.Constructors in com.nimbusds.openid.connect.sdk with parameters of type BearerTokenError Constructor Description UserInfoErrorResponse(BearerTokenError error)Creates a new UserInfo error response indicating a bearer token error.
-