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

Firebase MessageBird extension not sending SMS

I am not able to successfully process the sending of an sms through the firebase extension. Attached is the code of my js code to generate the document in the firestore collection, as well as the document created by the extension, where you can see…
0
votes
1 answer

Is there a way to get a feedback from the Firebase extension "Resize Images" once it is completed? - Flutter Firebase Storage

I'm facing the following issue: I upload an Image to Firebase Storage //Start the upload await StorageHandler.instance.uploadTask(mediaIDPath, largeFile); Once the upload is completed, the Firebase Extension "Resize Image" will be triggered. The…
Ayrix
  • 433
  • 5
  • 16
0
votes
1 answer

How to get all data from firestore to bigquery using extension

I am new to firebase and bigquery (and all gcp services) and am trying to use the extension inside of firebase that connects my firestore db to BigQuery. I seem to have set it up correctly, but it only shows data from the time I installed the…
0
votes
1 answer

Custom Firebase Email Verification Template and Action Handler

I would like to customize the email template (using the Trigger Email extension templates) to send verification links to users. I understand it is not possible to change the template from the Firebase console as it prevents spam. I am aware of the…
0
votes
0 answers

Firebase/Stripe getProducts returns an empty list

I've created some products on Stripe which I can retrieve using curl https://api.stripe.com/v1/products -u sk_test_...: -G I've installed stripe/firestore-stripe-payments@0.2.4 in Firebase…
Marc Van Daele
  • 2,856
  • 1
  • 26
  • 52
0
votes
0 answers

Does the Resize Images Firebase extension only resize, or does it compress the output images also?

Essentially, I'm trying to learn whether or not the extension automatically optimizes the output images, similar to what Tinypng or Cloudinary does? Sorry if it seems obvious, but I searched the extension's landing page description and related…
Mark Gavagan
  • 878
  • 12
  • 45
0
votes
1 answer

Is there any way to resize a image from a list based on file name using Firebase Resize Extension?

Structure of my storage folder: I want to resize the first image (0.jpg) only. I don't want to do any operation on other images of this folder. Can I achieve this by using path like this /rooms/*/0.jpg in resize extension? If no, is there any way…
Abu Saeed
  • 1,020
  • 8
  • 21
0
votes
1 answer

how to find elements in an array exported from firestore in BigQuery

i need to get count of item has been sold so iam exporting my firestore data to big query i have collection in firestore and i have array of object i need to export forestore data to big query line_items [ { price:10, qyt:2, name:car …
0
votes
1 answer

Stripe checkout session integration with firebase top-level-await error

Hi I've been trying to create a checkout session using the stripe firebase extension and I ran across this error: ./pages/viewer.js Module parse failed: The top-level-await experiment is not enabled (set experiments.topLevelAwait: true to enabled…
0
votes
1 answer

Confused about how to use Stripe as an extension with Firebase in my web app

What i'm trying to do is use the Firebase Stripe extension inside of my web app but I don't know how to go about doing so. Am I supposed to setup Stripe in my app separately? Or use the Firebase SDKs? I'm using the Nextjs framework. I already have…
0
votes
0 answers

Firebase storage - resize image extension

i wanted to resize my images, so i installed this resize image extension. Problem is it only resize image if i upload it on firebase website. Problem is if i upload it through nodejs or flutter, it does not resize.. Do i need to set some metadata or…
0
votes
0 answers

How to refer subcollection table view to its collection table view on BigQuery with firestore-bigquery-export

How do you put in a relationship a collection imported in bigquery with a subcollection imported in bigquery as in the example of a firestore document: users: user_id_1 user_name photos |-----photo_1 |----- …
0
votes
1 answer

My firebase extension is failing to install due to invalid field values, but I don't see whats wrong with them?

I am trying to install a mailchimp extension on firebase. my users firestore looks like this: My extension config looks like this: Here is the error:
0
votes
2 answers

Avoid re-generating token when using Firebase Image Resize Extension

I am using Firebase resize extension successfully to generate thumbnails while deleting the original picture but once the extension is triggered, the original static token is re-newed for the new resized picture. In order to read the thumbnail I…
tonnoz
  • 454
  • 4
  • 12
0
votes
1 answer

Trigger Email Firebase Extension on modified Document

How do i trigger the sending of an email when a document data is modified ? Trigger Email only composes and sends an email based on the contents of a document written to a Cloud Firestore collection but not modified I can’t figure this one out…