Skip to content Skip to sidebar Skip to footer
Showing posts with the label Google Cloud Functions

Firebase Cloud Functions Stopped Working - Event.data Undefined

I have some cloud functionsbut they suddenly stopped working, now I'm getting event.data undefi… Read more Firebase Cloud Functions Stopped Working - Event.data Undefined

Javascript - How To Use Promises In Firebase?

Lately I've been stuck with a problem that I don't know how to solve. I asked this question… Read more Javascript - How To Use Promises In Firebase?

Firebase - Cloud Firestore Trigger Idempotency

The Firebase docs for Cloud Firestore Triggers mentions here that functions triggered by an event f… Read more Firebase - Cloud Firestore Trigger Idempotency

How To Resolve/return A Foreach Function In Cloud Functions

I have the following (sample) array: pages = [ { 'name' : 'Hello', 'id'… Read more How To Resolve/return A Foreach Function In Cloud Functions

Get New Date In Cloud Functions In Specific Time Zone

I am trying to get my local date time in Cloud Functions using new Date(), but the result is with o… Read more Get New Date In Cloud Functions In Specific Time Zone

Call Firebase Cloud Function Via Get And Return Parameters

I have created this cloud function: exports.returnUid = functions.https.onRequest(async(req, res) =… Read more Call Firebase Cloud Function Via Get And Return Parameters