15

omn​​iauthoauthrdocを読みました

  @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"
   })

のようなスコープはありません

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

どうすれば追加できますか?私は今oauthを上書きしようとしています...誰かがより良い解決策を手に入れましたか?

4

1 に答える 1

39

これをイニシャライザーに入れます

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

複数のスコープを使用している場合は、コンマで区切られます。

:scope => "offline_access, manage_pages"
于 2010-11-26T08:22:07.493 に答える