Next.js Discord

Discord Forum

Next.js+Django Stripe subscriptions

Answered
Si posted this in #help-forum
Open in Discord
SiOP
hi, does anyone have a repository/tutorial on how to connect django+nextjs with stripe subscription?
Answered by B33fb0n3
not directly django, but nextjs with stripe itself: https://docs.stripe.com/payments/quickstart?client=next
The guide shows how to create and submit a paymentintent. You want to have subscriptions. So just replace the paymentintent creation with the creation of a subscription 👍
View full answer

3 Replies

@Si hi, does anyone have a repository/tutorial on how to connect django+nextjs with stripe subscription?
not directly django, but nextjs with stripe itself: https://docs.stripe.com/payments/quickstart?client=next
The guide shows how to create and submit a paymentintent. You want to have subscriptions. So just replace the paymentintent creation with the creation of a subscription 👍
Answer
SiOP
Thank you! @B33fb0n3
happy to help