Uses of Class
com.nimbusds.oauth2.sdk.token.DPoPTokenError
Packages that use DPoPTokenError
Package
Description
OAuth 2.0 access and refresh token implementations.
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 DPoPTokenErrorModifier and TypeFieldDescriptionstatic final DPoPTokenError
DPoPTokenError.INSUFFICIENT_SCOPE
The request requires higher privileges than provided by the access token.static final DPoPTokenError
DPoPTokenError.INVALID_DPOP_PROOF
The request has a DPoP proof that is invalid.static final DPoPTokenError
DPoPTokenError.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 DPoPTokenError
DPoPTokenError.INVALID_TOKEN
The access token provided is expired, revoked, malformed, or invalid for other reasons.static final DPoPTokenError
DPoPTokenError.MISSING_TOKEN
The request does not contain an access token.static final DPoPTokenError
DPoPTokenError.USE_DPOP_NONCE
The request is missing a required DPoP nonce.Methods in com.nimbusds.oauth2.sdk.token that return DPoPTokenErrorModifier and TypeMethodDescriptionDPoPTokenError.appendDescription
(String text) static DPoPTokenError
Parses an OAuth 2.0 DPoP token error from the specified HTTP responseWWW-Authenticate
header.DPoPTokenError.setDescription
(String description) DPoPTokenError.setHTTPStatusCode
(int httpStatusCode) DPoPTokenError.setJWSAlgorithms
(Set<com.nimbusds.jose.JWSAlgorithm> jwsAlgs) Sets the acceptable JWS algorithms. -
Uses of DPoPTokenError in com.nimbusds.openid.connect.sdk
Constructors in com.nimbusds.openid.connect.sdk with parameters of type DPoPTokenErrorModifierConstructorDescriptionCreates a new UserInfo error response indicating a DPoP token error.