การตรวจสอบสถานะเซสชันของผู้ใช้

หลังจากเริ่มใช้ไคลเอ็นต์ Google Sign-In แล้ว คุณสามารถแนบ ที่ตรวจสอบแอตทริบิวต์และวิธีการต่างๆ ของไคลเอ็นต์เพื่อระบุ สถานะเซสชันของผู้ใช้ คุณสามารถใช้ข้อมูลที่ออบเจ็กต์ไคลเอ็นต์ส่งคืน เพื่อช่วยซิงค์ประสบการณ์ของผู้ใช้ ของไซต์ระหว่างแท็บและอุปกรณ์ต่างๆ ผู้ใช้ของคุณ

โค้ดต่อไปนี้สาธิตการใช้เมธอดไคลเอ็นต์ 2.0 attachClickHandler เพื่อสร้าง Callback ซึ่งลงชื่อเข้าใช้ให้เสร็จสิ้นอย่างเงียบๆ สำหรับผู้ใช้ หรือแจ้งให้ผู้ใช้ให้สิทธิ์อีกครั้งตามสถานะของ เซสชันของผู้ใช้

/**
 * 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);
};