Stripe Subscription Checking Membership Protecting Pages

What I’m trying to do:
I’ve been reading on stripe tutorial on how to accept payments, but without attempting to implement it, I got a question on how it protects pages, or checks users for active subscription before allowing them to continue to use my app.

I see I can use the python stripe api and most likely will go that route, but needed clarity if anvil already handles that in the their stripe add on feature.

I wanted to start with a simple $5 a month, and if they want more features I can add more subscriptions charges, $10 a month additional for feature A and $25 a month additional for feature B. Is that something I can do by creating multiple stripe products and have it check it with the current anvil capabilities?

Last I looked, it doesn’t. Access control for your own pages is up to you. Your rules, implemented by your own code. Server-side code, so that the user can’t see the logic or override it.

1 Like