谷歌授权使用
原生html
在head中新增
1 | <script src="https://accounts.google.com/gsi/client" async></script> |
在body中新增 [回调uri的方式推荐] 详细介绍:https://developers.google.cn/identity/gsi/web/reference/html-reference?hl=zh-cn
快捷登录模式
1 | <div id="g_id_onload" |
另一种方式,弹窗方式:
详细介绍:https://developers.google.cn/identity/gsi/web/reference/js-reference?hl=zh-cn
1 | <script> |
vue等框架使用,这里举例vue (谷歌推荐的是授权代码模型:https://developers.google.cn/identity/oauth2/web/guides/use-code-model?hl=zh-cn#popup-mode)
在public目录下的index.html文件的head中新增
1 | <script src="https://accounts.google.com/gsi/client" async></script> |
对应的地方如需要自定义按钮,通过按钮点击事件触发
1 | window.google.accounts.oauth2.initCodeClient({ |
本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议。转载请注明来自 小Q同学!
评论