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}`);
});