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
12
votes
1 answer

How to get the resized downloadUrl after upload with firebase storage (Web SDK + Resize images extention)

With the Firebase Web SDK, I can easily get the downloadUrl after upload a file const task = firebase.ref().child('myFolder').put(file, metadata) task.then(snapshot => { snapshot.ref.getDownloadURL()) } But I installed the Resize Images Extention…
9
votes
1 answer

How to run Algolia Firestore extension import script?

I'm installing the Algolia extension for Firestore. Setup works just fine and it updates indices on add delete and update. But now I want to backfill it with existing data. The following steps are provided in the setup guide but I have no clue on…
Jonathan
  • 8,771
  • 4
  • 41
  • 78
6
votes
1 answer

How can I resize all existing images in firebase storage?

Im using the Resize Images extension in Firebase. Before I had added this extension however I have already uploaded many images, they are in their respective post/ storage bucket and are linked via URL in the realtime database. Is there any way…
5
votes
2 answers

Firebase Trigger email and SMTP connection URI using GMAIL

I am trying to set up TRIGGER EMAIL to send emails through my GMAIL account. My problem is definitely in the SMTP connection URI because the same configuration works fine with the SENDGRID SMTP connection URI. So I think the problem is specifically…
Simone Murtas
  • 59
  • 1
  • 4
5
votes
3 answers

Run Subscription Payments with Stripe Firebase Extension Webhook Not Firing

I added in the Stripe Subscriptions extension to my Firebase/Vue application so I can manage subscription plans for my customers, but I'm having problems with what I believe is the Stripe webhook. I started off the extension installation by setting…
4
votes
1 answer

Not able to run firebase stripe/firestore-stripe-payments extension in emulator locally for a web application

I tried to install Run Payments with Stripe extension (https://firebase.google.com/products/extensions/stripe-firestore-stripe-payments) from firebase for the project mySampleProject in my local emulator, but it's not showing in the emulator list. I…
4
votes
1 answer

How to get the new download URL after Firebase Extensions Resize Images with AngularFire?

Need help in getting the resize image URL after the Firebase extension resizes the image. Before I was able to do so with the code below. But, after activating the function, images are not showing up. After comparing the imgURL on Firestore and the…
4
votes
1 answer

Firestore distributed counter with multiple fields

Is it possible to use the Firestore Distributed Counter extension to update multiple document fields simultaneously? I am currently using the extension, similar to the official examples, to increment a single field in a document. Now, I need to…
cjmconie
  • 912
  • 7
  • 13
4
votes
1 answer

Dynamically resize image using firebase resize images extension

In our Firebase storage, we have images that have widths of 1080 and varying heights. Using this extension (https://firebase.google.com/products/extensions/storage-resize-images), we need to resize the width to 480, maintaining the aspect ratio. How…
4
votes
1 answer

How to get download url of Thumbnail after firebase resize images extension completets

The recently introduced firebase extension 'Image resize' produces a thumbnail once a picture is uploaded to a storage bucket. How do I obtain the download url of the image of this thumbnail, after the extension completes? final StorageReference…
3
votes
1 answer

How to finalise one-time payment summary with Firebase Extension "Run Payments with Stripe" on a ReactJs website

I'm currently using Firebase for my ReactJs website. I wanted to use stripe to add a payment module. So I created an account on Stripe and added the extension "Run Payments with Stripe" on my Firebase project. Everything works fine on this extension…
3
votes
2 answers

firebase distributed counter extension in cloud functions

I am trying to implement Firebase's distributed counter extension in a cloud function. The idea is to detect when a document is created, then a counter inside a document is added. Below is my cloud function: exports.bookmark_increment =…
3
votes
2 answers

How to install firebase extension in not-interactive way

I am trying to install firebase firestore-bigquery-export extension through firebase CLI. But I can not find how I can install an extension in non-interactive way. I need that because I have multiple environments and CI. The console contains…
3
votes
0 answers

How to get resized downloadUrl (Firebase Resize Images extension NEW Version 0.1.10)

Version 0.1.10 fixed - A fresh token is now generated for each resized image. (Issue #323, PR #351) Link to PR #351 const img = await storageRef.child(pathname).put(sampleImg); const imgDownloadUrl = await img.ref.getDownloadURL(); imgDownloadUrl…
3
votes
0 answers

Cannot import existing collection from firebase to BigQuery

I'm using the firestore-bigquery-export extension for Firebase. I have successfully got a collection syncing to BigQuery. I have also successfully implemented my required custom schemas uploaded to BigQuery using npx…
1
2 3
12 13