Welcome to Midnightcraved!
M
View cart
0
SUBTOTAL :
Empty cart
Checkout
Menu
Free Delivery
We will ship free if your order exceeds RM150.
發表文章
找不到相符的結果
Popular Posts
Ad banner 1
banner
cancel.html Download 1const stripe = require('stripe')('sk_test_51Ics0JALvLci0nvApkOzCopSi4tiwyhPDx27Mz0ofK9Arx5CYEAno9NMfEyLGYk9eOEuCJY3eExyUW9KW98ClAhP00AaNZZAS0'); 2const express = require('express'); 3const app = express(); 4app.use(express.static('.')); 5 6const https://www.midnightcraved.blogspot.com = 'http://localhost:4242'; 7 8app.post('/create-checkout-session', async (req, res) => { 9 const session = await stripe.checkout.sessions.create({ 10 payment_method_types: ['card'], 11 line_items: [ 12 { 13 price_data: { 14 currency: 'usd', 15 product_data: { 16 name: 'Stubborn Attachments', 17 images: ['https://i.imgur.com/EHyR2nP.png'], 18 }, 19 unit_amount: 2000, 20 }, 21 quantity: 1, 22 }, 23 ], 24 mode: 'payment', 25 success_url: `${https://www.midnightcraved.blogspot.com}/success.html`, 26 cancel_url: `${https://www.midnightcraved.blogspot.com}/cancel.html`, 27 }); 28 29 res.json({ id: session.id }); 30}); 31 32app.listen(4242, () => console.log('Running on port 4242'));