OAuth1aServerSettings

class OAuth1aServerSettings(name: String, requestTokenUrl: String, authorizeUrl: String, accessTokenUrl: String, consumerKey: String, consumerSecret: String, accessTokenInterceptor: HttpRequestBuilder.() -> Unit) : OAuthServerSettings

OAuth1a server settings

Constructors

Link copied to clipboard
fun OAuth1aServerSettings(name: String, requestTokenUrl: String, authorizeUrl: String, accessTokenUrl: String, consumerKey: String, consumerSecret: String, accessTokenInterceptor: HttpRequestBuilder.() -> Unit = {})

Properties

Link copied to clipboard
val accessTokenInterceptor: HttpRequestBuilder.() -> Unit
Link copied to clipboard
val accessTokenUrl: String

OAuth server access token request URL

Link copied to clipboard
val authorizeUrl: String

OAuth server authorization page URL

Link copied to clipboard
val consumerKey: String

consumer key parameter (provided by OAuth server vendor)

Link copied to clipboard
val consumerSecret: String

a secret key parameter (provided by OAuth server vendor)

Link copied to clipboard
val name: String

configuration name

Link copied to clipboard
val requestTokenUrl: String

OAuth server token request URL

Link copied to clipboard
val version: OAuthVersion

OAuth version (1a or 2)