Tutorial for any new Rails API API wrappers?

Do you have a tutorial on any of the modern (Nov 2010) Facebook covers (new APIs) for Rails such as Facebooker2 or Koala?

+4
source share
4 answers

I don’t know about the tutorial for facebooker2 or Koala, but I suggest you take a look at fb_graph gem

0
source

I used Koala integration for Facebook and definitely recommend it. If you're looking for an introduction on how to get started, I recommend checking out the Wiki project on Github. It has several Wiki articles about using the library.

https://github.com/arsduo/koala/wiki

0
source

For my Facebook API projects, I use the following Graph API - https://github.com/moomerman/facebook_oauth

They have a great example of an application hosted on - http://facebook-oauth.heroku.com/

The gems of the gem itself are very useful.

If you are looking for a third-party perspective when using the library, then I am not sure that you will find it, since the WIKI of the gem itself is quite explanatory and useful.

0
source

Depending on what you want to use it for, if you have 2 excellent railscast for connecting to facebook to integrate OAuth and Devise

http://railscasts.com/episodes/209-introducing-devise http://railscasts.com/episodes/210-customizing-devise

Twitter example, but changing it to facebook only accepts a change in the configuration file

-1
source

All Articles