node-telegram-bot-api
node-telegram-bot-api copied to clipboard
Telegram Bot API for NodeJS
> Question Trying to send back the photo that telegram bot has received from user but it doesn't work at first time when the user sends the same photo for...
Dear all, I received that message from botFather. So far; when I test my bot; everything seems to be working fine. Do you guys have experienced that kind of message...
> 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. node v8.11.1 ### Expected Behavior Once i get `polling_error`...
Hi, if a user write /start on my bot, so: ``` bot.on('message', function (message) { if (message.from.username == "username_not_allowed"){ // command to stop here instead of bot.onText(/^\/start,.... // exit, return,...
Question --- I created a weather forecast bot based on user's location. I use `bot.onText(/\/weather/...` to handle user's request and send a message including `reply_markup` to get user's location. Then...
For who of us who using typescript, it seems that @types project is including this project. Can you add this to the docs? https://www.npmjs.com/package/@types/node-telegram-bot-api Thanks!
Now travis-ci and appveyor builds fail with an error `Error: Provider token not supplied` @yagop should add a payment provider token to repo settings for successfull builds in CI systems
How to Check the view count of the message to know if it's seen by others and console.log that?
As a step wizard for asking users some question and options, i try to use a sample like choose series or reserve a ticket for example. ``` bot.onText(/^\/selectseries/, function(msg, match)...
> Bug Report ### Expected Behavior I wanted to use `removeTextListener` in order to remove one of my registered text listeners. ### Actual Behavior It doesn't remove the listener and...