按下电报机器人键盘的按钮,但不发送消息

时间:2020-06-20 10:08:18

标签: python python-3.x telegram telegram-bot python-telegram-bot

我希望用户按下电报机器人键盘的按钮,但不发送消息。该消息将出现在消息框中供用户进行进一步编辑,但不会发送出去。目的是产生一个模板消息供用户进行进一步的编辑。

一个简单的键盘代码示例在这里。

https://github.com/python-telegram-bot/python-telegram-bot/blob/master/examples/inlinekeyboard.py

我愿意使用除嵌入式键盘之外的任何一种键盘。目的是为用户提供模板消息。

我正在使用python telegram bot v12.7和python 3.7。

1 个答案:

答案 0 :(得分:1)

我收集了您想要为用户预填充文本字段的信息, 如stackoverflow所述,switch_inline_query_current_chat可以实现。您必须在Botfather中打开inline_mode才能正常工作。另外,将在用户@botusername的文本字段中添加

可以找到here

python-telegram-bot的文档