突然的Javascript Google Oauth2问题

时间:2013-09-04 18:26:56

标签: javascript oauth

我在JSP应用程序中使用Google Oauth2 Javascript。

 <script src="https://apis.google.com/js/client.js"></script>

 function googleOAuth(idx) {
alert ("Please ensure that popup windows are enabled in your browser. You will      authenticate directly with Google in another window.");
   var config = {
    'client_id': '<%=googleClientId%>',
    'scope': 'https://mail.google.com/ https://www.googleapis.com/auth/userinfo.email',
    'response_type': 'token',
    'immediate': false
  };
  gapi.auth.authorize(config, function() {
     var token = gapi.auth.getToken();
   /// ...use token

  });
  }

我的应用程序工作正常,直到昨天,今天未能授权 Chrome控制台说:

未捕获的TypeError:undefined不是函数 在线cb = gapi.loaded_0:223 处理程序函数尚未执行。 第223行具有以下内容:

var f=c.popup,g=c.after_redirect;f&&"keep_open"!=g&&(0,_.Uu)(window,f)

我看不到g&amp;&amp;(0,_。Uu)(窗口,f) 可以是有效的JS。

还有其他人也看到了吗?

1 个答案:

答案 0 :(得分:3)

这是一个错误。还报道: one two

我知道谷歌现在正在修理。