我想开发一个Telegram机器人,它可以用作书签系统。它应该处理回复其他消息的命令。实例:
我使用python-telegram-bot
进行开发,看来没有办法看到/important
回复的消息。我找到了Update.message.reply_to_message
对象,该对象仅在用户回复机器人自身的消息时才起作用。
def important_handler(update: Update, context: CallbackContext):
reply_to_message = update.message.reply_to_message
if reply_to_message is None:
logger.error('reply_to_message is None. But it shouldn\'t.')
update.message.reply_text('There is no message attached. Try again.')
return
# ... business logic
是否有办法为所有答复获取reply_to_message
属性(或替代方法)?感谢您的建议;)
答案 0 :(得分:1)
我遇到了同样的问题。它仅在用户回复机器人时才起作用。我的问题是机器人启用了 Privacy Mode。一旦我通过 /setprivacy
使用 Botfather 禁用它,然后它就起作用了。