Recibo el error en la línea de código 43. ¿Dónde estoy haciendo mal? También la imagen de mi base de datos aquí: Esta es mi base de datos
<script type="module"> import { initializeApp } from "https://www.gstatic.com/firebasejs/9.4.0/firebase-app.js"; import { getDatabase, set, ref, update } from "https://www.gstatic.com/firebasejs/9.4.0/firebase-database.js"; import { getAuth, createUserWithEmailAndPassword, signInWithEmailAndPassword, onAuthStateChanged, signOut } from "https://www.gstatic.com/firebasejs/9.4.0/firebase-auth.js"; const firebaseConfig = { apiKey: , authDomain: , databaseURL: , projectId: , storageBucket: , messagingSenderId: , appId: , measurementId: }; const app = initializeApp(firebaseConfig); const db = getDatabase(app); const auth = getAuth(); const firebaseRef = firebase.database().ref("Users"); firebaseRef.once("value", function(snapshot) { snapshot.forEach(function(element) { console.log(element); }) }); </script>firebase.database().ref() es la sintaxis de espacio de nombres (usada en V8 y antes) pero está usando Modular SDK (V9+). Intente refactorizar el código como se muestra a continuación usando las funciones ref() y get() :
// ...imports // import { get, ref } from "https://www.gstatic.com/firebasejs/9.4.0/firebase-database.js" const app = initializeApp(firebaseConfig); const db = getDatabase(app); const auth = getAuth(app); const firebaseRef = ref(db, 'Users'); get(firebaseRef).then((snapshot) => { if (snapshot.exists()) { console.log(snapshot.val()); } else { console.log("No data available"); } }).catch((error) => { console.error(error); });