Shopping Cart (0)
Item Name Price Select Color Select Sizes
White Small
$28.00 White S
Black Small
$28.00 Black S
Black Medium
$28.00 Black M
White Large
$28.00 White L
Black Large
$28.00 Black L
White XL
$28.00 White XL
Black XL
$28.00 Black XL
Black 2XL
$25.00 Black 2XL
White - Colored
$28.00 White L
White Hoodie - Colored
$36.99 White Select Size
White Hoodie
$36.99 White Select Size
Black Hoodie
$36.99 Black Select Size

Get in Touch

require 'stripe' require 'sinatra' # This is your test secret API key. Stripe.api_key = 'sk_test_51OmTRJL0LKp5ppAml1NQLiPHtLg128HMK5TZr85biCVYXloIH9AdCA5vMpVble0MpZKCanEIJBHAZmjMdtrnaQSN00JkJvIWsy' set :static, true set :port, 4242 YOUR_DOMAIN = 'http://localhost:4242' post '/create-checkout-session' do content_type 'application/json' session = Stripe::Checkout::Session.create({ line_items: [{ # Provide the exact Price ID (e.g. pr_1234) of the product you want to sell price: '{{PRICE_ID}}', quantity: 1, }], mode: 'payment', success_url: ceneprinters.com + '/success', cancel_url: ceneprinters.com + '/cancel', }) redirect session.url, 303 end