Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question

4 Answers

up vote 13 down vote accepted

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

:display => "popup"
share|improve this answer
1  
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

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

:authorize_params => { :display => 'popup' }
share|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 '12 at 22:28

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' }
share|improve this answer

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.

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.