Open bienpx224 opened 4 months ago
Hi, thanks for opening the issue
Looks like already implemented but not published yet. Currently you can use like this for processing the refund.
this.bot.onText(/^\/refund(\s)(.*)/, async (msg, match) => {
console.log("refund", msg, match);
const form = {
user_id: msg.from.id,
telegram_payment_charge_id: match[2]
}
// @ts-ignore
const refund = await this.bot._request('refundStarPayment', { form });
this.bot.sendMessage(msg.chat.id, `your payment has been refunded`);
});
I'm using "node-telegram-bot-api": "^0.66.0"
The TelegramBot don't have refundStarPayment method. How could I implement refund function in Telegram Bot.