I'm building a Facebook canvas app in Rails, and I'm looking to display all of the photos in a given photo album. I can generate the URL that will take me to a page with a JSON
feed of the data associated with those photos, but I'm not clear on how to capture that information and store it in an array within Rails. If anyone could help me I'd appreciate it!
The request I'm making is to:
https://graph.facebook.com/'+album["id"].to_s+'/photos/?fields=source&access_token='+@token["oauth_token"]
Where album['id']
and @token[oauth_token]
are user specific.