我正在尝试按照本指南使新的谷歌一键登录工作:
https://developers.google.com/identity/one-tap/web
google.accounts.id.initialize({
client_id: '123123123123123123.apps.googleusercontent.com',
cancel_on_tap_outside: false,
callback: handleCredentialResponse
});
//google.accounts.id.prompt(true);
google.accounts.id.prompt((notification) => {
if (notification.isNotDisplayed() || notification.isSkippedMoment()) {
// continue with another identity provider.
}
});
我正在使用一键式 JavaScript API 来显示一键式。它完美地完成了它需要做的事情。
客户端验证和一切工作正常,但我有一个问题。通过单击窗口右上角的关闭按钮关闭UI后,UI不再显示,当我检查通知状态时,它会向我显示此错误;
opt_out_or_no_session
我需要执行哪些操作才能使 UI 保持显示状态,即使 UI 已被用户关闭?我感谢任何帮助。
繁星淼淼
莫回无
大话西游666
相关分类