I am using Omniauth and forcing /auth/facebook to display in a popup (with JS). [Instead of a new window - which is much less user friendly]

The problem is: Omniauth loads the FB url with

display=page

Instead of what I want:

display=popup

Anyone knows how I can change the params Omniauth uses for facebook ?

Thanks

link|improve this question

67% accept rate
feedback

4 Answers

up vote 11 down vote accepted

At where you set your Facebook ID and secret key, add one more extra option as:

:display => "popup"
link|improve this answer
Worked great for me! Thanks – e3matheus Jun 29 '11 at 21:03
1  
This doesn't seem to work for me using Omniauth 0.2.6 in a rails 3.1.0.rc5 app. Is there anything else I might need to do? – David Tuite Aug 16 '11 at 1:11
Can you guide me where exactly I need to put this? – Bongs Sep 10 '11 at 5:27
feedback

Actually, in the current version of omniauth-facebook, this is what works for me:

:authorize_params => { :display => 'popup' }
link|improve this answer
Here is a relevant github issue for the omniauth-facebook project. I'm not sure why it's closed because the :authorize_params for is undocumented. I've asked to have it reopened. – Adam Spiers Jan 13 at 22:28
feedback

If you're using this with Devise, simply edit your development.rb (and production.rb) to the following;

config.omniauth :facebook, FACEBOOK_API, FACEBOOK_SECRET, :display => 'popup'

Make sure you restart your rails server upon editing these files.

link|improve this answer
feedback

If you're using heroku, then use this option:

config.omniauth :facebook, ENV['FB_APP_ID'], ENV['FB_APP_SECRET'], {:scope => 'email, offline_access', :client_options => {:ssl => {:ca_file => '/usr/lib/ssl/certs/ca-certificates.crt'}}, :display => 'popup' }

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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