Facebook Graph API

I wanted to use the Facebook graphical API in my rails application.

What are the recommended pearls for working with FB APIs?

thanks

+4
source share
3 answers

This is a well written FB graph support for Ruby - https://github.com/nov/fb_graph

+9
source

You can use the Koala pearls from https://github.com/arsduo/koala

+8
source

You can directly access the Graph API. The answers will be in JSON, which can then be parsed as needed. For more information, see the Documentation for Facebook for more information on specific functions that you can call and select JSON responses.

I am not coding in Ruby, but this seems like a great start to understanding Ruby on Rails and JSON .

+3
source

All Articles