python-telegram-bot 8 没有看到其他机器人消息

python-telegram-bot 8 not seeing other bots messages

我正在使用 python-telegram-bot 8,我的 bot 不处理组中其他 bot 发送的消息

与其他用户(不是机器人)工作正常

为什么我的机器人看不到其他机器人消息?

def main():

    updater = Updater(bot_token)
    dp = updater.dispatcher

    dp.add_handler(MessageHandler(Filters.text,check_msg))
    dp.add_handler(MessageHandler(Filters.video | Filters.photo | Filters.document, check_file))
    dp.add_handler(MessageHandler(Filters.sticker, check_sticker))

根据 Bot FAQ,无论模式如何,机器人都无法看到来自其他机器人的消息。

唯一的例外是频道,如果您的机器人是频道管理员,他们可以看到任何消息。