@Immutable public final class PrivateKeyJWT extends JWTAuthentication
ClientAuthenticationMethod.PRIVATE_KEY_JWT.
Supported signature JSON Web Algorithms (JWAs) by this implementation:
Example TokenRequest with private key JWT
authentication:
POST /token HTTP/1.1 Host: server.example.com Content-Type: application/x-www-form-urlencoded grant_type=authorization_code& code=i1WsRn1uB1& client_id=s6BhdRkqt3& client_assertion_type=urn%3Aietf%3Aparams%3Aoauth%3Aclient-assertion-type%3Ajwt-bearer& client_assertion=PHNhbWxwOl...[omitted for brevity]...ZT
Related specifications:
CLIENT_ASSERTION_TYPE| Constructor and Description |
|---|
PrivateKeyJWT(com.nimbusds.jwt.SignedJWT clientAssertion)
Creates a private key JWT authentication.
|
| Modifier and Type | Method and Description |
|---|---|
static Set<com.nimbusds.jose.JWSAlgorithm> |
getSupportedJWAs()
Gets the set of supported signature JSON Web Algorithms (JWAs) by
this implementation of private key JSON Web Token (JWT)
authentication.
|
static PrivateKeyJWT |
parse(HTTPRequest httpRequest)
Parses the specified HTTP POST request for a private key JSON Web
Token (JWT) authentication.
|
static PrivateKeyJWT |
parse(Map<String,String> params)
Parses the specified parameters map for a private key JSON Web Token
(JWT) authentication.
|
static PrivateKeyJWT |
parse(String paramsString)
Parses a private key JSON Web Token (JWT) authentication from the
specified
application/x-www-form-urlencoded encoded
parameters string. |
applyTo, ensureClientAssertionType, getClientAssertion, getJWTAuthenticationClaimsSet, parseClientAssertion, parseClientID, toParametersgetClientID, getMethodpublic PrivateKeyJWT(com.nimbusds.jwt.SignedJWT clientAssertion)
clientAssertion - The client assertion, corresponding to the
client_assertion parameter, as a
supported RSA or ECDSA-signed JWT. Must be
signed and not null.public static Set<com.nimbusds.jose.JWSAlgorithm> getSupportedJWAs()
public static PrivateKeyJWT parse(Map<String,String> params) throws ParseException
application/x-www-form-urlencoded encoded.params - The parameters map to parse. The private key JSON
Web Token (JWT) parameters must be keyed under
"client_assertion" and "client_assertion_type". The
map must not be null.ParseException - If the parameters map couldn't be parsed to a
private key JSON Web Token (JWT)
authentication.public static PrivateKeyJWT parse(String paramsString) throws ParseException
application/x-www-form-urlencoded encoded
parameters string.paramsString - The parameters string to parse. The private key
JSON Web Token (JWT) parameters must be keyed
under "client_assertion" and
"client_assertion_type". The string must not be
null.ParseException - If the parameters string couldn't be parsed
to a private key JSON Web Token (JWT)
authentication.public static PrivateKeyJWT parse(HTTPRequest httpRequest) throws ParseException
httpRequest - The HTTP POST request to parse. Must not be
null and must contain a valid
application/x-www-form-urlencoded encoded
parameters string in the entity body. The private
key JSON Web Token (JWT) parameters must be
keyed under "client_assertion" and
"client_assertion_type".ParseException - If the HTTP request header couldn't be parsed
to a private key JSON Web Token (JWT)
authentication.Copyright © 2015 Connect2id Ltd.. All Rights Reserved.