I'd like to make requests to APIs for a range of sites like Twitter, Facebook etc and store the results in my database.
The example request Twitter give is here: https://api.twitter.com/1/users/show.json?screen_name=TwitterAPI&include_entities=true
How do I go about making the request from my Rails 3 App and then store the data? I don't necessarily need all of the data, i'm mostly interested in followers in this case.
Many thanks in advance.
EDIT:
I tried adding this to my artists controller's show method:
require 'open-uri'
require 'json'
result = JSON.parse(open("https://api.twitter.com/1/users/show.json?screen_name=thesubways&include_entities=true").read)
parsed_json = ActiveSupport::JSON.decode(result)
@results = parsed_json["followers_count"]
@result = result["followers_count"]and then I try to display this in my show view with<%= @result %>but nothing happens? – Ryan Berry May 16 '12 at 7:45