I have a Rails 3 application using Devise for authentication. Now I need to allow someone to log in using their Facebook account. I think this is called Facebook Connect, but I've also heard the term Facebook Graph API, so I'm not sure which one I'm asking for.

What do I need to do in order to integrate Facebook Connect with Devise?

Solution:

Use omniauth (which integrates with Devise) to allow the use of a variety of OpenID providers.

Resources:

Also check out this great tutorial on working with the Facebook Graph API.

link|improve this question

70% accept rate
Devise v1.3 came out. Use that instead of instead of head or branch version – Yeameen Apr 18 '11 at 4:56
feedback

6 Answers

up vote 8 down vote accepted

Devise 1.2 now comes with facebook login support using omniauth and works with Rails 3.0. Check out the wiki entry.

link|improve this answer
No more trunk/head version. New version of devise came out. Use 1.3 github.com/plataformatec/devise/tree/v1.3.0 – Yeameen Apr 18 '11 at 4:54
feedback
up vote 42 down vote
+400

I checked the devise github page to see what they were up to. That project is moving pretty fast and as it happens they have support for facebook connect amongst other things. Check out the section on OAuth2. They use github as an example but it would be the same thing for facebook and they mention differences. I think this is the way to go, third party gems for devise don't move as fast as devise or rails do. Cheers.

Oops here's the link http://github.com/plataformatec/devise

Edit

Of course I did very little coding here mostly went with the default, so here goes:

Create a new app and add these gems to the gemfile.

gem 'devise', :git => 'git://github.com/plataformatec/devise.git'
gem 'oauth2', :git => 'git://github.com/intridea/oauth2.git'

Run bundle install, then these commands gets you going with a basic User authentication model.

rails generate devise:install
rails generate devise User

In config/initializers/devise.rb uncomment/modify these. Look at the last paragraph as to where you get app_key and secret from facebook.

config.oauth :facebook, 'app_key', 'secret',
    :site              => 'https://graph.facebook.com',
    :authorize_path    => '/oauth/authorize',
    :access_token_path => '/oauth/access_token'

This should be your user model.

class User < ActiveRecord::Base
  # Include default devise modules. Others available are:
  # :token_authenticatable, :confirmable, :lockable, :timeoutable and :oauthable
  devise :database_authenticatable, :oauthable

  # Setup accessible (or protected) attributes for your model
  attr_accessible :email, :password, :password_confirmation, :remember_me

  def self.find_for_facebook_oauth(access_token, signed_in_resource=nil)
    # Get the user email info from Facebook for sign up
    # You'll have to figure this part out from the json you get back
    data = ActiveSupport::JSON.decode(access_token)

    if user = User.find_by_email(data["email"])
      user
    else
      # Create an user with a stub password.
      User.create!(:name => data["name"], :email => data["email"], :password => Devise.friendly_token)
    end
  end
end

Devise uses a root :to => "something#here" so I created a home controller with a index action and used that to root the application. But nevermind that. I put that in layout/application.html.erb so that I had basic sign_n sign_out routes.

<span>
  <%- if user_signed_in? %>
    <%= "Signed in as #{current_user.full_name}. Not you?" %>
    <%= link_to 'Sign out', destroy_user_session_path %>
  <%- else %>
    <%= link_to 'Sign in', new_user_session_path %>
  <%- end %>
</span>

Devise pretty much takes care of everything else for us. What you do need to do though is get your app_key and secret from facebook (used in devise.rb config file). This link should get you going. http://developers.facebook.com/setup

link|improve this answer
I think you are right. Facebook's new authentication API uses OAuth2. I have never worked with OAuth, nor Facebook, nor Devise. So I could use some extra help. Could you elaborate on what I would need to do in order to get it working with Facebook? – Andrew Aug 31 '10 at 19:39
Sure I'll take a crack at it, I'll work something out later this evening and post you some code to get you going. – Hugo Aug 31 '10 at 20:01
Thanks! Your answer was very helpful. – Andrew Sep 6 '10 at 1:47
This answer got the highest score but it's actually out-of-dated. It doesn't work anymore on recent version of devise. Use omniauth instead. – Tim Wu Nov 16 '11 at 11:40
Yes that is why it's no longer, the accepted answer aswel. Honest question: should I update it to simply say to use devise omniauth? – Hugo Nov 17 '11 at 2:54
show 1 more comment
feedback

In my app, I use omniauth, which I think came out a bit after this question was answered.

https://github.com/intridea/omniauth

link|improve this answer
OmniAuth is awesome, and it works well with Devise, as seen in this Railscasts episode (and the following one): railscasts.com/episodes/235-omniauth-part-1 – Jeff Dec 10 '10 at 20:36
yeah, I'll definitely be using omniauth next time. – Andrew Dec 13 '10 at 5:05
feedback

This blog post did it for me. Give it a look.

link|improve this answer
1  
That's a great post. Thanks for that. – Andrew Sep 6 '10 at 1:45
Instructions on that post are based on a non-released version of devise. reference – Tim Wu Nov 16 '11 at 11:43
feedback

Just used Hugo solution with almost no problem. Here is the User.rb code I had to use :

class User < ActiveRecord::Base
  # Include default devise modules. Others available are:
  # :token_authenticatable, :confirmable, :lockable, :timeoutable and :oauthable
  devise :database_authenticatable, :oauthable

  # Setup accessible (or protected) attributes for your model
  attr_accessible :name, :email, :password, :password_confirmation, :remember_me

  def self.find_for_facebook_oauth(access_token, signed_in_resource=nil)
    # Get the user email info from Facebook for sign up
    # You'll have to figure this part out from the json you get back

    data = ActiveSupport::JSON.decode(access_token.get('https://graph.facebook.com/me?'))

    logger.info("received from Facebook: #{data.inspect}")

    if user = User.find_by_email(data["email"])
      user
    else
      # Create an user with a stub password.
      User.create!(:name => data["name"], :email => data["email"], :password => Devise.friendly_token)
    end
  end
end

The things changed in this code :

  • name is in attr_accessible (don't forget to add a name field to user)
  • changed JSON decoding
link|improve this answer
feedback

http://github.com/grimen/devise_facebook_connectable

This gem on github is quite straightforward. Worth a shot!

link|improve this answer
1  
does not work with Rails 3: railsplugins.org/plugins/179-devise-facebook-connect – Andrew Aug 28 '10 at 1:03
feedback

Your Answer

 
or
required, but never shown

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