Google plus 谷歌+;登录错误:无效的\u请求

Google plus 谷歌+;登录错误:无效的\u请求,google-plus,google-oauth,Google Plus,Google Oauth,它已经正常工作了一段时间,但现在我得到了以下错误,无法找到任何东西来解决这个问题 当我点击谷歌登录时,我从谷歌收到了这个错误消息 这是我的谷歌渲染() } 我还注意到,现在我在调用GoogleOAuth2时收到一个400(错误请求) 这是URL调用:看起来您将旧的OAuth 2.0范围与新的Google+功能混合在一起。更新到应用程序应该可以工作 https://www.googleapis.com/auth/plus.login https://www.googleapis.com/au

它已经正常工作了一段时间,但现在我得到了以下错误,无法找到任何东西来解决这个问题

当我点击谷歌登录时,我从谷歌收到了这个错误消息

这是我的谷歌渲染()

}

我还注意到,现在我在调用GoogleOAuth2时收到一个400(错误请求)


这是URL调用:

看起来您将旧的OAuth 2.0范围与新的Google+功能混合在一起。更新到应用程序应该可以工作

  • https://www.googleapis.com/auth/plus.login
  • https://www.googleapis.com/auth/userinfo.email

看起来您正在将较旧的OAuth 2.0范围与较新的Google+功能混合使用。更新到应用程序应该可以工作

  • https://www.googleapis.com/auth/plus.login
  • https://www.googleapis.com/auth/userinfo.email

感谢您的宝贵时间。很奇怪,以前它还能用。谢谢你的时间。奇怪的是,它以前是工作的。
function render() {
gapi.signin.render('customBtn', {
  'callback': 'onSignInCallback',
  'clientid': '317162416761.apps.googleusercontent.com',
  'cookiepolicy': 'single_host_origin',
  'requestvisibleactions': 'http://schemas.google.com/AddActivity',
  'scope': 'openid email profile'
});