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.

I am trying to use net/http to get a response for API call based on an old library I dug up https://github.com/jurisgalang/facebook/blob/master/lib/facebook/graph-object.rb#L22

require 'net/http'

API_HOST       = "graph.facebook.com"
API_BASE_URL   = "https://#{API_HOST}"
path           = "/boo"

uri            = URI.parse "#{API_BASE_URL}#{path}"
http           = Net::HTTP.new(uri.host, uri.port)
res            = http.get(uri.request_uri, nil)

The uri ends up as <URI::HTTPS:0x0000010091fc48 URL:https://graph.facebook.com/boo>

This results in

NoMethodError: undefined method `keys' for nil:NilClass

I assumed it is because dest argument is obsolete: http://ruby-doc.org/stdlib-1.9.3/libdoc/net/http/rdoc/Net/HTTP.html#method-i-get

So I did it without

res            = http.get(uri.request_uri)

Which results in

NoMethodError: undefined method `empty?' for

#<URI::HTTPS:0x0000010091fc48 URL:https://graph.facebook.com/boo>

How can one request a response using net/http and http.get?

share|improve this question

1 Answer

up vote 2 down vote accepted

Just at a very quick glance of the documentation, the second argument to get is a hash, and you're passing nil, see:

http.get(uri.request_uri, nil)

Your second attempt should be OK, though I did find that with my setup (ruby 1.9.3 and MacPorts' openssl library) that Net::HTTP was rejecting Facebook's ssl certificate (I was getting "Connection reset by peer". The following code snippet worked for me:

require 'net/http'

API_HOST       = "graph.facebook.com"
API_BASE_URL   = "https://#{API_HOST}"
path           = "/boo"

uri            = URI.parse "#{API_BASE_URL}#{path}"
http           = Net::HTTP.new(uri.host, uri.port)
http.use_ssl   = true
http.verify_mode = OpenSSL::SSL::VERIFY_NONE
res            = http.get(uri.request_uri)
puts res.body

Note that I'm not verifying the SSL certificate, which is a potential security problem. As a proof of concept, however, this snippet worked for me - so hopefully this will give you a good data point in your debugging effort.

share|improve this answer
Alright thanks I will have to figure out what to do with that SSL problem then – phwd Jan 17 at 19:18
I've searched the highest mountains and the deepest oceans for this answer. Thankyou! – Sheharyar Naseer Apr 7 at 20:10

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.