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'm trying to follow along with this solution for displaying Facebook as a popup with omniauth:

Turn omniauth facebook login into a popup

However the Answer states:

And then in your callback view:

:javascript
   if(window.opener) {
    window.opener.location.reload(true);
    window.close()
 }

I have followed the railscast for simple omniauth. I'm only using facebook. I have set :display=>popup in my initializer. However, I don't have a callback view, only a session controller and a create action. How can I use a view for the callback so I can put this code in?

share|improve this question

1 Answer

In your routes.rb file you must have specified callback with OmniAuth like this:

match "/auth/:provider/callback" => "Users#share"

Where You can have your action/method back in your UsersController class :

def share
 #Action you with to perform here!
end

and create its view file in views -> users -> share.html.erb

And you may have a different layout for this template if, you prefer to use one.

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.