在oauth从谷歌退出

时间:2017-12-06 09:49:18

标签: java google-oauth

我无法在oauth中注销gmail。我尝试使用 -

  

Mutex lock threads

确实有效。有没有办法从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";

但它不起作用。

0 个答案:

没有答案