我将bot添加到渠道管理员但我在bot.on('message'
回调中没有消息。我没有问题,群组添加僵尸隐私已禁用。如何获得即将发布的频道消息?
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}`);
});