#Aboo
1 messages · Page 1 of 1 (latest)
hello! what's the issue you're facing?
So im trying to create the stripe checkout after a username input
i obviously replaced w my API key and my SKU ID
and when I press my buy now button nothing is happening
although everything seems in place
i'll suggest that you not use redirectToCheckout, it's considered deprecated at this point and many new features are not supported anymore. SKUs are also really old and deprecated.
how can i use stripe checkout integration thats up to date?
either use Payment Links : https://stripe.com/docs/payments/payment-links or a Client and Server side integration : https://stripe.com/docs/payments/accept-a-payment?integration=checkout / https://stripe.com/docs/checkout/quickstart
Which one of these will allow me to have a custom text input field
because i know payment links dont
what will you use the custom text input field for?
a username
my product is a invite only product and i need a username to give them access
neither support a custom input field in the hosted Checkout Page. What i suggest you do is to collect the username on your own page first then pass it in as metadata when creating the Checkout Session : https://stripe.com/docs/api/checkout/sessions/create#create_checkout_session-metadata
problem is abandoned checkouts
i will receive a bunch of usernames that did not complete payment
you should only save usernames from Checkout Sessions that are completed
i.e. listen for the checkout.session.completed webhook
i see.
this seems a bit too complicated for myself to do. is there a way to do bounties with stripe like repl?
unfortunately not, we don't have such a process
can you suggest anywhere where I can find someone to help me set this all up. $$$ of course
we have samples to get you up and running if that helps : https://stripe.com/docs/checkout/quickstart
we have verified partners which you can reach out to and hire https://stripe.com/partners/expert-services
these may be more on the pricier side though
can you define pricier?
you may want to hire a freelancer, but i don't have any recommendations
i have no idea, but since these are agencies, they are typically way pricier than hiring a freelancer
you can always reach out to get a quote
I see. Thank you for the help. with this quickstart page, would i be able to add that metadata you were talking about