Module: Suzuri
- Defined in:
- lib/suzuri_client.rb
Defined Under Namespace
Classes: Choice, Client, Favorite, Identity, Item, ItemColor, ItemSize, ItemVariant, Material, Product, Profile, User
Class Method Summary collapse
-
.connect(api_key, options = nil) ⇒ Client
Get a Client configured to use HTTP Basic authentication.
-
.connect_oauth(oauth_token, options = nil) ⇒ Client
Get a Client configured to use OAuth authentication.
-
.connect_token(token, options = nil) ⇒ Client
Get a Client configured to use Token authentication.
Class Method Details
.connect(api_key, options = nil) ⇒ Client
Get a Client configured to use HTTP Basic authentication.
22 23 24 25 26 27 28 29 |
# File 'lib/suzuri_client.rb', line 22 def self.connect(api_key, =nil) = () uri = URI.parse([:url]) uri.user = .fetch(:user, 'user').gsub('@', '%40') uri.password = api_key client = Heroics.client_from_schema(SCHEMA, uri.to_s, ) Client.new(client) end |
.connect_oauth(oauth_token, options = nil) ⇒ Client
Get a Client configured to use OAuth authentication.
39 40 41 42 43 44 |
# File 'lib/suzuri_client.rb', line 39 def self.connect_oauth(oauth_token, =nil) = () url = [:url] client = Heroics.oauth_client_from_schema(oauth_token, SCHEMA, url, ) Client.new(client) end |