Google身份验证-允许用户切换帐户

时间:2019-04-09 09:19:52

标签: javascript google-authentication

我正在使用https://apis.google.com/js/platform.js进行Google登录。

我遇到的问题是,用户登录后,即使注销后也无法选择其他帐户/电子邮件登录,因为当他们再次登录时,它会自动选择他们选择的帐户以前。

这是我的代码:

HTML (pug):

div(id="sign-in-out-nav")
   div(class="g-signin2" data-onsuccess="onSignIn")
   a(href="#" onclick="signOut();") Sign out

JavaScript:

function onSignIn(googleUser) {
  const profile = googleUser.getBasicProfile();
  const name = profile.getName();
  const email = profile.getEmail();
  const id_token = googleUser.getAuthResponse().id_token;
  sendTokenAndVerify(id_token)
  .then((data) => {
    if(data.error || data.success === false){
      return signOut(data.message || "Token could not be verified.");
    }
  })
  //...more code...
}

我还有一个按钮,可以让他们注销。


如何允许用户切换帐户?

0 个答案:

没有答案