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 using foursquare API to search for a particular venue. I use the following url: https://api.foursquare.com/v2/venues/venue_id?oauth_token=Access_token

The response given by the website is json.

Then I use the following code trying to parse this json response using ruby:

require 'rest-open-uri'
require 'json'

url = 'https://api.foursquare.com/v2/venues/venue_id?oauth_token=Access_token'

buffer = open(url, "UserAgent" => "Ruby-Wget").read

result = JSON.parse(buffer)

Here are the error code I get:

C:/RailsInstaller/Ruby1.9.2/lib/ruby/1.9.1/net/http.rb:678:in connect': SSL_con nect returned=1 errno=0 state=SSLv3 read server certificate B: certificate verif y failed (OpenSSL::SSL::SSLError) from C:/RailsInstaller/Ruby1.9.2/lib/ruby/1.9.1/net/http.rb:678:inbloc k in connect' from C:/RailsInstaller/Ruby1.9.2/lib/ruby/1.9.1/timeout.rb:44:in timeou t' from C:/RailsInstaller/Ruby1.9.2/lib/ruby/1.9.1/timeout.rb:89:intimeou t'

Does this error code mean that I cannot open this url because it starts with "https"? Is there any way that I could use to open this url and parse the json response?

Thanks ahead!

share|improve this question

3 Answers

This should work:

gem install httparty

then

require 'httparty'
require 'json'

response = HTTParty.get("https://api.foursquare.com/v2/venues/vid", 
:query => {:oauth_token => "abc"})

json = JSON.parse(response.body)
share|improve this answer

This seems to provide some answers for your problem, even if it feels a little dirty.

share|improve this answer

RUBY is case sensitive. require 'json' # json must be lower case

JSON.parse()
for example JSON.parse(response.body) # JSON must be all upper-case

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.