lib/bobot/graph_facebook.rb in bobot-3.0.7 vs lib/bobot/graph_facebook.rb in bobot-3.5.0
- old
+ new
@@ -7,58 +7,49 @@
GRAPH_HEADERS = { Accept: "application/json", "Content-Type" => "application/json; charset=utf-8" }.freeze
module ClassMethods
def graph_get(path, query: {})
url = "#{GRAPH_FB_URL}#{path}".freeze
- req = ::Typhoeus::Request.new(
+ response = ::Typhoeus::Request.get(
url,
- method: :get,
params: URI.encode_www_form(query.reverse_merge(include_headers: false)),
headers: GRAPH_HEADERS,
ssl_verifypeer: false,
- verbose: false,
)
- response = req.run
json = ActiveSupport::JSON.decode(response.send(:body) || '{}')
Rails.logger.debug "[GET] >> #{url}"
Rails.logger.debug "[GET] << #{json}"
Bobot::ErrorParser.raise_errors_from(json)
json
end
module_function :graph_get
def graph_post(path, query: {}, body: {})
url = "#{GRAPH_FB_URL}#{path}".freeze
- req = ::Typhoeus::Request.new(
+ response = ::Typhoeus::Request.post(
url,
- method: :post,
params: URI.encode_www_form(query.reverse_merge(include_headers: false)),
body: ActiveSupport::JSON.encode(body),
headers: GRAPH_HEADERS,
ssl_verifypeer: false,
- verbose: false,
)
- response = req.run
json = ActiveSupport::JSON.decode(response.send(:body) || '{}')
Rails.logger.debug "[POST] >> #{url}"
Rails.logger.debug "[POST] << #{json}"
Bobot::ErrorParser.raise_errors_from(json)
json
end
module_function :graph_post
def graph_delete(path, query: {}, body: {})
url = "#{GRAPH_FB_URL}#{path}".freeze
- req = ::Typhoeus::Request.new(
+ response = ::Typhoeus::Request.delete(
url,
- method: :delete,
params: URI.encode_www_form(query.reverse_merge(include_headers: false)),
body: ActiveSupport::JSON.encode(body),
headers: GRAPH_HEADERS,
ssl_verifypeer: false,
- verbose: false,
)
- response = req.run
json = ActiveSupport::JSON.decode(response.send(:body) || '{}')
Rails.logger.debug "[DELETE] >> #{url}"
Rails.logger.debug "[DELETE] << #{json}"
Bobot::ErrorParser.raise_errors_from(json)
json