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

I have a rails app with two separate types of users (call them A and B). Right now they can both sign in with facebook. However, I need B to be able to oauth with some extended permissions, and I DO NOT want A to give me the extended permissions.

Inside config/initializers/devise.rb

config.omniauth :facebook, "API_KEY", "API_SECRET", :client_options => {:ssl => {:ca_path => '  /path/to/my/ssl/stuff'}}

I know I can add

:scope => "extended_permissions"

But I only want the extended permissions to happen when B users sign up.

Since this is in an initializer is this even possible? Or can I somehow config.omniauth elsewhere in the app and keep devise happy?

share|improve this question
You can take a look to this: stackoverflow.com/questions/13524919/… and set dynamically the app id, the app secret and the options per request – Ivangrx Feb 26 at 22:20
Check the gem's github. – Ashitaka Feb 26 at 23:22

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.