I have created a stripe account and have payment links set up for my app. How do I set up an option to pay on the app. Once paid, how do a manage the subscriber if they cancel so that they no longer have access to the app?
In apps where I use Stripe, I always manage them through Make.
Create a payment link that ties to your product on Stripe, then use that link inside Glide.
Add a webhook inside Make that listens to actions related to payment and cancellations in Stripe. Then, branch the Make scenario to deal with these actions and update the right rows in Glide.
It’s complex, I just wrote a pretty general idea on how to do it.
Thanks
Webhooks are perfectly fitted for that task, because they will send 1 event each time for each order (and / or) payment. With retry if any network/connection fail.
Then you need to send this event to Glide or whatever services you use.
And keep track in for example a Glide Table, who are active customers/subscribers to allow access.