Alcune azioni di gestione degli utenti, come l'aggiornamento dell'indirizzo email di un utente e la reimpostazione della password di un utente, comportano l'invio di email all'utente. Queste email contengono link che i destinatari possono aprire per completare o annullare l'azione di gestione degli utenti. Per impostazione predefinita, le email di gestione degli utenti rimandano al gestore di azioni predefinito, ovvero una pagina web ospitata in un URL nel dominio Firebase Hosting del progetto.
In alternativa, puoi creare e ospitare un gestore di azioni email personalizzato per eseguire l'elaborazione personalizzata e integrare il gestore di azioni email con il tuo sito web.
Le seguenti azioni di gestione degli utenti richiedono all'utente di completare l'azione utilizzando un gestore di azioni email:
- Reimpostazione delle password
- Revoca delle modifiche dell'indirizzo email: quando gli utenti modificano gli indirizzi email principali dei propri account, Firebase invia un'email ai loro vecchi indirizzi che consente loro di annullare la modifica
- Verifica degli indirizzi email
Per personalizzare il gestore di azioni email del tuo progetto Firebase, devi creare e ospitare una pagina web che utilizzi l'SDK Firebase JavaScript per verificare la validità della richiesta e completarla. Dopodiché, devi personalizzare i modelli di email del tuo progetto Firebase in modo che rimandino al tuo gestore di azioni personalizzato.
Creare la pagina del gestore di azioni email
Quando genera email di gestione degli utenti, Firebase aggiunge diversi parametri di query all'URL del gestore di azioni. Ad esempio:
https://example.com/usermgmt?mode=resetPassword&oobCode=ABC123&apiKey=AIzaSy...&lang=fr
Questi parametri specificano l'attività di gestione degli utenti che l'utente sta completando. La pagina del gestore di azioni email deve gestire i seguenti parametri di query:
Parametri modalità L'azione di gestione degli utenti da completare. Può essere uno dei seguenti valori:
resetPasswordrecoverEmailverifyEmail
oobCode Un codice monouso utilizzato per identificare e verificare una richiesta apiKey La chiave API del tuo progetto Firebase, fornita per comodità continueUrl Si tratta di un URL facoltativo che consente di restituire lo stato all'app tramite un URL. È pertinente alle modalità di reimpostazione password e di verifica email. Quando invii un'email di reimpostazione password o un'email di verifica, devi specificare un oggetto ActionCodeSettingscon un URL continuo per renderlo disponibile. In questo modo, un utente può riprendere da dove aveva interrotto dopo un'azione email.lang Si tratta del tag di lingua BCP47 facoltativo che rappresenta le impostazioni internazionali dell'utente (ad esempio,
fr). Puoi utilizzare questo valore per fornire agli utenti pagine del gestore di azioni email localizzate.La localizzazione può essere impostata tramite la console Firebase o in modo dinamico chiamando l'API client corrispondente prima di attivare l'azione email. Ad esempio, utilizzando JavaScript:
firebase.auth().languageCode = 'fr';.Per un'esperienza utente coerente, assicurati che la localizzazione del gestore di azioni email corrisponda a quella del modello di email.
L'esempio seguente mostra come gestire i parametri di query in un gestore basato su browser. Puoi anche implementare il gestore come applicazione Node.js utilizzando una logica simile.
Web
import { initializeApp } from "firebase/app"; import { getAuth } from "firebase/auth"; document.addEventListener('DOMContentLoaded', () => { // TODO: Implement getParameterByName() // Get the action to complete. const mode = getParameterByName('mode'); // Get the one-time code from the query parameter. const actionCode = getParameterByName('oobCode'); // (Optional) Get the continue URL from the query parameter if available. const continueUrl = getParameterByName('continueUrl'); // (Optional) Get the language code if available. const lang = getParameterByName('lang') || 'en'; // Configure the Firebase SDK. // This is the minimum configuration required for the API to be used. const config = { 'apiKey': "YOUR_API_KEY" // Copy this key from the web initialization // snippet found in the Firebase console. }; const app = initializeApp(config); const auth = getAuth(app); // Handle the user management action. switch (mode) { case 'resetPassword': // Display reset password handler and UI. handleResetPassword(auth, actionCode, continueUrl, lang); break; case 'recoverEmail': // Display email recovery handler and UI. handleRecoverEmail(auth, actionCode, lang); break; case 'verifyEmail': // Display email verification handler and UI. handleVerifyEmail(auth, actionCode, continueUrl, lang); break; default: // Error: invalid mode. } }, false);
Web
document.addEventListener('DOMContentLoaded', () => { // TODO: Implement getParameterByName() // Get the action to complete. var mode = getParameterByName('mode'); // Get the one-time code from the query parameter. var actionCode = getParameterByName('oobCode'); // (Optional) Get the continue URL from the query parameter if available. var continueUrl = getParameterByName('continueUrl'); // (Optional) Get the language code if available. var lang = getParameterByName('lang') || 'en'; // Configure the Firebase SDK. // This is the minimum configuration required for the API to be used. var config = { 'apiKey': "YOU_API_KEY" // Copy this key from the web initialization // snippet found in the Firebase console. }; var app = firebase.initializeApp(config); var auth = app.auth(); // Handle the user management action. switch (mode) { case 'resetPassword': // Display reset password handler and UI. handleResetPassword(auth, actionCode, continueUrl, lang); break; case 'recoverEmail': // Display email recovery handler and UI. handleRecoverEmail(auth, actionCode, lang); break; case 'verifyEmail': // Display email verification handler and UI. handleVerifyEmail(auth, actionCode, continueUrl, lang); break; default: // Error: invalid mode. } }, false);
Gestisci le richieste di reimpostazione password verificando prima il codice di azione con
verifyPasswordResetCode, poi recupera una nuova password dall'utente e passala aconfirmPasswordReset. Ad esempio:Web
import { verifyPasswordResetCode, confirmPasswordReset } from "firebase/auth"; function handleResetPassword(auth, actionCode, continueUrl, lang) { // Localize the UI to the selected language as determined by the lang // parameter. // Verify the password reset code is valid. verifyPasswordResetCode(auth, actionCode).then((email) => { const accountEmail = email; // TODO: Show the reset screen with the user's email and ask the user for // the new password. const newPassword = "..."; // Save the new password. confirmPasswordReset(auth, actionCode, newPassword).then((resp) => { // Password reset has been confirmed and new password updated. // TODO: Display a link back to the app, or sign-in the user directly // if the page belongs to the same domain as the app: // auth.signInWithEmailAndPassword(accountEmail, newPassword); // TODO: If a continue URL is available, display a button which on // click redirects the user back to the app via continueUrl with // additional state determined from that URL's parameters. }).catch((error) => { // Error occurred during confirmation. The code might have expired or the // password is too weak. }); }).catch((error) => { // Invalid or expired action code. Ask user to try to reset the password // again. }); }
Web
function handleResetPassword(auth, actionCode, continueUrl, lang) { // Localize the UI to the selected language as determined by the lang // parameter. // Verify the password reset code is valid. auth.verifyPasswordResetCode(actionCode).then((email) => { var accountEmail = email; // TODO: Show the reset screen with the user's email and ask the user for // the new password. var newPassword = "..."; // Save the new password. auth.confirmPasswordReset(actionCode, newPassword).then((resp) => { // Password reset has been confirmed and new password updated. // TODO: Display a link back to the app, or sign-in the user directly // if the page belongs to the same domain as the app: // auth.signInWithEmailAndPassword(accountEmail, newPassword); // TODO: If a continue URL is available, display a button which on // click redirects the user back to the app via continueUrl with // additional state determined from that URL's parameters. }).catch((error) => { // Error occurred during confirmation. The code might have expired or the // password is too weak. }); }).catch((error) => { // Invalid or expired action code. Ask user to try to reset the password // again. }); }
Gestisci le revoche delle modifiche dell'indirizzo email verificando prima il codice di azione con
checkActionCode, poi ripristina l'indirizzo email dell'utente conapplyActionCode. Ad esempio:Web
import { checkActionCode, applyActionCode, sendPasswordResetEmail } from "firebase/auth"; function handleRecoverEmail(auth, actionCode, lang) { // Localize the UI to the selected language as determined by the lang // parameter. let restoredEmail = null; // Confirm the action code is valid. checkActionCode(auth, actionCode).then((info) => { // Get the restored email address. restoredEmail = info['data']['email']; // Revert to the old email. return applyActionCode(auth, actionCode); }).then(() => { // Account email reverted to restoredEmail // TODO: Display a confirmation message to the user. // You might also want to give the user the option to reset their password // in case the account was compromised: sendPasswordResetEmail(auth, restoredEmail).then(() => { // Password reset confirmation sent. Ask user to check their email. }).catch((error) => { // Error encountered while sending password reset code. }); }).catch((error) => { // Invalid code. }); }
Web
function handleRecoverEmail(auth, actionCode, lang) { // Localize the UI to the selected language as determined by the lang // parameter. var restoredEmail = null; // Confirm the action code is valid. auth.checkActionCode(actionCode).then((info) => { // Get the restored email address. restoredEmail = info['data']['email']; // Revert to the old email. return auth.applyActionCode(actionCode); }).then(() => { // Account email reverted to restoredEmail // TODO: Display a confirmation message to the user. // You might also want to give the user the option to reset their password // in case the account was compromised: auth.sendPasswordResetEmail(restoredEmail).then(() => { // Password reset confirmation sent. Ask user to check their email. }).catch((error) => { // Error encountered while sending password reset code. }); }).catch((error) => { // Invalid code. }); }
Gestisci la verifica dell'indirizzo email chiamando
applyActionCode. Ad esempio:Web
function handleVerifyEmail(auth, actionCode, continueUrl, lang) { // Localize the UI to the selected language as determined by the lang // parameter. // Try to apply the email verification code. applyActionCode(auth, actionCode).then((resp) => { // Email address has been verified. // TODO: Display a confirmation message to the user. // You could also provide the user with a link back to the app. // TODO: If a continue URL is available, display a button which on // click redirects the user back to the app via continueUrl with // additional state determined from that URL's parameters. }).catch((error) => { // Code is invalid or expired. Ask the user to verify their email address // again. }); }
Web
function handleVerifyEmail(auth, actionCode, continueUrl, lang) { // Localize the UI to the selected language as determined by the lang // parameter. // Try to apply the email verification code. auth.applyActionCode(actionCode).then((resp) => { // Email address has been verified. // TODO: Display a confirmation message to the user. // You could also provide the user with a link back to the app. // TODO: If a continue URL is available, display a button which on // click redirects the user back to the app via continueUrl with // additional state determined from that URL's parameters. }).catch((error) => { // Code is invalid or expired. Ask the user to verify their email address // again. }); }
Ospita la pagina da qualche parte, ad esempio utilizzando Firebase Hosting.
Dopodiché, devi configurare il tuo progetto Firebase in modo che rimandi al tuo gestore di azioni email personalizzato nelle email di gestione degli utenti.
Inserire un link al gestore personalizzato nei modelli di email
Per configurare il tuo progetto Firebase in modo che utilizzi il tuo gestore di azioni email personalizzato:
Nella console Firebase, vai alla scheda Sicurezza > Autenticazione > Modelli.
In una delle voci Tipi di email, fai clic sull'icona a forma di matita per modificare il modello di email.
Fai clic su Personalizza l'URL di azione e specifica l'URL del tuo gestore di azioni email personalizzato.
Dopo aver salvato l'URL, verrà utilizzato da tutti i modelli di email del tuo progetto Firebase.