Replymessage unavailable
const tg = window.Telegram.WebApp;
tg.expand(); // Expands the Web App
document.getElementById("donateBtn").addEventListener("click", () => {
if (tg.pay) {
tg.pay({
slug: "your-stars-donation-id", // Replace with your bot's Stars payment ID
success: (data) => {
console.log("Payment successful!", data);
alert("Thanks for your support! 🌟");
},
fail: (error) => {
console.error("Payment failed", error);
alert("Payment failed. Please try again.");
},
});
} else {
alert("Telegram payment is not supported.");
}
});