play.api.libs

oauth

package oauth

OAuth integration helpers.

Visibility
  1. Public
  2. All

Type Members

  1. case class ConsumerKey (key: String, secret: String) extends Product with Serializable

    A consumer key / consumer secret pair that the OAuth provider gave you, to identify your application.

  2. case class OAuth (info: ServiceInfo, use10a: Boolean) extends Product with Serializable

    Library to access ressources protected by OAuth 1.

  3. case class OAuthCalculator (consumerKey: ConsumerKey, token: RequestToken) extends AbstractOAuthConsumer with SignatureCalculator with Product with Serializable

    A signature calculator for the Play WS API.

  4. case class RequestToken (token: String, secret: String) extends Product with Serializable

    A request token / token secret pair, to be used for a specific user.

  5. case class ServiceInfo (requestTokenURL: String, accessTokenURL: String, authorizationURL: String, key: ConsumerKey) extends Product with Serializable

    The information identifying a oauth provider: URLs and the consumer key / consumer secret pair.