All Questions
28 questions
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 ...
0
votes
2
answers
952
views
How to send Stripe session checkout parameters in subscription mode
I am quite new to stripe integration, and due to the country I am from, I cannot access the checkout session page due to account activation requirements.
So, I am not able to see what all details are ...
0
votes
0
answers
82
views
Stripe Checkout Input Not Showing Properly Django
Couldn't find why card details input of stripe is showing like this
SS of Problem
1: [Input not showing properly]
2: [Image of how it should be shown]
using Django
here is my checkout.js
// Create ...
0
votes
1
answer
305
views
Getting this Error, while integrating stripe payments. You provide API key and more
I was following a YouTube video on building an Video Subscriptions Site in Django. However, while integrating stripe I got this error, "You did not provide an API key. You need to provide your ...
0
votes
0
answers
73
views
How to save stripe user info for next transaction in Django Rest framework?
Is it possible to store user data after first payment of stripe for next transaction so that he doesn't need to provide card information again like FIVERR? I actually want a system to save the card ...
2
votes
1
answer
1k
views
how redirect user with stripe react component and django
I would like to redirect my user after he has made a payment (successful or failed) to a page automatically.
Currently, the payment is going well, the update is a success on stripe and I manage to ...
0
votes
1
answer
694
views
Stripe payment do something when payment is successfull Django
I have an app about posting an advertises and by default i made an expiration date for
every advertise (30 days) now i wanna use stripe to extend the expiration date.
what i have so far is the ...
0
votes
1
answer
232
views
Can't set up stripe payment method
I'm trying to finish the payment feature on my app, first time trying to do this following a tutorial by Bryan Dunn. I added a SITE_URL like he did but I don't know if I need that since I added a ...
0
votes
1
answer
392
views
How to differentiate Basic/Premium plan users for premium-only features in Django REST?
I am working on a beta-stage writing tool SaaS that is built with NextJS, React, and Django REST. As I’m gaining some user base, I am starting to research on introducing a premium plan to the mix ...
1
vote
1
answer
72
views
How to execute Django view through Stripe signal?
After a customer has unlocked a post, I want to add his profile to the list of profiles that have unlocked the post.
def unlockpostview(request, post_id):
if userthatisunlockingprofile in post....
4
votes
1
answer
2k
views
Why does the Stripe-Signature header never match the signature of request.body?
I'm using Python with the Django Rest framework and am trying to receive webhook events correctly from stripe.
However I constantly get this error:
stripe.error.SignatureVerificationError: No ...
0
votes
0
answers
929
views
Stripe API, How can I get"customer_email" when Checkout Session executed
I want Django App to send a confirmation email to a customer when webhook is executed,
In order to send an email, I need to get the customer's email address when they make payment.
But the JSON posted ...
0
votes
1
answer
1k
views
Stripe subscription cancel: KeyError 'HTTP_STRIPE_SIGNATURE'
I'm trying to configure Django Stripe Subscriptions for WebApp.
I want to let Subscribed users cancel the subscription themselves.
The code below is to delete user's information from StripeAPI and ...
1
vote
2
answers
631
views
Stripe API, How to get "subscription.status" from definition of ListView from django
I'm trying to configure Django Stripe Subscriptions for Database WebApp.
I want to make sure only "paid user(subscribed user)" can search database. Therefore I need to check whether ...
0
votes
0
answers
135
views
Stripe Fetch Subscription Data (ERROR: relation "subscriptions_stripecustomer" does not exist)
I'm getting this error.
relation "subscriptions_stripecustomer" does not exist
I'm trying to configure Django Stripe Subscriptions following this manual https://testdriven.io/blog/django-...