Package com.google.api.client.auth.oauth
Class OAuthCredentialsResponse
- java.lang.Object
-
- com.google.api.client.auth.oauth.OAuthCredentialsResponse
-
@Beta public final class OAuthCredentialsResponse extends java.lang.Object
Beta
Data to parse a success response to a request for temporary or token credentials.- Since:
- 1.0
-
-
Field Summary
Fields Modifier and Type Field Description java.lang.Boolean
callbackConfirmed
"true"
for temporary credentials request ornull
for a token credentials request.java.lang.String
token
Credentials token.java.lang.String
tokenSecret
Credentials shared-secret for use with"HMAC-SHA1"
signature algorithm.
-
Constructor Summary
Constructors Constructor Description OAuthCredentialsResponse()
-
-
-
Field Detail
-
token
public java.lang.String token
Credentials token.
-
tokenSecret
public java.lang.String tokenSecret
Credentials shared-secret for use with"HMAC-SHA1"
signature algorithm. Used forOAuthHmacSigner.tokenSharedSecret
.
-
callbackConfirmed
public java.lang.Boolean callbackConfirmed
"true"
for temporary credentials request ornull
for a token credentials request. The parameter is used to differentiate from previous versions of the protocol.
-
-