頂級黃金茶
頂級黃金茶
品名:頂級黃金茶
我們採用自然界的紅寶石,牛樟樹
牛樟在潮濕氣候會散發清香柔和味,不單只有鼻子聞,現在可以嘗試牛樟葉在口服下得到牛樟
茶香、茶色、茶味以及養身茶飲
紅寶石本身具有安定神經、舒壓、抗老化、抗氧化
非常養身的茶飲。
- - - - - -
歡迎現場訂購、詢問
電話:02-24978169
手機:0989-422508
地址:新北市瑞芳區民權街23巷2號
haonature.com
import CheckoutIntents from 'checkout-intents';
const client = new CheckoutIntents({
apiKey: "RYE/staging-ec7a06d0ba5647ee824a",
});
// Step 1: Create checkout intent + poll until awaiting confirmation
const intent = await client.checkoutIntents.createAndPoll({
productUrl: "https://flybyjing.com/collections/shop/products/the-big-boi",
quantity: 1,
buyer: {
firstName: "John",
lastName: "Doe",
email: "john.doe@example.com",
phone: "212-333-2121",
address1: "123 Main St",
city: "New York",
province: "NY",
postalCode: "10001",
country: "US",
},
});
// Step 2: Review offer details (price, shipping, taxes)
console.log("Offer:", intent.offer);
// Step 3: Confirm with payment + poll until completed
const completedIntent = await client.checkoutIntents.confirmAndPoll(intent.id, {
paymentMethod: {
type: "stripe_token",
stripeToken: "tok_visa",
},
});
// Step 4: Handle result
if (completedIntent.state === "completed") {
console.log("Order placed successfully!", completedIntent);
} else if (completedIntent.state === "failed") {
console.error("Order failed:", completedIntent.failureReason);
}
留言