【发布时间】:2020-09-24 23:27:55
【问题描述】:
我最近使用 pyTelegramBotAPI (telebot) 创建了一个简单的电报机器人。
我添加了一个消息处理程序,它应该处理 每条 消息,包括新用户加入时出现在组中的消息,它们仍然是 Message 对象和非空 new_chat_members 属性。
import telebot
bot = telebot.TeleBot(TOKEN)
[...]
@bot.message_handler(func=lambda m: True)
def foo(message):
bot.send_message(message.chat.id,"I got the message")
bot.polling()
即便如此,当我添加新用户时,机器人不会回复“我收到消息”字符串,尽管它会捕获其他消息。
为什么会这样?这是消息处理程序的问题吗?是否有更通用的处理程序可以确保捕获每个更新?
谢谢
【问题讨论】:
标签: python telegram telegram-bot py-telegram-bot-api