I have to implement an app and a web app with payments. I wanted to use Firebase functions, what do you think is the best way to do it? APay, GPay, PayPal, Stri
I have a firebase trigger function with failurePolicy: true (the function will automatically retry if fails). I avoid infinite retry loops as described here : h
I am trying to trigger a Google cloud function using an HTTP request and a service account. I followed these steps : Create a service account Download JSON key
I deployed two firebase cloud functions then I deleted one of them using firebase CLI as the docs said, but I can still see it in the gcf-sources in Google clou
I just started using Firebase a couple of days ago for my mobile app, so I’m sorry if this might come off as a stupid question, I’m still learning :
Using gcloud I can list and remove the images I want through those commands: gcloud artifacts docker images list LOCATION/PROJECT-ID/RESPOSITORY-ID/IMAGE \ --
any idea why my cloud function is telling my that (Not all code paths return a value) I put a return on the promise at the end also on the if statement yet it
My index.ts has: exports.foo = functions.https.onCall(async (data, context) => { console.log('Hello World'); return null; }); To deploy, I run: firebase
Can you please share your thoughts or experience why this can happen: I have a folder on firebase cloud with a bunch of images (jpeg, png). It can contain from
I've got a very simple cloud function that returns a string in a JSON. const functions = require("firebase-functions"); // Create and Deploy Your First Cloud F
I have a firebase project with a google cloud function like this: export const myFun = functions.region("europe-west1") .runWith({ timeoutSeconds: 10, secre
Environment Operating System: macOS 10.15.7 Node Version:v16.14.2 Nuxt Version: 3.0.0-rc.2 Firebase: 9.7.0 firebase-admin: 10.2.0 firebase-functions: 3.21.0 fir
I created a Google Cloud Platform account, and made a simple hello_world type Python "Cloud Function" that just spits out some simple text. I made this function
I am trying to set up a monorepo that firebase functions will be able to require some shared logic from different directories - as for now I have a setup that w
I did write an HTTP Cloud Function in the Google Cloud Platform. The purpose of this function is to update data in the Database (Firestore). I do not intend to
I've reduced my code to the bare minimum to troubleshoot why I receive a response error when I put a HTTP request in. I first receive a status 200 message upon
I have a Cloud Function (Python) which is triggered by http from web client, it has to calculate something and respond FAST. I would like to save the http reque
I am trying to deploy Firebase functions project, on two different target projects on Firebase. One is in region "us-cenral" and the other one is "europe-west".
Hello everyone I am trying to fetch the data from Binance than do a schedule function that uploads the data from the previous fetch to the Cloud FireStore , the
The component that I have doing an API call looks like this: import React from 'react'; import { Button } from 'react-bootstrap'; class Middle extends React.Co