Class: Net::Facebook::Api::Request

Inherits:
Object
  • Object
show all
Defined in:
lib/net/facebook/api/request.rb

Instance Method Summary collapse

Constructor Details

#initialize(attrs = {}) ⇒ Request

Returns a new instance of Request.



9
10
11
12
13
14
# File 'lib/net/facebook/api/request.rb', line 9

def initialize(attrs = {})
  @host = 'graph.facebook.com'
  @query = attrs[:params] if attrs[:params]
  @path = attrs.fetch :path, "/v2.3/#{@query}"
  @method = attrs.fetch :method, :get
end

Instance Method Details

#runObject



16
17
18
19
20
21
22
23
# File 'lib/net/facebook/api/request.rb', line 16

def run
  case response = run_http_request
  when Net::HTTPOK
    JSON.parse(response.body)
  else
    raise Errors::ResponseError, response
  end
end