gpt4 book ai didi

javascript - Google+ 与 Google 身份平台 API

转载 作者:数据小太阳 更新时间:2023-10-29 03:48:31 25 4
gpt4 key购买 nike

tl;dr:有人可以解释一下在这两个平台之间实现客户端 Google 登录流程的确切区别是什么吗?

背景故事:

我一直在尝试实现客户端 Google 登录到我的网站。首先,我使用标签实现了具有全局设置的 Google+ 平台,因此可以监控用户 session 。在此处获取信息:https://developers.google.com/+/web/signin/

但是,我遇到了一个问题,即如果用户未登录,站点会自动检查用户登录状态,这会导致出现许多“已注销”的“toastr”消息,我在 signInCallback 函数中实现了这一点。这很烦人。

所以我做了一些研究,偶然发现了他们的“快速启动应用程序”并浏览了它。它比他们的指南复杂得多,许多元素都记录在 Google Identity Platform 上,这里: https://developers.google.com/identity/sign-in/web/reference

现在我真的不明白什么是实现他们登录的正确方法 - 是带有标签回调检查用户状态的轻量级 Google+ 按钮,还是带有监听器、gapi 实例和所有功能的强大 GIP 方式?这些平台有何不同?

最佳答案

Google+ 平台登录 (gapi.auth) 和身份平台 (gapi.auth2) 都是相关的,并且工作方式相似。

两者的主要区别是:

gapi.auth2 支持更现代的 JavaScript (listeners and promises),因此您可以这样做:

var signinChanged = function (val) {
console.log('Signin state changed to ', val);
document.getElementById('signed-in-cell').innerText = val;
};

auth2.isSignedIn.listen(signinChanged);

...auth2 具有更明确的语法,可让您更好地控制行为:

gapi.load('auth2', function() {
auth2 = gapi.auth2.init({
client_id: 'CLIENT_ID.apps.googleusercontent.com',
fetch_basic_profile: true,
scope: 'profile'
});

// Sign the user in, and then retrieve their ID.
auth2.signIn().then(function() {
console.log(auth2.currentUser.get().getId());
});
});

并且 auth2 提供基本的配置文件支持,无需额外的 API 调用:

if (auth2.isSignedIn.get()) {
var profile = auth2.currentUser.get().getBasicProfile();
console.log('ID: ' + profile.getId());
console.log('Name: ' + profile.getName());
console.log('Image URL: ' + profile.getImageUrl());
console.log('Email: ' + profile.getEmail());
}

简而言之,我建议使用 https://developers.google.com/identity/sign-in/ 中记录的方法,例如 https://developers.google.com/identity/sign-in/web/ .

正确实现登录将取决于您想要的登录类型:

  • 仅客户端,您可以只使用 JavaScript/iOS/Android 客户端
  • 混合客户端-服务器身份验证,您需要实现类似于快速入门之一的东西

如果您只使用客户端,那么它应该非常简单:您授权用户,然后使用 API 客户端访问资源。如果您正在做更复杂的事情,例如管理 session 等,在使用授权码授权您的服务器后,您应该使用来自 API 客户端的 ID token 来授权用户的 session 。

关于javascript - Google+ 与 Google 身份平台 API,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29799444/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com