เติมเงิน Truewallet ด้วยซองอั่งเปา
- ⚡ เติมลิ้งอังเปาประสิทธิภาพสูงด้วยความเร็วของ petitio
- 📦 เบาดั่งขนนก(526 bytes)
- ✔️ ฟีเจอร์ครบรองรับทั้งโค๊ดอังเปาและ URL
- 🔒 มีระบบป้องกันการ inject ในตัว
npm i @fortune-inc/tw-voucher
ตัวอย่างการเติมด้วยโค๊ด
const twvoucher = require('@fortune-inc/tw-voucher');
twvoucher('เบอร์โทรศัพท์', 'xxxxhFog10Ijbmg1c').then(redeemed => {
console.log(`redeem ซอง ${redeemed.code} ของ ${redeemed.owner_full_name} จำนวน ${redeemed.amount} บาทแล้ว`)
}).catch(err => {
console.error('invaild voucher code')
})
ตัวอย่างการเติมด้วย URL
const twvoucher = require('@fortune-inc/tw-voucher');
twvoucher('เบอร์โทรศัพท์', 'https://gift.truemoney.com/campaign/?v=xxxxfhFog10Ijbmg1c').then(redeemed => {
console.log(`redeem ซอง ${redeemed.code} ของ ${redeemed.owner_full_name} จำนวน ${redeemed.amount} บาทแล้ว`)
}).catch(err => {
console.error('invaild voucher code')
})