2017-08-08 62 views
1

我添加了bot作为管理员的频道,但我在bot.on('message'回调中没有消息。我对群组添加bot隐私功能没有任何问题。如何获得即将到来的频道消息?电报机器人是否可以从通道获取消息?

const TelegramBot = require('node-telegram-bot-api'); 
let bot = new TelegramBot('xxxxxxxxxxxxxxxxxx', {polling: true}); 

bot.on('message', (msg) => { 
    console.log(`${msg.from.username}: ${msg.text} ${msg.location}`); 
}); 

回答

相关问题