如何接入谷歌第三方登录

250随记kohai

官方文档

https://developers.google.cn/identity/gsi/web

加载 JS

<script src="https://accounts.google.com/gsi/client" async defer></script>
html
复制代码

初始化 client id

  window.onload = function () {
    google.accounts.id.initialize({
      client_id: 'YOUR_GOOGLE_CLIENT_ID',
      callback: handleCredentialResponse
    });
    google.accounts.id.prompt();
  };
js
复制代码

注意

使用新版的谷歌第三方登录的域名必须配置 HTTPS ,否则会提示源不匹配。

使用旧版的 API 则无需 HTTPS。

编辑于:2021-09-16 20:56:02