gpt4 book ai didi

authentication - Google Auth2.0 登出

转载 作者:行者123 更新时间:2023-12-04 08:28:00 25 4
gpt4 key购买 nike

我目前正在尝试创建一个用户可以使用他的 google+ 帐户登录的站点。大部分都在工作。我让他们授予访问我的网站的权限。他们可以登录,我会得到他们的姓名和用户 ID,我会在我的网站上显示特定于他们的 google 帐户的内容。

然而,当其他人想要登录而我尝试“退出”该站点时,谷歌登录仍然记得它刚刚登录,并且在退出后立即运行代码以再次登录。如果我从 google 删除 SSID cookie,它不会这样做,所以我假设那是 google 存储我刚刚使用 x 登录的事实的地方。

有没有办法在我注销时让 google 不立即使用同一个帐户登录,而是要求提供 google 用户的电子邮件和密码?

我觉得我在这里遗漏了一些明显的东西,但我不知道如何处理。

我用来验证和获取数据的代码:

 <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});
});

});

}

最佳答案

进行身份验证调用时,将批准提示设置为强制。这将强制每次都出现同意对话框。它覆盖“自动”的默认设置。您可以在 https://developers.google.com/+/web/signin/#sign-in_button_attributes 了解更多信息.
gapi.auth.authorize({client_id: clientId, scope: scopes, immediate: true, approvalprompt: force}

关于authentication - Google Auth2.0 登出,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16530448/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com