उपयोगकर्ता के सेशन की स्थिति पर नज़र रखना

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