For those that integrated payments into their web app through stripe subscriptions, can you provide the steps and prompts you used for a successful integration? I am hitting hiccups in how the prototyper is responding to my prompts and subsequent steps
You will have to put some work in. It depends what kind of payment you are adding? If it can be managed on stripe then just add stripe link to the button, but if you want to pull the data from stripe like invoices and IDs and other stuff you will have to create the webhook and connect it to your firestore so you can pull that data into your UI. Stripe is well know for it’s complexity of the webhook, for my last project I had to write 500 lines of code to make it work and I am not sure if the prototyper will be able to do this for you. Share more details.
I want to do stripe subscription. Enable premium access in the app when subscription is active and disable when the subscription is not active
You have to think much broader than that. Failed transactions, canceled subscriptions, late payments, upgrade plan, downgrade plan, invoice for the customer… There are many aspects of the subscriptions that you need to handle. The best way is to create a webhook if you have any knowledge about it, if you don’t, then start learning. You need stripe api, stripe secret key, stripe webhook secret key, etc…
i have come to realize something, especialy rightnow where thr prototyping ai is has issue. first do a research on all the components that are needed to create a fully working payment platform. Then from authorization. then develpot and test the modules individualy. for each module build a unit test. then use bring them all together. otherwise Ai will keep changing things even working code. in short put in the work