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 implementing sign in with Facebook in my web application. I am using omniauth gem for it. I want to open login to facebook form in new pop up. How can I do that? Please help.

share|improve this question

1 Answer

up vote 1 down vote accepted

I'm assuming that you have OmniAuth working in general, and are only curious about how to do it in a new window. If you haven't set up OmniAuth yet, there's a great RailsCast about it here.

OmniAuth shouldn't have any problems with working in a pop-up out of the box. To start with, just include target='_blank' on your login page, like so:

<%= link_to "Log in with Facebook", "/auth/facebook", :target => '_blank' %>

This should load the Facebook authorization page in a new window, and you should be able to get through the entire OAuth process. Once you've finished OAuth, however, you will need to render a template that includes some javascript to handle closing of the page. Here's the pattern we follow:

<script language='javascript'>
  if (opener.authenticationSuccessful) {
    opener.authenticationSuccessful();
  } else {
    opener.location.href = "<%= root_path %>"; // your 'login path'
  }
  window.close();
</script>

This works well for us, since it allows us to override the default behavior (go to the root login page) on a page by page basis (for instance, if someone is only adding an authentication to an existing session), but by default, will do what you expect without any additional work.

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.