Class: Vimeo::Client
- Inherits:
-
Object
- Object
- Vimeo::Client
- Defined in:
- lib/vimeo/client.rb
Constant Summary collapse
- BASE_URL =
"https://api.vimeo.com"
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
- #connection ⇒ Object
-
#initialize(access_token:, adapter: Faraday.default_adapter, stubs: nil) ⇒ Client
constructor
A new instance of Client.
- #videos ⇒ 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/vimeo/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/vimeo/client.rb', line 5 def access_token @access_token end |
#adapter ⇒ Object (readonly)
Returns the value of attribute adapter.
5 6 7 |
# File 'lib/vimeo/client.rb', line 5 def adapter @adapter end |
Instance Method Details
#connection ⇒ Object
19 20 21 22 23 24 25 26 27 28 |
# File 'lib/vimeo/client.rb', line 19 def connection @connection ||= Faraday.new(BASE_URL) do |conn| conn.request :authorization, :Bearer, access_token conn.request :json conn.response :json conn.adapter adapter, @stubs end end |
#videos ⇒ Object
15 16 17 |
# File 'lib/vimeo/client.rb', line 15 def videos VideosResource.new(self) end |