All Questions
Tagged with stripe-payments django
446 questions
0
votes
1
answer
29
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 ...
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
67
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
50
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
133
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 ...
0
votes
1
answer
88
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 ...
1
vote
0
answers
121
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." ...
0
votes
1
answer
89
views
Stripe Checkout Session: No session_id Provided in Request After Successful Payment in Django
I'm working on a Django project where users can purchase subscriptions to various packages using Stripe Checkout. However, after a successful payment, I'm encountering an issue where the session_id is ...
0
votes
1
answer
120
views
'No such token' error 400 payment request to Stripe
The site API STRIPE tells me there is an error in LOGS:
For what exact reason do I get a 400 error when entering the test card numbers and clicking the "Confirm" button?
This message ...
0
votes
1
answer
42
views
stripe dashbaord showing 400 even though stripe listen cli is retuning 200
As a sanity check, I am immediately returning a status 200. as you can see in the screenshots below, my cli says everything is okay and returning 200 back to stripe, but in my dashboard I am getting ...
0
votes
1
answer
44
views
Django, stripe and webhook : {"error": "Missing stripe signature"}
I need your help. I'm trying to set up a striped payment system in the django app. However, I can't seem to connect the webhook to my logic. In addition, the handle_checkout_session function which ...
0
votes
0
answers
21
views
Django stripe and stripe webhook error : {"error": "Missing stripe signature"}
please, I need your help. I'm trying to set up a striped payment system in the django app. However, I can't seem to connect the webhook to my logic. In addition, the handle_checkout_session function ...
3
votes
1
answer
74
views
Stripe promocode: how to verify that user have redeemed the promocode before or not
I have a Django project configured with Stripe for payments. I have created promocodes for discounts, which can only be redeemed once per customer. The problem is that I want to validate whether a ...
0
votes
0
answers
81
views
Custom User Model having ForeignKey to Customer with dj-stripe
I would like to have a Custom User Model in my django application, featuring a column to hold reference to Customer objects coming from stripe, being synced via dj-stripe.
So my approach was to extend ...