FIX: google oauth2 for sites using https. Need to specify the redirect_uri during setup in this case.

This commit is contained in:
Neil Lalonde 2014-07-31 14:49:01 -04:00
parent bf16ff275a
commit fe6235b40e
1 changed files with 2 additions and 1 deletions

View File

@ -36,7 +36,8 @@ class Auth::GoogleOAuth2Authenticator < Auth::Authenticator
strategy = env["omniauth.strategy"]
strategy.options[:client_id] = SiteSetting.google_oauth2_client_id
strategy.options[:client_secret] = SiteSetting.google_oauth2_client_secret
}
},
:redirect_uri => "#{Discourse.base_url}/auth/google_oauth2/callback"
end
protected