#geimsdin
1 messages · Page 1 of 1 (latest)
hello! you can take a look at the possible integration flows here : https://stripe.com/docs/payments/online-payments
there're guides for each of them on their respective pages
I always need to include stripe.js library?
yes, unless you're using Payment Links
payment links works only with products, right? It means I have to create products or prices on every transaction
I would like to avoid that
Then you would either have to use Checkout Sessions or the Payment Element - Checkout Sessions is simpler.
if you don't want to create the product and prices on every transaction for Checkout Sessions, you can pass them in inline :
https://stripe.com/docs/api/checkout/sessions/create#create_checkout_session-line_items-price_data
https://stripe.com/docs/api/checkout/sessions/create#create_checkout_session-line_items-price_data-product_data
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
ok thanks Alex, i will have a deeper look and get back in case I have some doubts