我无法在oauth中注销gmail。我尝试使用 -
确实有效。有没有办法从gmail注销没有重定向路径? 我只是个初学者。任何人都可以建议我另一种方法。 提前谢谢。
编辑 -
On Sign in -
function onSignIn(googleUser) {
var profile = googleUser.getBasicProfile();
var username = profile.getEmail();
var profile = googleUser.getBasicProfile();
var imagurl=profile.getImageUrl();
var name=profile.getName();
var email=profile.getEmail();
getDetails(email, name); // call getDetails
}
On Sign Out -
function signout()
{
document.location.href = "https://www.google.com/accounts/Logout?continue=https://appengine.google.com/_ah/logout?continue=http://google.com";
}
以上代码有效,但我需要一种替代方法来注销而无需重定向路径。
我试过了 -
window.location = "https://mail.google.com/mail/u/0/?logout&hl=en";
但它不起作用。