Package | Description |
---|---|
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.
|
Modifier and Type | Method and Description |
---|---|
ClientAuthentication |
TokenRequest.getClientAuthentication()
Gets the client authentication.
|
Constructor and Description |
---|
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.
|
Modifier and Type | Class and Description |
---|---|
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.
|
Modifier and Type | Method and Description |
---|---|
static ClientAuthentication |
ClientAuthentication.parse(HTTPRequest httpRequest)
Parses the specified HTTP request for a supported client
authentication (see
ClientAuthenticationMethod ). |
Copyright © 2013 NimbusDS. All Rights Reserved.