#aleeeks26_api
1 messages ¡ Page 1 of 1 (latest)
đ Welcome to your new thread!
â˛ď¸ We'll be here soon! Typically we respond in a few minutes, but sometimes we might take a bit longer if the server is busy or if you have a particularly tricky question.
âąď¸ We close idle threads, which makes them read-only. Once a thread is closed it won't be reopened, but you can always start a new thread if you have another question.
đ This thread will always be available, even after it's closed. You can find it again using Discord's search, or you can save this link: https://discord.com/channels/841573134531821608/1299312422833623092
đ Have more to share? Add more details, code, screenshots, videos, etc. below.
Hi
I think this guide is a good starting point:
https://docs.stripe.com/payments/accept-a-payment
It depends what feature you need from a Shopping Cart, if just displaying the preview, Checkout Session is a good one:
https://docs.stripe.com/payments/checkout
My application has its own cart and manages it, but I don't know if Stripe had it and if so, if it is advisable to use it for payments.
I really have to create the checkout if I follow this guide?
Ah nope. There is pricing table for browsing products for example but not for managing Shopping Cart (in case that could be interesting for you):
https://docs.stripe.com/payments/checkout/pricing-table
What you mean exactly ? Following that guide you create a Stripe Checkout Session on which the Customer can pay.
I want that when the user clicks on the buy button, the form to enter the credit card with all the items selected in the cart will appear.
Yes it's feasable with the guide I shared with you.
You can use the hosted Checkout Session, where the customer wil be redirected to a new website
or you can implement the embedded form, so that the Checkout Session will load in your website
With this https://docs.stripe.com/payments/accept-a-payment true ?
yes
Thanks you for all