Benutzersitzungen und -zustände verwalten
Lernen Sie, Authentifizierungszustände von Benutzern zu überwachen, Sitzungen dauerhaft zu speichern und Benutzerprofile sicher zu verwalten
Benutzersitzungen und -zustände verwalten ist eine kostenlose Firebase Auth & Realtime Database Apps-Lektion auf CoddyKit. Dies ist Lektion 2 von 4. Du kannst die komplette Lektion unten kostenlos lesen – dann übst du sie direkt im Browser mit einem integrierten Code-Editor und einem KI-Tutor rund um die Uhr. Sie ist Teil des Firebase Auth & Realtime Database Apps-Lernpfads, und dein Fortschritt wird über Web und CoddyKit-App synchronisiert. Der Firebase Auth & Realtime Database Apps-Kurs umfasst insgesamt 4 Lektionen.
Teile dieser Lektion wurden noch nicht übersetzt und werden auf Englisch angezeigt.
User Sessions & States Intro
Welcome! In this lesson, we'll dive into managing user sessions and understanding authentication states in Firebase. These are crucial for building secure and user-friendly apps.
We'll cover how to:
- Monitor when a user logs in or out.
- Keep users logged in across app restarts.
- Update user profile information.
Tracking User Status
Firebase Authentication provides a powerful way to monitor a user's login status in real-time. This is done using an "authentication state listener."
- It tells your app if a user is currently logged in or logged out.
- It fires whenever the user's authentication state changes (e.g., login, logout, token refresh).
- This is perfect for updating UI elements or redirecting users.
Live Auth State Listener
Here's how you set up an authentication state listener. It's a key part of making your app react to user logins and logouts.
This example assumes Firebase is initialized and the auth service is available.
import { getAuth, onAuthStateChanged } from "firebase/auth";
const auth = getAuth();
// This function will be called whenever the auth state changes
onAuthStateChanged(auth, (user) => {
if (user) {
// User is signed in
console.log("User logged in:", user.email);
// You can access user.uid, user.displayName, etc.
} else {
// User is signed out
console.log("No user logged in.");
}
});
console.log("Auth state listener set up.");Session Persistence Explained
Imagine your user logs in, closes the app, and reopens it only to find they're logged out. Frustrating, right?
Firebase Auth solves this with "session persistence." It allows you to specify how long a user's login session should last, even after they close their browser or app.
- Firebase stores user credentials securely.
- It automatically re-authenticates the user when they return.
Choosing Persistence Options
Firebase offers different levels of session persistence to suit various application needs:
LOCAL: The user's session is persisted even if the browser window is closed. (Default for web)SESSION: The session is persisted only for the current browser session. It's cleared when the window is closed.NONE: No session persistence. The user is logged out when the page is refreshed or the app restarts.
Customizing Session Persistence
You can set the desired persistence level before a user signs in. This tells Firebase how to handle the session for that specific login.
Here's an example of setting it to SESSION for a temporary login.
import { getAuth, setPersistence, browserSessionPersistence } from "firebase/auth";
const auth = getAuth();
// Set persistence to SESSION
setPersistence(auth, browserSessionPersistence)
.then(() => {
console.log("Persistence set to SESSION.");
// Now you can sign in your user
// signInWithEmailAndPassword(auth, email, password);
})
.catch((error) => {
console.error("Error setting persistence:", error.message);
});
console.log("Attempting to set persistence...");Accessing User Info
Once a user is logged in, you often need to access their information like their ID, email, or display name. Firebase makes this easy.
- The
currentUserproperty of theauthobject holds the currently logged-in user. - It will be
nullif no user is logged in. - Important: Always check
currentUserinside anonAuthStateChangedlistener to ensure it's up-to-date.
Managing User Profiles
Firebase Auth allows users to update basic profile information directly. This includes their display name and profile photo URL.
These updates are client-side and don't require re-authentication for the user to see the changes in their own profile object.
- Use the
updateProfilemethod on the user object. - Common updates:
displayNameandphotoURL.
Changing Display Name
Let's see how to update a user's display name. This is useful for personalizing their experience in your app.
This operation requires a logged-in user.
import { getAuth, updateProfile } from "firebase/auth";
const auth = getAuth();
const user = auth.currentUser; // Get the current user
if (user) {
updateProfile(user, {
displayName: "Jane Doe",
// photoURL: "https://example.com/jane-profile.jpg"
}).then(() => {
console.log("Profile updated successfully!");
console.log("New display name:", user.displayName);
}).catch((error) => {
console.error("Error updating profile:", error.message);
});
} else {
console.log("No user is logged in to update profile.");
}
console.log("Attempting to update user profile...");Quick Check: Auth State
Consider a web application using Firebase Authentication. A user logs in, then closes their browser and reopens it a few minutes later. They find themselves still logged in.
Which Firebase Auth persistence setting was most likely active?
Recap: Sessions & States
Great job! In this lesson, you learned how to effectively manage user sessions and states in your Firebase application.
- We explored
onAuthStateChangedfor real-time user status monitoring. - You understood the importance of session persistence and its different levels (
LOCAL,SESSION,NONE). - Finally, you learned how to access and update a logged-in user's profile information.
These skills are fundamental for building dynamic and personalized user experiences!
Häufig gestellte Fragen
Ist die Lektion „Benutzersitzungen und -zustände verwalten“ kostenlos?
Ja — der vollständige Text von „Benutzersitzungen und -zustände verwalten“ ist hier im Web kostenlos zu lesen. Um sie interaktiv zu üben (integrierter Code-Editor und 24/7 KI-Tutor) und den Rest des Firebase Auth & Realtime Database Apps-Kurses freizuschalten, upgrade auf CoddyKit PRO. Der Firebase Auth & Realtime Database Apps-Kurs umfasst insgesamt 4 Lektionen.
Was lerne ich in „Benutzersitzungen und -zustände verwalten“?
Lernen Sie, Authentifizierungszustände von Benutzern zu überwachen, Sitzungen dauerhaft zu speichern und Benutzerprofile sicher zu verwalten Du übst Firebase Auth & Realtime Database Apps mit praktischem Code, den du direkt im Browser ausführst, und ein 24/7 KI-Tutor beantwortet deine Fragen während du die Lektion bearbeitest.
Brauche ich Erfahrung, um Firebase Auth & Realtime Database Apps zu starten?
Keine Vorkenntnisse erforderlich. Firebase Auth & Realtime Database Apps auf CoddyKit ist für Anfänger bis fortgeschrittene Lernende strukturiert, sodass du hier starten oder von Anfang an beginnen und in deinem eigenen Tempo voranschreiten kannst. Dies ist Lektion 2 von 4.
Wie lange dauert die Lektion „Benutzersitzungen und -zustände verwalten“?
Die meisten CoddyKit-Lektionen dauern etwa 5–10 Minuten. Jede ist kompakt und interaktiv, sodass du stetig Fortschritte machst und genau dort weitermachst, wo du aufgehört hast – im Web und in der App.
Kann ich in dieser Firebase Auth & Realtime Database Apps-Lektion Code schreiben und ausführen?
Ja. Jede Firebase Auth & Realtime Database Apps-Lektion enthält einen integrierten Code-Editor, sodass du echten Code direkt in deinem Browser schreibst und ausführst und sofort KI-Feedback erhältst — ohne lokale Einrichtung erforderlich.
Alle Lektionen in diesem Kurs
- Authentifizierung mit E-Mail und Passwort implementieren
- Benutzersitzungen und -zustände verwalten
- Authentifizierungsfehler behandeln
- Passwortzurücksetzung und E-Mail-Verifizierung