1

我最近使用 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()

即便如此,当我添加新用户时,机器人不会回复“我收到消息”字符串,尽管它确实会捕获其他消息。

为什么会这样?这是消息处理程序的问题吗?是否有更通用的处理程序可以确保捕获每个更新?

谢谢

4

1 回答 1

3

您应该将“ new_chat_members”指定为content-types.

这是一个欢迎新用户的示例工作片段:

import telebot
bot = telebot.TeleBot(TOKEN)

@bot.message_handler(content_types=[
    "new_chat_members"
])
def foo(message):
    bot.reply_to(message, "welcome")

bot.polling()
于 2020-06-05T19:35:38.993 回答