Serialized Form

  • Package com.github.scribejava.core.exceptions

  • 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
      • Serialized Fields

        • token
          java.lang.String token
        • tokenSecret
          java.lang.String tokenSecret
    • Class com.github.scribejava.core.model.OAuth2AccessToken extends Token implements Serializable

      serialVersionUID:
      8901381135476613449L
      • Serialized Fields

        • accessToken
          java.lang.String accessToken
          access_token

          REQUIRED. The access token issued by the authorization server.

        • expiresIn
          java.lang.Integer expiresIn
          expires_in

          RECOMMENDED. 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
          java.lang.String refreshToken
          refresh_token

          OPTIONAL. 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
          java.lang.String scope
          scope

          OPTIONAL, 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
          java.lang.String tokenType
          token_type

          REQUIRED. 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
          java.lang.String errorDescription
        • errorUri
          java.net.URI errorUri
        • rawResponse
          java.lang.String rawResponse
    • Class com.github.scribejava.core.model.Token extends java.lang.Object implements Serializable

      serialVersionUID:
      -8409640649946468092L
      • Serialized Fields

        • rawResponse
          java.lang.String rawResponse