#Fowad
1 messages · Page 1 of 1 (latest)
Hello! That's something you would need a developer to help you build.
For sure, I'm a developer
What specific part are you stuck on?
I have it setup to accept a one time payment but am struggling to let it accept a subscriptoin
Any chance I can get on a quick call with ya to hash it out?
No, we can't do a call, but I can help you here. What is "it"?
so here's the flow
I populate my DB, auth and stripe
(its not a self serve sign up workflow)
On the first sign in, the user should be met with a paywall
prompting them to sign up for a subscriptoin
i have it set up like that on the react web side
but on the react native mobile side i only have it set up to accept a one time payment
it needs to be a subscription
does that make sense?
Yep. So what's blocking you from moving forward?
i dont know how to make it a subscription instead of a one time payment
any idea?
We have docs for creating Subscriptions here: https://stripe.com/docs/subscriptions
Not sure that we have a React Native guide specifically, one sec...
yeah a react native guide would be awesome. I'm kinda struggling to figure out how to do the same thing I did for web via react native
This guide is probably the closest thing we have: https://stripe.com/docs/billing/subscriptions/build-subscriptions?ui=elements
Instead of the Payment Element on the web parts you would use the PaymentSheet in React Native instead.
Hmmmm
payment_behavior: 'default_incomplete',
on a subscription is something i didn't know i could do.
let me investigate
thanks brother
I recommend you also look at the API reference for creating a Subscription to get an idea of everything that's possible: https://stripe.com/docs/api/subscriptions/create
Okay will do