初始化 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);
};