All Questions
Tagged with stripe-payments django
447 questions
3
votes
2
answers
2k
views
Why does Stripe's webhook send the same event twice at about the same time?
I'm building a payment system using Stripe. After making a payment with Stripe, we use the 'invoice.paid' event to authorize the user. I've tried it several times and noticed that the webhook sends ...
-1
votes
1
answer
42
views
How to integrate a Stripe Terminal Reader to POS application using Django?
I am developing a POS system using Django. I have a Stripe account, and through the system I am developing, I can process payments using credit or debit cards, with the money being deposited into my ...
0
votes
1
answer
33
views
Django / Stripe - Webhook not found
I am trying to establish a webhook with stripe. (first timer)
However, it seems the path to the webhook is not found.
Hoping someone might be able to bring a pair of fresh eyes and tell me what I am ...
1
vote
0
answers
132
views
Include Stripe in Angular project
I am working on a website which uses angular for client and django for backend and I want to include stripe for payments. To configure stripe on the backend I have a microservice which runs on docker ...
0
votes
1
answer
71
views
How to access checkout session metadata in Stripe webhook for payment methods in subscription mode
I'm integrating Stripe Checkout in a Django application and handling webhooks to update user information based on payment events. However, I'm encountering issues accessing metadata associated with a ...
0
votes
1
answer
69
views
Automatically create a free trial Stripe checkout
We use Stripe for our checkout and have a free trial enabled. So when a user comes to the site to enable the free trial they just enter their email in the checkout.
What I would like is to tie the ...
0
votes
1
answer
127
views
Stripe Checkout Session Django Subscription
I'm not a developer or software engineer. We've put together almost the entirety of a web app with the help of chatgpt. It's worked great up to this point...
I would like to do the following:
...
0
votes
1
answer
51
views
Django stripe expand data to webhook
I sent an order data by posting a request to stripe, creating session, and setting my order in line_items. The problem is that I want this line_items data to expand to the stripe webhook view, and by ...
0
votes
0
answers
141
views
Stripe payment not going through in production but working in development
I have a django project that I am deploying and have a stripe integration for payments in it. It works perfectly fine locally and goes through but does not work on my linux server. What could be ...
3
votes
3
answers
8k
views
Getting ERROR "You must provide at least one recurring price in `subscription` mode when using prices."
Hello I am beginner in Django while trying to create Subscription with stripe i am getting error as
InvalidRequestError at /stripe/create-checkout-session Request req_M2eko0H9LwXvDz: You must provide ...
0
votes
1
answer
91
views
django stripe on deploy Error verifying webhook signature
i have django react app, i added stripe to django, react build files i set on static django
i have tested on localhost with stripe cli is working fine but after i deploy my django project on vercel ...
0
votes
0
answers
28
views
Double model creation after payment in django website
I am currently working on Learning management course using Django and React .I am creating payment gateway using stripe . After the payment is successfully done , the courses should be called enrolled ...
7
votes
3
answers
6k
views
How to integrate Stripe payments gateway with Django Oscar?
I am trying to integrate the Stripe payment gateway to Django oscar for an e-commerce site which sells physical goods like groceries online.I use python 3.6.3, Django 2.0, Django-oscar 1.6, stripe 1....
1
vote
0
answers
129
views
Django CSRF cookie not set with 403 error for webhook URL
I am encountering an issue with Django's CSRF protection while trying to handle Stripe webhooks on my local host. I am receiving a 403 Forbidden error with the message "CSRF cookie not set." ...