Questions tagged [firebase-extensions]

Firebase extensions are pre-packaged solutions available to be installed on projects within the Firebase serverless platform.

Firebase Extensions are a part of the Firebase serverless platform that allow deploying extended, pre-packaged functionality into applications developed on the Firebase platform.

Related Tags

193 questions
1
vote
1 answer

Firestore upload and resize image and get the compressed image download url

I installed the Resize Images extension and it's working. In my app I have: const storageRef = firebase.storage().ref(); const imagesRef = storageRef.child(`users/${user?.id}/images`); const imageRef =…
Ben
  • 2,957
  • 2
  • 27
  • 55
1
vote
1 answer

is Firebase delete user data extension capable to delete all documents in deleted user subcollections?

I wanna try Firebase extension delete user data. Say in Firestore I have path like this users/{uid}/inbox/{messageID} and also users/{uid}/posts/{postID} My question is .... Is Firebase extension delete user data capable to delete all user message…
sarah
  • 3,819
  • 4
  • 38
  • 80
1
vote
1 answer

Trigger email firebase extension - error with nodemailer

I installed the extension to trigger emails on databse writes. My website has a simple 'Contact me' form, where i'm not expecting a lot of traffic, so I wanted to set-up a simple notification e-mail system. However, i'm having a hard time getting…
1
vote
1 answer

Setting up 'Trigger Email' Firebase Extension

I learned about firebase and cloud functions recently and have been able to develop simple applications with them. I now want to expand my knowledge and really struggling with Trigger Email Extension. On a specific event on my firebase, I want to…
1
vote
2 answers

Run Function when a Customer is charged using Stripe's Subscription Firebase Extension

I want to run a Firebase cloud function everytime a user is charged by Stripe's subscription extension. Is there any event that is generated by that extension that can trigger a cloud function, such as a write to Firestore? My scenario is that I…
1
vote
0 answers

Using Firestore security rules to control access to data related to subscription using 'Run Subscription Payments with Stripe' extension

I have set up my Firebase project with the 'Run Subscription Payments with Stripe' Firebase extension and everything is working well. This app requires a user to be able to purchase two types of subscription products: A membership subscription…
1
vote
1 answer

Firebase extension Delete User Data doesn't work for {DEFAULT} bucket

I have installed Firebase extension Delete User Data which triggers of user deletion. I have mentioned the storage paths as per the provided instructions. Where in Google Cloud Storage do you store user data? Leave empty if you don’t use Cloud…
Tapas Mukherjee
  • 2,088
  • 1
  • 27
  • 66
1
vote
1 answer

how to give dynamic from address for firebase trigger email

I'm using the firebase trigger email extension to send mail to the site manager. In the inbox, I'm getting the mail but the same from-address as to-address but I need to give the user's mail address as from-address. const email = req.body.email; …
1
vote
0 answers

Firebase Trigger E-Mail Hostname/IP does not match certificate's altnames

I am using the extension "Trigger E-Mail" in Firebase. When I try to send an e-mail and I get the following error: Error [ERR_TLS_CERT_ALTNAME_INVALID]: Hostname/IP does not match certificate's altnames Does this mean the loaded certificate must…
Ero Stefano
  • 556
  • 2
  • 9
  • 27
1
vote
0 answers

Install Firebase Extension via CLI with `--params` flag does not bypass interactive prompts

Following the official docs here under the Bypass the interactive terminal prompts for parameter values during installation section, I have provided the extension configs with a .env file and passing it through the --params flag. However, the…
czphilip
  • 897
  • 1
  • 8
  • 18
1
vote
1 answer

Send ICS file via firebase Trigger Email extension

I am using firebase trigger email extension Is there any way i can attach .ics file on the email ? i am using ics.js for generating and diect downloading ics file let cal = ics() …
mayank3503
  • 315
  • 4
  • 17
1
vote
3 answers

How do I create custom extensions on Firebase?

My team & I are building voice & video chat widgets using webrtc. We want to publish them as Firebase Extensions. This way all Firebase developers can simply add our extensions to get video and voice widgets on their web and mobile apps. Is there a…
1
vote
0 answers

Problem with Firebase Image Resize extension

I installed the Firebase Image Resize extension,i upload an image to test it and it created the file but it keeps loading and it doesnt give me the url of the image. I waited for 10 mins and is still the same, what could be the problem?
1
vote
0 answers

Firebase Image Resizer url only works after submitting same image twice or creating token

Within my website at the moment, I have a user upload a profile picture. This profile picture gets uploaded to storage, and i then run .getDownloadURL() to download the url, and link to it from within my website. All works nicely. I have since…
KJParker
  • 710
  • 2
  • 9
  • 26
1
vote
1 answer

configuring the image file reducer Google Firestore

The following google cloud function properly uploads an image, but I would also like to compress the image as to avoid unnecessary charges due to large files being uploaded. I am using the image reducer extension from Firebase and it works but the…