Serialized Form
-
Package com.github.scribejava.core.exceptions
-
Class com.github.scribejava.core.exceptions.OAuthException extends RuntimeException implements Serializable
- serialVersionUID:
- 1L
-
Class com.github.scribejava.core.exceptions.OAuthParametersMissingException extends OAuthException implements Serializable
- serialVersionUID:
- 1745308760111976671L
-
Class com.github.scribejava.core.exceptions.OAuthSignatureException extends OAuthException implements Serializable
- serialVersionUID:
- 1L
-
-
Package com.github.scribejava.core.model
-
Class com.github.scribejava.core.model.OAuth1AccessToken extends OAuth1Token implements Serializable
- serialVersionUID:
- -103999293167210966L
-
Class com.github.scribejava.core.model.OAuth1RequestToken extends OAuth1Token implements Serializable
- serialVersionUID:
- 6185104114662587991L
-
Serialized Fields
-
oauthCallbackConfirmed
boolean oauthCallbackConfirmed
oauth_callback_confirmed:MUST be present and set to "true". The parameter is used to differentiate from previous versions of the protocol.
-
-
Class com.github.scribejava.core.model.OAuth1Token extends Token implements Serializable
- serialVersionUID:
- 6285873427974823019L
-
Class com.github.scribejava.core.model.OAuth2AccessToken extends Token implements Serializable
- serialVersionUID:
- 8901381135476613449L
-
Serialized Fields
-
accessToken
String accessToken
access_tokenREQUIRED. The access token issued by the authorization server.
-
expiresIn
Integer expiresIn
expires_inRECOMMENDED. The lifetime in seconds of the access token. For example, the value "3600" denotes that the access token will expire in one hour from the time the response was generated. If omitted, the authorization server SHOULD provide the expiration time via other means or document the default value.
-
refreshToken
String refreshToken
refresh_tokenOPTIONAL. The refresh token, which can be used to obtain new access tokens using the same authorization grant as described in http://tools.ietf.org/html/rfc6749#section-6
-
scope
String scope
scopeOPTIONAL, if identical to the scope requested by the client; otherwise, REQUIRED. The scope of the access token as described by http://tools.ietf.org/html/rfc6749#section-3.3
-
tokenType
String tokenType
token_typeREQUIRED. The type of the token issued as described in http://tools.ietf.org/html/rfc6749#section-7.1 Value is case insensitive.
-
-
Class com.github.scribejava.core.model.OAuth2AccessTokenErrorResponse extends OAuthException implements Serializable
- serialVersionUID:
- 2309424849700276816L
-
Serialized Fields
-
error
OAuth2Error error
-
errorDescription
String errorDescription
-
errorUri
URI errorUri
-
rawResponse
String rawResponse
-
-
Class com.github.scribejava.core.model.Token extends Object implements Serializable
- serialVersionUID:
- -8409640649946468092L
-
Serialized Fields
-
rawResponse
String rawResponse
-
-