初始化 Google 登录客户端后,您可以将 检查客户端的各种属性和方法以确定 用户的会话状态。您可以使用客户端对象返回的信息 有助于网站在多个标签页和设备之间同步用户体验 。
以下代码演示了如何使用 2.0 客户端方法
attachClickHandler
,用于创建以静默方式完成登录的回调
或者根据应用的状态,提示用户重新授权
会话。
/**
* The Sign-In client object.
*/
var auth2;
/**
* Initializes the Sign-In client.
*/
var initClient = function() {
gapi.load('auth2', function(){
/**
* Retrieve the singleton for the GoogleAuth library and set up the
* client.
*/
auth2 = gapi.auth2.init({
client_id: 'CLIENT_ID.apps.googleusercontent.com'
});
// Attach the click handler to the sign-in button
auth2.attachClickHandler('signin-button', {}, onSuccess, onFailure);
});
};
/**
* Handle successful sign-ins.
*/
var onSuccess = function(user) {
console.log('Signed in as ' + user.getBasicProfile().getName());
};
/**
* Handle sign-in failures.
*/
var onFailure = function(error) {
console.log(error);
};