OAuth1Settings

play.silhouette.impl.providers.OAuth1Settings
case class OAuth1Settings(requestTokenURL: String, accessTokenURL: String, authorizationURL: String, callbackURL: String, apiURL: Option[String], consumerKey: String, consumerSecret: String)

The OAuth1 settings.

Value parameters

accessTokenURL

The access token URL provided by the OAuth provider.

apiURL

The URL to fetch the profile from the API. Can be used to override the default URL hardcoded in every provider implementation.

authorizationURL

The authorization URL provided by the OAuth provider.

callbackURL

The callback URL to the application after a successful authentication on the OAuth provider. The URL can be a relative path which will be resolved against the current request's host.

consumerKey

The consumer ID provided by the OAuth provider.

consumerSecret

The consumer secret provided by the OAuth provider.

requestTokenURL

The request token URL provided by the OAuth provider.

Attributes

Graph
Supertypes
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any
Show all

Members list

Value members

Inherited methods

def productElementNames: Iterator[String]

Attributes

Inherited from:
Product
def productIterator: Iterator[Any]

Attributes

Inherited from:
Product