Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Rails 3 and Facebook share

in my app I want to have the "Share" Facebook thing in the items with a pre-defined message, so the user clicks in "Share" and gets redirected to the Allow/Deny page and after allowing, the pre-defined message is automatically posted in the user's facebook wall. What's the best gem for my problem(I am sure there is one :p)?

Thanks!

P.S: I looked at the facebooker gem but it seems out-of-date and I have to use the latest Rails 3.

like image 948
rodrigoalvesvieira Avatar asked Feb 14 '11 18:02

rodrigoalvesvieira


1 Answers

Take a look at some related questions. Is fb_graph or Koala gem better than facebooker2? and Which Facebook Ruby API

I'm currently using a custom solution for our facebook integration but I have been looking moving to a gem and these seem to be the main choices:

  1. koala
  2. fb_graph
  3. facebooker2

So far I agree with David from the "Which Facebook Ruby API" post and am leaning towards fb_graph because of its simplicity. It should handle your requirements without any problems, just take a look at the sample app.

like image 123
Braden Becker Avatar answered Sep 22 '22 17:09

Braden Becker