如何让机器人知道电报频道帖子中留下了反应表情? telebot python

0 投票
0 回答
16 浏览
提问于 2025-04-12 06:04

我需要让这个机器人明白用户在帖子中留下了什么反应,并在控制台显示他们给了什么类型的反应,比如心形、点赞、点踩等。我希望这个功能能通过Python的telebot库来实现,但我完全不明白该怎么做,请帮帮我。

我尝试从消息中读取数据,像是“message.reaction”,但是出现了错误,提示说没有“reaction”这个东西。

import telebot

bot = telebot.TeleBot('token')


@bot.message_handler(func=lambda message: True)
    def handle_reaction(message):
        print(message.reaction)


bot.polling()

AttributeError: 'Message' object has no attribute 'reaction'. Did you mean: 'caption'?

0 个回答

暂无回答

撰写回答