Remote JSON Source – Ruby on Rails

Hey everyone,

Just a quick post on how to retrieve a remote JSON source so I don’t forget.

require 'open-uri'
require 'json'

#Retrieve source (controller/model)
@results = JSON.parse(open("http://www.myjsonsource.com/jsonfeed_num1").read)


#In view

   

That’s all there is to it, let me know if you have any problems!

Leave a comment