ユーザーのセッション状態のモニタリング

<ph type="x-smartling-placeholder">

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