Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

164
Views
Reading data from the Firebase real time database, wondering what to put in place of the UserId

I am trying to read data from my Firebase Realtime database. I am wondering if there is a specific User ID am I supposed to replace userId with, as can be seen in this code.

get(child(dbRef,"modules/"${userId})).then((snapshot) => { }

I genuinely would really love some help on this

Thank you very much

about 4 years ago · Juan Pablo Isaza
1 answers
Answer question

0

When you have the app initialized and the user is logged in you can use getAuth to get the current user.


import { FirebaseOptions, initializeApp, getApps, getApp } from 'firebase/app';
import { getAuth } from 'firebase/auth';

// Your web app's Firebase configuration
const firebaseConfig: FirebaseOptions = {
  ...
};

if (!getApps().length) {
  initializeApp(firebaseConfig);
}

const app = getApp();
const auth = getAuth();
const userid = auth.currentUser.uid

about 4 years ago · Juan Pablo Isaza Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!