我想使用谷歌登录我的应用程序。一些工作站在多个用户之间共享,因此在用户之间快速切换的能力非常重要。
登录按钮似乎允许这样做。即,如果用户是"已登录",则单击登录按钮会显示"选择帐户"对话框。
只需在每个页面上显示按钮,即可实现此快速更改功能。
然而,问题在于成功"每次加载页面时都会触发事件。这意味着每次页面加载时我都会进行身份验证和创建会话。这似乎效率低下。
是否有一个事件可以让我区分用户是否已明确登录与谷歌检查以确定用户是否已登录?
根据文档,代码如下。我已经阅读了API文档,无法弄清楚。
由于
<script src="https://apis.google.com/js/platform.js" async defer></script>
<script>
function onSignIn(googleUser) {
var profile = googleUser.getBasicProfile();
console.log('ID: ' + profile.getId()); // Do not send to your backend! Use an ID token instead.
console.log('Name: ' + profile.getName());
console.log('Image URL: ' + profile.getImageUrl());
alert('Email: ' + profile.getEmail());
}
</script>
<meta name="google-signin-client_id" content="173138624956-ajom95asqea9p8f3ob0ntjvaalhf5r99.apps.googleusercontent.com">
<div class="g-signin2" data-onsuccess="onSignIn"></div>