Python电报机器人ForceReply回调 [英] python telegram bot ForceReply callback

查看:34
本文介绍了Python电报机器人ForceReply回调的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我目前正在开发一个带有python-Telegram-bot的电报机器人。我希望能够收到这条回复给ForceReply的消息。预期流程如下:

  1. 用户发送/START命令
  2. Bot发送一条消息,其中包含一些信息。该消息与ForceReply链接
  3. 用户回复邮件
  4. 处理和操作邮件。

如何才能达到预期效果?谢谢

initial_message = "Hi... Please reply to this message to proceed to the next step..."

def start (update: Update, context: CallbackContext):
    chat_id = update.message.chat_id
    print(update.message.from_user.username)
    context.bot.send_message(chat_id=chat_id, text=initial_message, reply_markup=ForceReply())

推荐答案

要能够处理ForceReply(),您必须实现ConversationHandler。一旦用户回复ForceReply,使用ConversationHandler,您就可以处理他/她的回复。这是怎么做的:

END = ConversationHandler.END
NEXTSTEP = range (1)

initial_message = "Hi... Please reply to this message to proceed to the next step..."
def start (update, context):
    chat_id = update.message.chat_id
    print(update.message.from_user.username)
    context.bot.send_message(chat_id=chat_id,
                             text=initial_message,
                             reply_markup=ForceReply())

    return NEXTSTEP

def nextstep (update, context):

    chat_id = update.message.chat_id
    ##user reply will be assigned to replied variable below
    replied = update.message.text
    print(replied)

    return END

def main():
    ##handler start
    start_handler = ConversationHandler(
        entry_points = [CommandHandler('start', start)],
        states = {
            NEXTSTEP: [MessageHandler(Filters.text & ~Filters.command, nextstep)]},
        fallbacks = [CommandHandler('cancel', callback = functions.cancel)])
    dp.add_handler(start_handler)

这篇关于Python电报机器人ForceReply回调的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆