telegram-bot-client
telegram-bot-client copied to clipboard
Node.js client for the Telegram messenger Bot API
fix [network proxy issue](https://github.com/m90/telegram-bot-client/issues/15)
**My code is like:** ``` 'use strict'; const token = '122222222:SSAAADSDASDASDASDASDASASDS'; const chatid = '-456667554'; const TelegramBotClient = require('telegram-bot-client'); const client = new TelegramBotClient(token); console.log('Start send telegram message!'); client.sendMessage(chatid, 'I\'m...
Apparently Telegram adjusted their rate limiting so that 4 test suites running after another on Travis are able to hit the ceiling and fail when they shouldn't: https://travis-ci.org/m90/telegram-bot-client/builds/375016781 Throttle the...
Some methods that are available on the official telegram page such as `pinChatMessage`, `deleteMessage`... are not found on the client object provided.