public final class OAuthCredentialsResponse
Beta
Data to parse a success response to a request for temporary or token credentials.
Constructors
OAuthCredentialsResponse()
public OAuthCredentialsResponse()
Fields
callbackConfirmed
public Boolean callbackConfirmed
"true"
for temporary credentials request or null
for a token credentials
request. The parameter is used to differentiate from previous versions of the protocol.
Field Value | |
---|---|
Type | Description |
Boolean |
token
public String token
Credentials token.
Field Value | |
---|---|
Type | Description |
String |
tokenSecret
public String tokenSecret
Credentials shared-secret for use with "HMAC-SHA1"
signature algorithm. Used for OAuthHmacSigner#tokenSharedSecret.
Field Value | |
---|---|
Type | Description |
String |