I have read the omniauth oauth rdoc

  @consumer = OAuth::Consumer.new(key, secret, {
    :site               => "http://term.ie",
    :scheme             => :header,
    :http_method        => :post,
    :request_token_path => "/oauth/example/request_token.php",
    :access_token_path  => "/oauth/example/access_token.php",
    :authorize_path     => "/oauth/example/authorize.php"
   })

there is no scope such as

https://graph.facebook.com/oauth/authorize?
    client_id=...&
    redirect_uri=http://www.example.com/callback&
    scope=user_photos,user_videos,publish_stream

How do I add one? I am trying to overwrite oauth now ... do anyone got any better solution?

link|improve this question

feedback

1 Answer

up vote 23 down vote accepted

Put this in initializer

Rails.application.config.middleware.use OmniAuth::Builder do
    provider :facebook , 'app' , 'secret' , {:scope => "manage_pages"}
end

If you are using more than one scope, it's comma delimited:

:scope => "offline_access, manage_pages"
link|improve this answer
1  
Thanks for this. – Phil Sturgeon Dec 1 '10 at 12:24
5  
if you are using more than one :scope, use a comma separeted string: :scope => "offline_access,manage_pages" – rafamvc Jan 20 '11 at 0:36
1  
Documentation for provider setup here: rubydoc.info/gems/oa-oauth/0.2.6/OmniAuth/Strategies/Facebook Permissions/scope available listed here: developers.facebook.com/docs/reference/api/permissions – clacke Jul 21 '11 at 7:02
feedback

protected by Will Jan 14 '11 at 14:49

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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