View Source Squeeze.OAuth1.Credentials (OpenPace v0.0.1)

Credentials for OAuth 1.0

Link to this section Summary

Link to this section Types

@type t() :: %Squeeze.OAuth1.Credentials{
  consumer_key: String.t(),
  consumer_secret: String.t(),
  method: :hmac_sha1 | :rsa_sha1 | :plaintext,
  token: nil | String.t(),
  token_secret: nil | String.t(),
  verifier: nil | String.t()
}