In Firebase, what does authentication mainly do?
Think about what happens when you log in to an app.
Authentication checks who you are by verifying your credentials, like email and password.
After Firebase confirms a user's identity, what is the next typical step?
Think about how apps keep track of logged-in users.
Firebase issues an ID token after authentication, which the app uses to allow access to secure parts.
Which Firebase feature uses authentication to control access to data?
Consider how Firebase controls who can read or write data.
Security Rules use the authenticated user's ID to allow or deny access to database or storage.
Which security risk is reduced by using Firebase Authentication?
Think about what happens if anyone could see your private info.
Authentication ensures only verified users can access private data, preventing unauthorized access.
What is the best reason to use Firebase Authentication together with Security Rules?
Think about how to keep data safe and private.
Authentication identifies users, and Security Rules enforce what those users can do with data.