Monitoraggio dello stato della sessione dell'utente
Dopo aver inizializzato il client di Accesso Google, puoi associare gestori che controllano vari attributi e metodi del client per determinare lo stato della sessione dell'utente. Puoi utilizzare le informazioni restituite dall'oggetto client per sincronizzare l'esperienza utente del tuo sito su più schede e dispositivi per l'utente.
Il codice seguente mostra l'utilizzo del metodo client 2.0attachClickHandler per creare un callback che completa in silenzio l'accesso per l'utente o richiede all'utente di eseguire nuovamente l'autorizzazione in base allo stato della sessione.
/** * 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()); };
[null,null,["Ultimo aggiornamento 2024-11-21 UTC."],[[["The Google Sign-In JavaScript library is deprecated and will eventually be sunset; developers should consult the Deprecation and Sunset guide for migration details and timelines."],["Google Sign-In will require the use of FedCM APIs in the future, so developers should conduct an impact assessment to ensure their sign-in functionality remains unaffected."],["This page provides code demonstrating how to initialize the Google Sign-In client and attach click handlers to manage user sign-in and session state."],["Developers can utilize the `auth2` object to handle successful and failed sign-in attempts, accessing user information upon successful authentication."]]],[]]