крутится на моем пк, может протечь в webapp?
import TelegramBot from 'node-telegram-bot-api'
const token = 'token'
const bot = new TelegramBot(token, {polling: true})
const webAppUrl = 'https://url.app'
bot.on('message', async (msg) => {
const chatId = msg.chat.id
const text = msg.text
if (text === '/start') {
await bot.sendMessage(chatId, 'qq', {
reply_markup: {
keyboard: [
[{text: 'Qqq', web_app: {url: webAppUrl}}]
]
}
})
}
})
Как запускается index.js? Просто node index.js?
Обсуждают сегодня