All Questions
18 questions
0
votes
1
answer
336
views
Stripe Checkout page not showing payment methods at all
I implemented stripe on my website that runs on Vercel, NodeJS, React.
I specify the payment methods in my code. And half of the times it works and I can checkout with credit card, Apple Pay and ...
0
votes
0
answers
106
views
Error creating payment intent: StripeAuthenticationError
As you can imagine I'm currently setting up the payment API with using Stripe. Problem is, I've never done such thing before and am following the docs pretty much one by one.
This the payment.jsx code:...
0
votes
1
answer
49
views
Can I avoid using stripe connect and just ask for my users to put their public stripe token in the app?
so I have a web app that lets my users to create their catalog in it. So eventually there is admin dashboard and public facing url that their clients can see and where they can put items that this ...
1
vote
2
answers
385
views
Where do I submit the token after getting the user's payment data with Stripe's React PaymentElement?
When using Stripe with ReactJS, I am confused about where to submit the payment tokens after the user has filled out their credit card info. I have this payment container that gets a peyment intent ...
0
votes
2
answers
635
views
Update A Subscription with new quantity,charge customer for new quanitiy,start new subscription for (prev+new) quantity from next month
I'm using stripe for payment in my react and nodejs app. The scenario is like this:
Suppose a customer buys 1 quantity of my plan on Oct 1 (my plans have quantities).
Now, on 15 Oct, the customer ...
0
votes
1
answer
381
views
Stripe RedirectToCheckout (Deprecated, yes) showing "Mthly Dues" as title
I have integrated Stripe.js "RedirectToCheckout" in my React app and everything is working perfectly fine (yes I understand this is deprecated).
My only issue is that it is showing a default ...
0
votes
0
answers
804
views
Stripe API Authentication Error: 'You did not provide an API key"
I'm integrating the Stripe payment gateway into my MERN project and I'm encountering an authentication error when trying to make API requests to Stripe. The error message I'm receiving is:
...
0
votes
1
answer
545
views
stripe payment not working as expected in reactjs
I am trying to use Stripe to charge a credit card, but I am getting an error. Here is the code I am using:
import StripeCheckout from "react-stripe-checkout"
// import confirmPayment from '...
1
vote
1
answer
2k
views
How do you implement payments in React Native 0.70?
How do you implement payments in React Native 0.70. I worked with earlier React Native versions using react-native-credit-card-input and react-native-credit-card-input-plus that are now breaking.
0
votes
1
answer
523
views
STRIPE: updating user's subscription from one to the other with different billing periods
I was integrating stripe with the app that I am building for my company and we have a very specific use case that we have to implement. We are giving subscriptions based service to customers that can ...
1
vote
0
answers
663
views
How to display bank account connected in Stripe Payment with ReactJs
After the account created and linked to the bank account
I want to view them after linking successfully. Typical as this below design:
I have try installed @stripe-js and @react-stripe-js package but ...
-2
votes
1
answer
185
views
How to store and display the customer his payments done on stripe
I have created a check out with different products with subscription in stripe using nodejs and react js.
My question is how i will store payments and display them to customers in their dashboard.
...
2
votes
1
answer
812
views
How can i integrate stripe recurring in react and express with custom checkout page?
I am working on a project where I have to integrate Stripe Recurring Payment with custom checkout page.
I tried many ways but nothing is working.
I hope i get a answer here.
Also Please someone help ...
0
votes
1
answer
1k
views
How to update Stripe coupon "times_redeemed" manually from api ? NodeJS
I am trying to apply a coupon while I am creating a payment Intent in stripe.
Every thing is going well but I cant manually update the number of times that coupon had been used.
I have checked the ...
0
votes
2
answers
628
views
Payment successful but cannot create order react stripe
I am trying to implement stripe payment and create order in my database. Even though my stripe payment is successful I'm unable to create order in database. My implementation -
Shopping Cart:
import '...