我在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。
还有其他人也看到了吗?