Is there any way to upload the Credential File to the Firebase and only pass a path for this file from firebase to authenticate. For Example: here I need to pass the credential file which is in my local computer I need to pass a path from the internet maybe by uploading the credential file “serviceAccountKey.json” to the firebase and
Tag: firebase
Callable Cloud Function error: Response is missing data field, when trying to call cloud function written in python from flutter app
I’ve been stuck for a few days trying to call a cloud function that was written in Python that takes no parameters from my flutter app, but I keep getting an error that says ‘Response is missing data field’. This is confusing me because the function takes no parameters so I’m wondering if I’m missing something. This is what the
How to initialize google-cloud-firestore – Python
This is a example code from https://googleapis.dev/python/firestore/latest/ When I run that it shows but I don’t know how to initialize that and also I don’t want to do that by using environmental variables If anyone knows pls inform me Thanks in advance Answer If you have access to this particular project, you need to go to the Google cloud console
How to move a document between 2 collections in Firebase?
I’m trying to “move” a document from one collection to another in Firestore. That means copy/paste a document and then delete the original. I’m trying to achieve this server-side using Python. I’m aware that using transactions might do the trick, but I’m wondering why couldn’t I just use a basic : .get() .set() and .delete() in order to do that?
Calling Firestore Database from another Cloud Project shows “Permission Error”
After reading every piece of question, documentation available online, we couldn’t find a solution, so posting a question here. Our Setup : Project FB: Used only for Firestore in Dev mode. We want to access data from this project in our dev backend server, hosted on a different cloud project. Project GCP: A GCP Project with app deployed in GAE
How to authenticate to Firebase using Python?
I am building a Web App with Python and I would like to authenticate users. The pyrebase package seems to be outdated and it generates dependency errors so I cannot use it. I know that there is a function from the firebase-admin API that works like this: But what if this user has a password? I would like to check