Skip to content Skip to sidebar Skip to footer

How To Check If User Is Authenticated In Firebase And Express/node.js?

If I have a page that can only be accessed by authenticated users, how do I check if a user is authenticated or not? I tried using (firebase.auth().currentUser !== null) but I am g

Solution 1:

Your code is in an Express app, which means it runs on the server. The Firebase SDK you're using is meant for use on client devices, and won't work well in your Express environment. There is no concept of a "current user" on the server. Of course a user ID can be passed to the server with each request, but the server itself is stateless.

In your Express server you'll want to use the Firebase Admin SDK. Have a look at this Cloud Functions sample on how to build an authenticated endpoint.

Post a Comment for "How To Check If User Is Authenticated In Firebase And Express/node.js?"