I enforced Firebase AppCheck for Firestore. Now, when I try to access data, I get an error: In Firebase, it says all my requests are unverified: This only happens for firestore. Is there something else I must do? I enabled AppCheck in my app using: I tried disabling AppCheck in the firebase console, and now all my requests are accepted.
Tag: firebase
How can I instantly load all my firebase entries without re-rendering?
Circumstances: For my app project that uses a realtime database I’m trying to load in data from all machines that are associated with the user. The machines that the user should see are dependent on the related company (cid) and which machines belong to that company. Problem: I have used the Firebase v9 docs as much as possible and have
Need help converting firebase 7.15.1 syntax into firebase 9.6.1 syntax
I am new to Firebase and I am following a tutorial that is a little bit outdated. I need help converting the code that they have into the newer version of it because I believe that the syntax has changed. They are using firebase 7.15.1 and I need the code to be in 9.6.1. Here is the 7.15.1 code: I
How can I read data from firestore database in a schedule function? [closed]
Closed. This question needs details or clarity. It is not currently accepting answers. Want to improve this question? Add details and clarify the problem by editing this post. Closed 2 months ago. The community reviewed whether to reopen this question 2 months ago and left it closed: Original close reason(s) were not resolved Improve this question I’m new to Firebase
android firebase start listing data equal to entered letter
There is a problem with the list inside the “if” it doesn’t work I get an error this:java.lang.ClassCastException: java.lang.String cannot be cast to java.util.List Answer You are getting the following error: java.lang.ClassCastException: java.lang.String cannot be cast to java.util.List” In the second if statement, because the type of the “name” field in the database is String and not a List, hence
Axios in a firebase function returning pending promise even inside two async/await blocks
I have an async/await problems (I know, I know) that makes no sense to me. I’m declaring both functions (child and HOF) as async, and awaiting the returned results before trying to console log them. Surprise surprise, I get pending. The function hangs for 60s and times out (so it seems even my runWith timeout method isn’t working. Also tried
Angular: conditionally render based on whether value was received from Firebase DB
I have a component: export class MainpageComponent implements OnInit { items: Observable
share firestore collection paths across admin and web
I’d like to make re-usable functions that get the Firestore Document/Collection reference across web and admin (node.js). for example: getUserDocumentReference(company: string, user: string) { …
How to get the key of a pushed value
In Firebase Realtime Database on Android, I want to retrieve this id “-Mb1sSv-FCNr9ElxZIwN”. databaseReference = FirebaseDatabase.getInstance().getReference().child(“Registration Data1&…
How to initialize google-cloud-firestore – Python
from google.cloud import firestore # Add a new document db = firestore.Client() # need to put credentials doc_ref = db.collection(u’users’).document(u’alovelace’) doc_ref.set({ u’first’: u’Ada’, …