From: Tom Hughes Date: Tue, 8 Oct 2019 17:36:27 +0000 (+0100) Subject: Switch to use v4.0 of the Facebook API for authentication X-Git-Tag: live~3237 X-Git-Url: https://git.openstreetmap.org./rails.git/commitdiff_plain/d96a5c9c87b021036449eefa13a6da81e7559d58?ds=sidebyside Switch to use v4.0 of the Facebook API for authentication --- diff --git a/config/initializers/omniauth.rb b/config/initializers/omniauth.rb index dc5b28e66..a61fe960c 100644 --- a/config/initializers/omniauth.rb +++ b/config/initializers/omniauth.rb @@ -21,7 +21,7 @@ end openid_options = { :name => "openid", :store => openid_store } google_options = { :name => "google", :scope => "email", :access_type => "online" } -facebook_options = { :name => "facebook", :scope => "email" } +facebook_options = { :name => "facebook", :scope => "email", :client_options => { :site => "https://graph.facebook.com/v4.0", :authorize_url => "https://www.facebook.com/v4.0/dialog/oauth" } } windowslive_options = { :name => "windowslive", :scope => "wl.signin,wl.emails" } github_options = { :name => "github", :scope => "user:email" } wikipedia_options = { :name => "wikipedia", :client_options => { :site => "https://meta.wikimedia.org" } }