Google+ 平台登录 (gapi.auth) 和身份平台 (gapi.auth2) 都是相关的并且工作方式相似。
两者的主要区别在于:
gapi.auth2 支持更现代的 JavaScript(侦听器和承诺),因此您可以这样做:
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 客户端访问资源。如果您正在做一些更复杂的事情,例如管理会话等,您应该在使用授权代码授权您的服务器之后使用来自 API 客户端的 ID 令牌来授权用户的会话。