如何在 python-telegram-bot wrapper 中使用 ForceReply
How to use ForceReply in python-telegram-bot wrapper
我已经尝试了一段时间,阅读 python-telegram-bot wrapper APIpython-telegram-bot wrapper, telegram bot API, code snippets etc, but my lack of understanding(My programming knowledge is selective google copy-pastes) does not permit me to successfully implement the ForceReply option. (ForceReply
基本上我正在尝试的是当用户输入 /sett 时机器人说 "Enter No." 并强制用户回复该消息。
抱歉,如果我遗漏了一些明显的东西。
bot.send_message(chat_id, 'Enter No.', reply_markup=ForceReply())
@bot.message_handler(content_types=['text'])
def but(message):
markup = types.ForceReply(selective=False)
bot.send_message(message.chat.id, "Send me another word:", reply_markup=markup)
我已经尝试了一段时间,阅读 python-telegram-bot wrapper APIpython-telegram-bot wrapper, telegram bot API, code snippets etc, but my lack of understanding(My programming knowledge is selective google copy-pastes) does not permit me to successfully implement the ForceReply option. (ForceReply
基本上我正在尝试的是当用户输入 /sett 时机器人说 "Enter No." 并强制用户回复该消息。
抱歉,如果我遗漏了一些明显的东西。
bot.send_message(chat_id, 'Enter No.', reply_markup=ForceReply())
@bot.message_handler(content_types=['text'])
def but(message):
markup = types.ForceReply(selective=False)
bot.send_message(message.chat.id, "Send me another word:", reply_markup=markup)