我试图访问使用谷歌API的第三方API,但为了做到这一点,我必须使用gapi.auth.authorize来获取我的谷歌信息以传递给他们的API。在发现userinfo/email被弃用后,我正在使用新的email作用域,但我仍然得到一个access_denied错误。
以下是我所遇到的问题的简化版本…
index . html
<!doctype html>
<html>
<head>
</head>
<body>
<p>Tripping all day...</p>
<p id="output"></p>
<script src="auth.js"></script>
<script type="text/javascript">
function init() {
console.log('init');
checkAuth();
}
</script>
<script src="https://apis.google.com/js/client.js?onload=init"> </script>
<script>
document.getElementById("output").innerHTML = "Coooooorrrrrraaaaalll";
</script>
`enter code here`</body>
</html>
auth.js
CLIENT_ID = 'xxxxxxxxxxxxxxxxxxxxxxxxx.apps.googleusercontent.com';
var SCOPES = 'email';
function handleAuth(authResult) {
console.log('handle auth');
console.log(authResult);
}
function checkAuth() {
console.log('check auth');
gapi.auth.authorize({client_id: CLIENT_ID, scope: SCOPES, immediate: true, cookie_policy: 'single_host_origin'}, handleAuth);
}
控制台日志在失败时吐出这个错误对象…
client_id: "xxxxxxxxxxxxx.apps.googleusercontent.com"
cookie_policy: "single_host_origin"
error: "immediate_failed"
error_subtype: "access_denied"
expires_at: "1438103114"
expires_in: "86400"
g_user_cookie_policy: "single_host_origin"
issued_at: "1438016714"
response_type: "token"
scope: "email"
state: ""
任何关于我做错了什么或下一步在哪里看的见解是赞赏的。谢谢!
对于其他有类似问题的人,我发现如果我将gap.auth.authorize调用中的"immediate"参数更改为false,它将弹出一个框,让我选择要使用的Google帐户。从那里,一切都运行成功。
我仍然不能百分之百地了解幕后发生了什么,但它现在正在工作。最后,我想让即时身份验证工作,而不必做弹出窗口,但这可能是另一个问题。