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.

Im using rails 3 with devise and omniauth-facebook, I click on the "Login with facebook link", it redirects me to facebook page of my app, I login with my facebook credentials, it redirects me back to my Rails app successfully, and it also added my facebook email to the users table, but how do I access the logged in users details?

I tried using the devise user model, but no luck

here is what i have

<%= link_to "Sign in with Facebook", user_omniauth_authorize_path(:facebook) %>

<% if user_signed_in? %>
  <div>Signed in as... <%= current_user.email %></div>
<% else %>
    not signed in
<% end %>

Any help would be appreciated, thanks guys! :D

share|improve this question

2 Answers

I think here you can find what you're looking for, read and watch the article carefully :) http://railscasts.com/episodes/236-omniauth-part-2

share|improve this answer

You may also find the Koala Facebook gem handy.

share|improve this answer
cool will check it out – Francois Jul 16 '12 at 7:05

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.