Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Using curl the following command is correct, and the Facebook API replies with the expected response:

curl -F 'access_token=TOKEN' -F 'batch=[{"method":"GET", "relative_url":"facebook"},{"method":"GET", "relative_url":"youtube"}]' https://graph.facebook.com

I would like to convert this to Ruby but have been struggling to find the right syntax. I have tried variations on the below, but without luck:

uri = URI.parse('https://graph.facebook.com')

res = Net::HTTP.post_form(uri, 'access_token' => 'TOKEN', 'batch' => "[{'method':'GET', 'relative_url':'facebook'}]")

Can you help?

share|improve this question

1 Answer

up vote 0 down vote accepted

Thanks to this question and this blog post here's what I got working:

uri = URI("https://graph.facebook.com/")
req = Net::HTTP::Post.new(uri.path)
attach = {}

attach = {'batch' => [{"method" => "GET", "relative_url"=>"facebook"}].to_json}
req.set_form_data(attach.merge('access_token' => "TOKEN"))

res = Net::HTTP.new(uri.host, uri.port)
res.verify_mode = OpenSSL::SSL::VERIFY_NONE
res.use_ssl = true

response = nil
res.start do |http|
  response = http.request(req)
end
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.