Has anyone successfully implemented Stripe subscription payments to their web app? Bonus points for Supabase backend implementations too. I
saw you can embed the Stripe plugin within your app, but do people typically do this for payment processing? I feel like I’ve usually seen subscription websites redirect to the payment processor (e.g., Stripe, Square) via a sub-domain within those processors that displays the company logo of the service you’re purchasing, which would make users feel more secure that their payment is being processed securely, vs just punching credit card details into my website. For Stripe, the checkout domain I’ve seen is https://checkout.stripe.com/ and then some string specific to your app.
Thanks all!