Class: Patreon::Client
- Inherits:
-
Object
- Object
- Patreon::Client
- Defined in:
- lib/patreon/client.rb
Constant Summary collapse
- BASE_URL =
"https://www.patreon.com/api/oauth2/v2"
Instance Attribute Summary collapse
-
#access_token ⇒ Object
readonly
Returns the value of attribute access_token.
-
#adapter ⇒ Object
readonly
Returns the value of attribute adapter.
Instance Method Summary collapse
- #campaigns ⇒ Object
- #connection ⇒ Object
- #identity ⇒ Object
-
#initialize(access_token:, adapter: Faraday.default_adapter, stubs: nil) ⇒ Client
constructor
A new instance of Client.
- #members ⇒ Object
Constructor Details
#initialize(access_token:, adapter: Faraday.default_adapter, stubs: nil) ⇒ Client
Returns a new instance of Client.
7 8 9 10 11 12 13 |
# File 'lib/patreon/client.rb', line 7 def initialize(access_token:, adapter: Faraday.default_adapter, stubs: nil) @access_token = access_token @adapter = adapter # Test stubs for requests @stubs = stubs end |
Instance Attribute Details
#access_token ⇒ Object (readonly)
Returns the value of attribute access_token.
5 6 7 |
# File 'lib/patreon/client.rb', line 5 def access_token @access_token end |
#adapter ⇒ Object (readonly)
Returns the value of attribute adapter.
5 6 7 |
# File 'lib/patreon/client.rb', line 5 def adapter @adapter end |
Instance Method Details
#campaigns ⇒ Object
19 20 21 |
# File 'lib/patreon/client.rb', line 19 def campaigns CampaignsResource.new(self) end |
#connection ⇒ Object
27 28 29 30 31 32 33 34 35 36 |
# File 'lib/patreon/client.rb', line 27 def connection @connection ||= Faraday.new(BASE_URL) do |conn| conn.request :authorization, :Bearer, access_token conn.request :json conn.response :json, content_type: "application/vnd.api+json" conn.adapter adapter, @stubs end end |
#identity ⇒ Object
15 16 17 |
# File 'lib/patreon/client.rb', line 15 def identity IdentityResource.new(self) end |
#members ⇒ Object
23 24 25 |
# File 'lib/patreon/client.rb', line 23 def members MembersResource.new(self) end |