How to protect firebase Cloud Function HTTP endpoint to allow only Firebase authenticated users?
With the new firebase cloud function I’ve decided to move some of my HTTP endpoint to firebase. Everything works great… But i have … Read more
With the new firebase cloud function I’ve decided to move some of my HTTP endpoint to firebase. Everything works great… But i have … Read more
I would like to create multiple Cloud Functions for Firebase and deploy them all at the same time from one project. I would … Read more
I’m trying to rebuild a web app example that uses Firebase Cloud Functions and Firestore. When deploying a function I get the following … Read more
In Cloud Firestore there are three write operations: add() set() update() In the docs it says that using set(object, { merge: true }) … Read more
I’m currently learning how to use new Cloud Functions for Firebase and the problem I’m having is that I can’t access the function … Read more
I am considering using Firebase as MBaaS, however I couldn’t find any reliable solution to the following problem: I would like to set … Read more
I’m starting with the new Google service for the notifications, Firebase Cloud Messaging. Thanks to this code https://github.com/firebase/quickstart-android/tree/master/messaging I was able to send … Read more
I am getting the Error gettingdocuments.com.google.firebase.firestore.FirebaseFirestoreException: PERMISSION_DENIED: Missing or insufficient permissions. for the below code on else statement db.collection(“users”) .get() .addOnCompleteListener(new OnCompleteListener<QuerySnapshot>() { … Read more
I get the following error while upgrading a firebase project from old domain to new google firebase domain. Failed to resolve: com.google.firebase:firebase-core:9.0.0 I … Read more
Is it possible to count how many items a collection has using the new Firebase database, Cloud Firestore? If so, how do I … Read more