如何在python-telegram-bot包装器

时间:2018-03-08 20:00:59

标签: python telegram python-telegram-bot

我已经尝试了很长一段时间,阅读了python-telegram-bot包装器API python-telegram-bot wrapper,电报机器人API,代码片段等,但我缺乏理解(我的编程知识是选择性google copy-paste )不允许我成功实现ForceReply选项。 (ForceReply

基本上我正在尝试的是当用户键入/设置机器人时说“输入否”。并强制用户回复该消息。

很抱歉,如果我遗漏了一些明显的东西。

2 个答案:

答案 0 :(得分:0)

bot.send_message(chat_id, 'Enter No.', reply_markup=ForceReply())

答案 1 :(得分:0)

@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)