node-telegram-bot-api icon indicating copy to clipboard operation
node-telegram-bot-api copied to clipboard

Telegram Bot API for NodeJS

Results 179 node-telegram-bot-api issues
Sort by recently updated
recently updated
newest added

> Bug Report I have read: * [Usage information](https://github.com/yagop/node-telegram-bot-api/tree/master/doc/usage.md) * [Help information](https://github.com/yagop/node-telegram-bot-api/tree/master/doc/help.md) I am using the latest version of the library. ### Expected Behavior Pass the stream with gif data...

The issue actually occurred in https://github.com/windkh/node-red-contrib-telegrambot and has been reported in https://github.com/windkh/node-red-contrib-telegrambot/issues/172 but connection management is not actually done there, so I think the underlying problem is somewhere in here....

> Bug Report I have read: * [Usage information](https://github.com/yagop/node-telegram-bot-api/tree/master/doc/usage.md) * [Help information](https://github.com/yagop/node-telegram-bot-api/tree/master/doc/help.md) I am using the latest version of the library. ### Expected Behavior ```js const bot = new TelegramBot(Env.TELEGRAM_BOT_TOKEN,...

My bot gets the message from the user. After getting the message, bot.js will call scan.js. Scan.js is responsible for processing the query transaction. When scan.js is executed, it will...

let code = 111 let newFile = JSON.parse( Bot.getFileStream(body.message.reply_to_message.document.file_id ) ) console.log (newFile) let oldFile = JSON.parse( fs.readFileSync( 'server/history/'+code+'.json' , 'utf8')) let merged = { ...newFile , ...oldFile } fs.writeFileSync(...

error: { Error: socket hang up at createHangUpError (_http_client.js:254:15) at TLSSocket.socketOnEnd (_http_client.js:346:23) at emitNone (events.js:91:20) at TLSSocket.emit (events.js:185:7) at endReadableNT (_stream_readable.js:974:12) at _combinedTickCallback (internal/process/next_tick.js:80:11) at process._tickCallback (internal/process/next_tick.js:104:9) code: 'ECONNRESET' }...

Hello everyone, I'm working with this library and I'm quite satisfied. Unfortunately I was looking for an inline calendar and I only found such for the telegraf framework, Does anybody...

hi when I do startPolling after the time I did stopPolling, the message events will be executed twice in each request. how can I solve it. ``` function(detail){ this.username =...

This library has some deprecated libraries e.g. `request`. Node.js has also progressed since when the core of this library was written; It has support for native promises/Async await e.t.c. Some...

enhancement
discussion

Hello, I need the full example of **bot.sendInvoice**, examples from core.telegram and so on are not **understandable** for me. If you worked with bot.sendInvoice or with all functions of **Invoice**,...