Uses of Class
com.nimbusds.oauth2.sdk.token.DPoPTokenError
-
Packages that use DPoPTokenError 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 core OpenID Connect concepts. -
-
Uses of DPoPTokenError in com.nimbusds.oauth2.sdk.token
Fields in com.nimbusds.oauth2.sdk.token declared as DPoPTokenError Modifier and Type Field Description static DPoPTokenErrorDPoPTokenError. INSUFFICIENT_SCOPEThe request requires higher privileges than provided by the access token.static DPoPTokenErrorDPoPTokenError. INVALID_DPOP_PROOFThe request has a DPoP proof that is invalid.static DPoPTokenErrorDPoPTokenError. 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 DPoPTokenErrorDPoPTokenError. INVALID_TOKENThe access token provided is expired, revoked, malformed, or invalid for other reasons.static DPoPTokenErrorDPoPTokenError. MISSING_TOKENThe request does not contain an access token.static DPoPTokenErrorDPoPTokenError. USE_DPOP_NONCEThe request is missing a required DPoP nonce.Methods in com.nimbusds.oauth2.sdk.token that return DPoPTokenError Modifier and Type Method Description DPoPTokenErrorDPoPTokenError. appendDescription(String text)static DPoPTokenErrorDPoPTokenError. parse(String wwwAuth)Parses an OAuth 2.0 DPoP token error from the specified HTTP responseWWW-Authenticateheader.DPoPTokenErrorDPoPTokenError. setDescription(String description)DPoPTokenErrorDPoPTokenError. setHTTPStatusCode(int httpStatusCode)DPoPTokenErrorDPoPTokenError. setJWSAlgorithms(Set<com.nimbusds.jose.JWSAlgorithm> jwsAlgs)Sets the acceptable JWS algorithms.DPoPTokenErrorDPoPTokenError. setRealm(String realm)DPoPTokenErrorDPoPTokenError. setScope(Scope scope)DPoPTokenErrorDPoPTokenError. setURI(URI uri) -
Uses of DPoPTokenError in com.nimbusds.openid.connect.sdk
Constructors in com.nimbusds.openid.connect.sdk with parameters of type DPoPTokenError Constructor Description UserInfoErrorResponse(DPoPTokenError error)Creates a new UserInfo error response indicating a DPoP token error.
-