我目前正在尝试创建一个用户可以使用他的 google+ 帐户登录的网站。大部分都在工作。我让他们授予对我网站的访问权限。他们可以登录,我会得到他们的姓名和用户 ID,我会在我的网站上显示特定于他们的 google 帐户的内容。
但是,当其他人想要登录并且我尝试“注销”该站点时,谷歌登录仍然记得它刚刚登录,并且在注销后它会立即运行代码以再次登录。如果我从谷歌删除 SSID cookie,它不会这样做,所以我假设这是谷歌存储我刚刚使用 x 登录的事实的地方。
有没有办法在我注销时让谷歌不立即使用同一个帐户登录,而是询问谷歌用户的电子邮件和密码?
我觉得我在这里遗漏了一些明显的东西,但我不知道如何处理这个问题。
我用来验证和获取数据的代码:
<button class ="btn btn-primary" id="authorize-button" style="visibility: hidden">Log in</button>
<script>
var clientId = '';
var apiKey = '';
var scopes = '';
function handleClientLoad() {
gapi.client.setApiKey(apiKey);
window.setTimeout(checkAuth,1);
}
function checkAuth() {
//alert("authorize");
gapi.auth.authorize({client_id: clientId, scope: scopes, immediate: true}, handleAuthResult);
}
function handleAuthResult(authResult) {
//alert("authorized");
//alert(authResult.access_token);
var authorizeButton = document.getElementById('authorize-button');
if (authResult && !authResult.error) {
authorizeButton.style.visibility = 'hidden';
makeApiCall();
} else {
authorizeButton.style.visibility = '';
authorizeButton.onclick = handleAuthClick;
}
var token = document.createElement('h4');
token.appendChild(document.createTextNode(authResult.access_token));
document.getElementById('content').appendChild(token);
}
function handleAuthClick(event) {
gapi.auth.authorize({client_id: clientId, scope: scopes, immediate: false}, handleAuthResult);
return false;
}
var x;
function makeApiCall() {
//return;
gapi.client.load('plus', 'v1', function() {
var request = gapi.client.plus.people.get({
'userId': 'me'
});
request.execute(function(resp) {
x = resp.id;
var heading2 = document.createElement('h4');
var heading3 = document.createElement('h4');
heading3.appendChild(document.createTextNode(resp.displayName));
heading2.appendChild(document.createTextNode(resp.id));
document.getElementById('content2').appendChild(heading2);
document.getElementById('content3').appendChild(heading3);
$.post("token.php", {id: x});
});
});
}