skip to Main Content

I can't use request in firebase emulator

Request function isn't working in my firebase emulator and My Firebase CLI version is 11.13.0 that is latest version. But the screen shot is 'Please update your Firestore Emulator. This feature requires the latest Firestore Emulator. Please upgrade your Firebase…

VIEW QUESTION

Unable to query data from Firebase

I'm trying to retrieve data from Firebase. Here's my code snippet Future main() async { WidgetsFlutterBinding.ensureInitialized(); await Firebase.initializeApp(); // DatabaseReference ref = FirebaseDatabase.instance.ref(); runApp(const MyApp()); } class MyApp extends StatelessWidget { const MyApp({super.key}); @override Widget build(BuildContext context) { final docRef…

VIEW QUESTION

Firebase – setting currentUser

Assuming that I have a whole user object as a JSON (with its access and refresh tokens) - how can I force firebase/auth to accept it as its currentUser so it triggers e.g. onTokenIdChange? EDIT: I want to authenticate the…

VIEW QUESTION
Back To Top
Search