|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use ClientAuthentication | |
---|---|
com.nimbusds.oauth2.sdk | Classes for representing, serialising and parsing OAuth 2.0 client requests and server responses. |
com.nimbusds.oauth2.sdk.auth | Implementations of OAuth 2.0 client authentication methods at the Token endpoint. |
Uses of ClientAuthentication in com.nimbusds.oauth2.sdk |
---|
Methods in com.nimbusds.oauth2.sdk that return ClientAuthentication | |
---|---|
ClientAuthentication |
TokenRequest.getClientAuthentication()
Gets the client authentication. |
Constructors in com.nimbusds.oauth2.sdk with parameters of type ClientAuthentication | |
---|---|
AccessTokenRequest(URL uri,
AuthorizationCode code,
URL redirectURI,
ClientAuthentication clientAuth)
Creates a new authenticated access token request, using an authorisation code grant . |
|
AccessTokenRequest(URL uri,
Scope scope,
ClientAuthentication clientAuth)
Creates a new authenticated access token request, using a client credentials grant . |
|
RefreshTokenRequest(URL uri,
RefreshToken refreshToken,
ClientAuthentication clientAuth)
Creates a new authenticated refresh token request. |
|
TokenRequest(URL uri,
GrantType grantType,
ClientAuthentication clientAuth)
Creates a new token request. |
Uses of ClientAuthentication in com.nimbusds.oauth2.sdk.auth |
---|
Subclasses of ClientAuthentication in com.nimbusds.oauth2.sdk.auth | |
---|---|
class |
ClientSecretBasic
Client secret basic authentication at the Token endpoint. |
class |
ClientSecretJWT
Client secret JWT authentication at the Token endpoint. |
class |
ClientSecretPost
Client secret post authentication at the Token endpoint. |
class |
JWTAuthentication
Base abstract class for JSON Web Token (JWT) based client authentication at the Token endpoint. |
class |
PrivateKeyJWT
Private key JWT authentication at the Token endpoint. |
Methods in com.nimbusds.oauth2.sdk.auth that return ClientAuthentication | |
---|---|
static ClientAuthentication |
ClientAuthentication.parse(HTTPRequest httpRequest)
Parses the specified HTTP request for a supported client authentication (see ClientAuthenticationMethod ). |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |