#KoalaKey
1 messages · Page 1 of 1 (latest)
Hi there, are you looking for the checkout migration guide? https://stripe.com/docs/payments/checkout/migration
I'll have a deeper look through but this looks like it's using a server no? I don't want to be doing that. Everything needs to be done client side
Both the legacy Checkout and new Checkout require some backend code.
If you are looking for a lightweight solution, I'd recommend you using PaymentLink, (https://stripe.com/payments/payment-links) our no-code solution for payments.
I'm using the stripe.js library. before redirect to checkout was deprecated I could just write the logic in JSK right in my react applications with no back end code required. Is that just going away now?
JSX **
Yes the client-side checkout is already deprecated (https://stripe.com/docs/js/deprecated/redirect_to_checkout). You can use server-side Checkout sessions API, or PaymentLinks.
I guess that answers my question. Disappointing that stripe is deprecating that