Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am writing a facebook app by using ruby and rails. I will need Facebook connect and login, share, and timeline integration (posting on user's behalf). Is there any tutorial/guide or gem that you recommend.

Thank you Cheers

share|improve this question
1  

2 Answers

up vote 1 down vote accepted

Koala is a gem that interacts with Facebook's Graph API and can handle Facebook OAuth as well.

Koala has some good examples on Github, but if you like Ryan Bates covers Koala and Facebook's Graph API in Railscasts Pro #361 and #363. Both are paid episodes.

Omniauth is a great gem for handling many different OAuth providers, including Facebook. Ryan Bates covers it in several episodes.

share|improve this answer
Thank you!Episode 360 was also very helpful for facebook authentication using omniauth-facebook gem – Game.On Jul 21 '12 at 22:36

I can recommend 3 gems for facebook authentication and login. Implementing them would be quite complex. For basic authentication you can use devise, then for facebook login, you can integrate omniauth with the omniauth-facebook gem into devise:

https://github.com/plataformatec/devise/wiki/OmniAuth:-Overview

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.