Python电报机器人ForceReply回调

本教程将介绍Python电报机器人ForceReply回调的处理方法,这篇教程是从别的地方看到的,然后加了一些国外程序员的疑问与解答,希望能对你有所帮助,好了,下面开始学习吧。

Python电报机器人ForceReply回调 教程 第1张

问题描述

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

    用户发送/START命令

    Bot发送一条消息,其中包含一些信息。该消息与ForceReply链接

    用户回复邮件

    处理和操作邮件。

怎么才能达到预期效果?谢谢

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回调的教程就到这里就结束了,希望趣模板源码网找到的这篇技术文章能帮助到大家,更多技术教程可以在站内搜索。