All Questions
Tagged with stripe-payments firebase
425 questions
0
votes
1
answer
34
views
Could not create or update Cloud Run service handlestripewebhook, Container Healthcheck failed
Trying to deploy firebase functions with a Stripe webhook with Svelte5. I set the secrets:
firebase functions:secrets:get STRIPE_SECRET_KEY
firebase functions:secrets:get STRIPE_WEBHOOK_SECRET
...
0
votes
1
answer
32
views
How to configure the Stripe secret in Firebase Cloud Functions?
I'm trying to integrate Stripe into a project of mine, and it looks like I can do it on my cloud functions. I'm following this official guide which tells me to add the API key to my firebase config. ...
1
vote
2
answers
1k
views
Firebase deploy error: Neither apiKey nor config.authenticator provided (using Stripe)
This is in the context of a web firebase app using Stripe with firebase functions.
"dependencies": {
"stripe": "^17.2.0",
"twitter-api-v2": "^1....
0
votes
1
answer
43
views
Stripe Webhooks implementation and Metadata - No signatures found matching the expected signature for payload
I am currently using a server in Node. I am implementing Stripe to manage subscription payments, but I am unable to make the requests successful.
I always get the error:
No signatures found matching ...
0
votes
0
answers
36
views
Payment is not made with no throttling
I am implementing Stripe intent payment in my Angular + Firebase app. I implemented Firebase function like this from example on official documentation.
My problem is that if I try to do payment with ...
0
votes
0
answers
24
views
I want to reflect the results of a pay-as-you-go payment in Run Payments with Stripe in firestore
I am using basic html and javascript.I'm a beginner programmer.
I am currently working on a program that uses Stripe to process payments on a pay-as-you-go basis and reflect the results in Firestore. ...
0
votes
2
answers
71
views
How do I add a field in the document stripe adds to fire store once checkout is completed?
I am trying to setup a tutorial content page where users pay through a stripe checkout and once, they have done so they can then view the content on the page.
I am using firebase's firestore and the ...
0
votes
1
answer
57
views
Why are Stripe Checkout sample amounts hardcoded? (How do we get basket specific unit price, quantity and currency?)
I don't understand the Stripe express checkout sample code: https://docs.stripe.com/elements/express-checkout-element/accept-a-payment.
Amounts and currency are hardcoded. What if someone buys more ...
0
votes
0
answers
35
views
Synchronous VS setting by reference
I have some trouble with my function, which:
set product And price in stripe
Then set my postRequest with return of stripe ( product_id and price_id )
Get my collection product (subscription ) on my ...
0
votes
1
answer
112
views
Next.js 14: undefined Value Error When Serializing products in getServerSideProps
I'm using Next.js 14.2.3 and attempting to fetch a list of products from Firestore using the getProducts function from @stripe/firestore-stripe-payments in getServerSideProps. However, I'm ...
0
votes
0
answers
156
views
Firebase Function Deployment for Stripe
I'm working on a project using Firebase Functions with Stripe. Following these docs: https://docs.stripe.com/identity/verification-sessions
I keep getting this error when I deploy the function:
i ...
0
votes
0
answers
33
views
CORS Error When Trying to Connect to Firebase Function from Localhost Frontend. React, Firebase - Stripe
I'm currently working on integrating Stripe with Firebase functions for a project running on localhost. I've set up a Firebase function to create a Stripe Verification Session and return a client ...
0
votes
1
answer
33
views
My jest file isn't using the correct return
I'm pretty sure that it will be something easy to fix, but I've been stucked with this for a while. I'm building a background (back-end) test file using Jest. Here's my background.test.js
`
const ...
0
votes
1
answer
45
views
Issues parsing the ephemeral key response following protocol
In my iOS App, I have had stripe integrated with sk_test and now, I am trying to use sk_live. I have configured my live key in my .env, index.js, runtimeconfig.json and remoteconfig.json. When I try ...
0
votes
0
answers
50
views
Stripe Firebase mobile payments: Android @Jetpackcompose
I am doing a donation app for my final year project in college in kotlin, with pure Jetpack compose based in ComponentActivity(). I am trying to install the stripe api. I need to have a server side, ...