東方美人茶




❤️喜歡泡茶🍵的朋友有福啦~
小俞在賣~杉林溪茶
茶葉是直接跟產地茶廠訂購
品質好
喜歡泡茶的朋友
歡迎索取茶版🍵試泡
☎️0933-065808 line ID:nectw721
TEL:(02)-24978169
日月潭蘊紅玉
溫潤香好落喉
日出東方
東方藏玉
唯我不敗
東方不敗-專用茶
東方美人茶

好茶日出東方!
東方美人茶
四季如春氣候好,
出名東方美人茶,
行銷世界人呵咾!

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);
}