אפשר לאפשר למשתמשים להיכנס לאפליקציה באמצעות מספר סוגי אימות על ידי קישור פרטי הכניסה של ספק האימות לחשבון משתמש קיים. ניתן לזהות את המשתמשים לפי אותו מזהה משתמש ב-Firebase, ללא קשר ספק האימות ששימש לכניסה. לדוגמה, משתמש שנכנס לחשבון עם סיסמה יכולים לקשר חשבון Google ולהיכנס בכל אחת מהשיטות העתידי. לחלופין, משתמש אנונימי יכול לקשר חשבון Facebook, ולאחר מכן להיכנס לחשבון מחובר ל-Facebook כדי להמשיך להשתמש באפליקציה שלך.
לפני שמתחילים
הוספת תמיכה לשני ספקי אימות או יותר (כולל תמיכה) לאימות אנונימי) באפליקציה.
קישור פרטי הכניסה של ספק אימות מאוחד לחשבון משתמש
כדי לקשר פרטי כניסה מספק אימות כמו Google או Facebook אל חשבון משתמש קיים:
- כניסה של המשתמש באמצעות ספק אימות או שיטה כלשהי.
- מקבלים את האובייקט
AuthProvider
שתואם לספק שרוצים לקשר לחשבון של המשתמש. דוגמאות:import { GoogleAuthProvider, FacebookAuthProvider, TwitterAuthProvider, GithubAuthProvider } from "firebase/auth"; const googleProvider = new GoogleAuthProvider(); const facebookProvider = new FacebookAuthProvider(); const twitterProvider = new TwitterAuthProvider(); const githubProvider = new GithubAuthProvider();
var googleProvider = new firebase.auth.GoogleAuthProvider(); var facebookProvider = new firebase.auth.FacebookAuthProvider(); var twitterProvider = new firebase.auth.TwitterAuthProvider(); var githubProvider = new firebase.auth.GithubAuthProvider();
- מבקשים מהמשתמש להיכנס לחשבון אצל הספק שרוצים לקשר. אפשר
ולבקש מהמשתמשים להיכנס לחשבון על ידי פתיחת חלון קופץ או
שיפנו אוטומטית לדף הכניסה של הספק. עדיפה שיטת ההפניה האוטומטית
במכשירים ניידים.
- כדי להיכנס באמצעות חלון קופץ, צריך להתקשר אל
linkWithPopup
:import { getAuth, linkWithPopup, GoogleAuthProvider } from "firebase/auth"; const provider = new GoogleAuthProvider(); const auth = getAuth(); linkWithPopup(auth.currentUser, provider).then((result) => { // Accounts successfully linked. const credential = GoogleAuthProvider.credentialFromResult(result); const user = result.user; // ... }).catch((error) => { // Handle Errors here. // ... });
auth.currentUser.linkWithPopup(provider).then((result) => { // Accounts successfully linked. var credential = result.credential; var user = result.user; // ... }).catch((error) => { // Handle Errors here. // ... });
- כדי להיכנס באמצעות הפניה אוטומטית לדף הכניסה של הספק, קוראים לפונקציה
linkWithRedirect
: חשוב לפעול לפי השיטות המומלצות לשימוש ב-'linkWithRedirect'.import { getAuth, linkWithRedirect, GoogleAuthProvider } from "firebase/auth"; const provider = new GoogleAuthProvider(); const auth = getAuth(); linkWithRedirect(auth.currentUser, provider) .then(/* ... */) .catch(/* ... */);
auth.currentUser.linkWithRedirect(provider) .then(/* ... */) .catch(/* ... */);
getRedirectResult
כשהדף נטען:import { getRedirectResult } from "firebase/auth"; getRedirectResult(auth).then((result) => { const credential = GoogleAuthProvider.credentialFromResult(result); if (credential) { // Accounts successfully linked. const user = result.user; // ... } }).catch((error) => { // Handle Errors here. // ... });
auth.getRedirectResult().then((result) => { if (result.credential) { // Accounts successfully linked. var credential = result.credential; var user = result.user; // ... } }).catch((error) => { // Handle Errors here. // ... });
קישור החשבון נכשל אם פרטי הכניסה כבר מקושרים לחשבון משתמש אחר. במצב כזה, צריך לטפל מיזוג בין החשבונות והנתונים המשויכים בהתאם לאפליקציה:
import { getAuth, signInWithCredential, linkWithCredential, OAuthProvider } from "firebase/auth"; // The implementation of how you store your user data depends on your application const repo = new MyUserDataRepo(); // Get reference to the currently signed-in user const auth = getAuth(); const prevUser = auth.currentUser; // Get the data which you will want to merge. This should be done now // while the app is still signed in as this user. const prevUserData = repo.get(prevUser); // Delete the user's data now, we will restore it if the merge fails repo.delete(prevUser); // Sign in user with the account you want to link to signInWithCredential(auth, newCredential).then((result) => { console.log("Sign In Success", result); const currentUser = result.user; const currentUserData = repo.get(currentUser); // Merge prevUser and currentUser data stored in Firebase. // Note: How you handle this is specific to your application const mergedData = repo.merge(prevUserData, currentUserData); const credential = OAuthProvider.credentialFromResult(result); return linkWithCredential(prevUser, credential) .then((linkResult) => { // Sign in with the newly linked credential const linkCredential = OAuthProvider.credentialFromResult(linkResult); return signInWithCredential(auth, linkCredential); }) .then((signInResult) => { // Save the merged data to the new user repo.set(signInResult.user, mergedData); }); }).catch((error) => { // If there are errors we want to undo the data merge/deletion console.log("Sign In Error", error); repo.set(prevUser, prevUserData); });
// The implementation of how you store your user data depends on your application var repo = new MyUserDataRepo(); // Get reference to the currently signed-in user var prevUser = auth.currentUser; // Get the data which you will want to merge. This should be done now // while the app is still signed in as this user. var prevUserData = repo.get(prevUser); // Delete the user's data now, we will restore it if the merge fails repo.delete(prevUser); // Sign in user with the account you want to link to auth.signInWithCredential(newCredential).then((result) => { console.log("Sign In Success", result); var currentUser = result.user; var currentUserData = repo.get(currentUser); // Merge prevUser and currentUser data stored in Firebase. // Note: How you handle this is specific to your application var mergedData = repo.merge(prevUserData, currentUserData); return prevUser.linkWithCredential(result.credential) .then((linkResult) => { // Sign in with the newly linked credential return auth.signInWithCredential(linkResult.credential); }) .then((signInResult) => { // Save the merged data to the new user repo.set(signInResult.user, mergedData); }); }).catch((error) => { // If there are errors we want to undo the data merge/deletion console.log("Sign In Error", error); repo.set(prevUser, prevUserData); });
- כדי להיכנס באמצעות חלון קופץ, צריך להתקשר אל
קישור כתובת אימייל ופרטי כניסה לסיסמה לחשבון משתמש
כדי להוסיף כתובת אימייל ופרטי כניסה לסיסמה למשתמש קיים חשבון:
- מזינים את פרטי הכניסה של המשתמש באמצעות כל ספק או שיטה של אימות.
- בקשו מהמשתמש להזין כתובת אימייל וסיסמה חדשה.
- יוצרים אובייקט
AuthCredential
עם כתובת האימייל והסיסמה:import { EmailAuthProvider } from "firebase/auth"; const credential = EmailAuthProvider.credential(email, password);
var credential = firebase.auth.EmailAuthProvider.credential(email, password);
מעבירים את האובייקט
AuthCredential
אל המשתמש המחוברlinkWithCredential
method:import { getAuth, linkWithCredential } from "firebase/auth"; const auth = getAuth(); linkWithCredential(auth.currentUser, credential) .then((usercred) => { const user = usercred.user; console.log("Account linking success", user); }).catch((error) => { console.log("Account linking error", error); });
auth.currentUser.linkWithCredential(credential) .then((usercred) => { var user = usercred.user; console.log("Account linking success", user); }).catch((error) => { console.log("Account linking error", error); });
הקריאה אל
linkWithCredential
תיכשל אם פרטי הכניסה מקושר כבר לחשבון משתמש אחר. במצב כזה, צריך לטפל למזג בין החשבונות והנתונים המשויכים בהתאם לאפליקציה (ראו דוגמה למעלה).
ביטול הקישור של ספק אימות לחשבון משתמש
ניתן לבטל את הקישור של ספק אימות לחשבון, כך שהמשתמש לא יוכל להיכנס לחשבון עם הספק הזה.
כדי לבטל את הקישור של ספק הרשאה לחשבון משתמש, צריך להעביר את מזהה הספק אל
אמצעי תשלום אחד (unlink
). אפשר לקבל את מזהי הספקים של ספקי האימות שמקושרים למשתמש מהנכס providerData
.
import { getAuth, unlink } from "firebase/auth"; const auth = getAuth(); unlink(auth.currentUser, providerId).then(() => { // Auth provider unlinked from account // ... }).catch((error) => { // An error happened // ... });
user.unlink(providerId).then(() => { // Auth provider unlinked from account // ... }).catch((error) => { // An error happened // ... });