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 trying to use Omniauth facebook with two devise models in a Rails 3 app. Currently that's not something that's possible using omniauthable and the devise helpers.

A similar question answered how to do this:

Omniauth "with" STI and devise

"..move your omniauth configuration from devise.rb to omniauth.rb and create your own omniauth routes.'

But I am having trouble in defining these routes and helpers, i.e. for facebook I used a devise helper like this:

user_omniauth_authorize_path(:facebook) 

..which redirected to facebook and then placed a callback URL I set up in my devise_for scope.

What would my routes/helpers look like for the omniauth-facebook strategy if setting up manually?

I already had omniauth-facebook and devise nicely working for the 'User' model before, so I have the various

@user = User.find_for_facebook_oauth(request.env["omniauth.auth"], current_user, params[:state])

..parts ready to go, but now with two models. I'm just having trouble with replacing the devise helpers I think.

share|improve this question

1 Answer

up vote 1 down vote accepted

Your link should look this this:

<%= link_to "Sign in with Facebook", "/auth/facebook" %>

You also have to create some callback routes, and there are 2 ways you could do this. You can either:

  1. Define a route that catches all callbacks and redirects to a single controller's action:

    match "/auth/:provider/callback" => "authentications#create"
    

    You can then use params[:provider] to get the name of the provider. Using an if you could then do things differently depending on the provider.

  2. Or define a route for every single provider where you can point to different actions in your controller:

    match "/auth/twitter/callback" => "authentications#twitter"
    match "/auth/facebook/callback" => "authentications#facebook"
    

    You would then need to define these actions. In the twitter action you could fetch the user's tweets and in the facebook action you could fetch the user's posts, for example.

Also, don't forget to define the route

match '/auth/failure' => 'authentications#failure'

This is the route called when a user does not authorize the login with a certain provider.

Now, you will come across a problem. How do you find out where the link should point to? For Twitter and Facebook, it seems pretty obvious ("/auth/twitter" and "/auth/facebook", respectively).

But what if you are using the omniauth-google-oauth2 gem to sign in using Google+? Your only hope is that each omniauth gem (listed here) has some good documentation. In this case, the documentation is terrible but the link is easily deductible. It should be "/auth/google_oauth2".

Note: I made several references to an AuthenticationsController but maybe what you have is a CallbacksController or an OmniauthCallbacksController, it doesn't really matter what you call it.

share|improve this answer
Thank you Ashitaka for your help. I added the following to my routes, and included the /auth/facebook as the 'sign in' link. It seems to be working ok now. devise_scope :user do match "/auth/facebook/callback" => "users/omniauth_callbacks#facebook" match "/signout" => "sessions#destroy", :as => :signout match '/auth/failure' => 'sessions#destroy' end – user1690146 Dec 13 '12 at 19:53
Before in the omniauth devise routing, I had a get '/users/auth/:provider' => 'users/omniauth_callbacks#passthru' set-up. But now I'm pointing it to users/omniauth_callbacks#facebook - is that going to be ok? – user1690146 Dec 13 '12 at 19:56
1  
No, you don't need that route. Also, I think you should point the '/auth/failure' route to users/omniauth_callbacks#failure. In the failure action you would then define what you want to happen when a user doesn't want to login with Facebook. Do you redirect the user to the root page? To another page, perhaps? – Ashitaka Dec 13 '12 at 20:00

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.