Flutter – Delete Google account users in Firebase
I have an app in flutter with firebase login, I provide the option to delete a regular user with email and password but how can I delete a user that signed in with Google, should I deal with it or…
I have an app in flutter with firebase login, I provide the option to delete a regular user with email and password but how can I delete a user that signed in with Google, should I deal with it or…
I'm working on a Unity project where I use Firebase to manage user data. I am encountering a recurring issue where the asynchronous task GetValueAsync() does not complete, and the code within ContinueWithOnMainThread never executes. Below I detail the context…
I'm writting a Blazor Server app that connects to Firebase Realtime Database. I'm using the FirebaseDatabase SDK but need to perform a set of Atomic operations updating multiple Paths. Since the SDK do not have a method for that, I've…
How can I implement a scheduled function in Python using Firebase to delete a document from Firestore? I've successfully set up the function, but when I attempt to add a condition based on the 'endDate' field, which is of type…
I am using Firebase Authentication in my Android app. Google is asking me for a URL where users can delete their account. Before I create a page and host it myself, I was wondering if Firebase offers that functionality? I…
when connecting firebase at the project flutter in step flutterfire configure said me flutterfire not found despite of all steps true and last step write me installed executable flutterfire
I made a function to read a the data from a specific document and it works(code below) Future<List<String>> getAllServicesFromDatabase()async{ List<String> services = []; FirebaseFirestore db = FirebaseFirestore.instance; DocumentSnapshot<Map<String, dynamic>> results = await db.collection(dbCollection).doc(servicesDocument).get(); if(results.data() != null){ Map<String,dynamic> fetchedData = results.data()!;…
I'm using Firestore and querying data with orderBy set to updatedAt in descending order, and limiting the results to 2 items per page (for testing purpose). However, I'm encountering unexpected behavior when updating data. When I update the oldest item…
I'm trying to create a simple registration and login system with firebase auth, but whenever I restart the site in console.log it appears that the user is saved, but the application returns him to the login page, as if he…
I'm creating an app specific to an industry. To ensure that only industry persons are registering to use it I am requiring company emails to sign up. However, users have said that they then want to change their login email…