7

我对 Telegram Bot Api 和“ReplyKeyboard”有疑问。我正在使用 Python 2.7 并发送发布请求:

TelegramAPI.post(TELEGRAM_URL + "sendMessage", data=dict(chat_id=CHAT_ID, text="", keyboard={'keyboard': keyboard, 'one_time_keyboard': False, 'resize_keyboard': True})

这种格式的键盘:

[["A button"], ["B button"]]

但是在 Telegram 中我看不到键盘。可能是什么问题?

4

1 回答 1

7

根据Bot API 文档,自定义键盘需要一个reply_markup参数,其值是键盘的 JSON 序列化规范。假设您的TelegramAPI.post()函数没有为您进行 JSON 序列化,我会尝试以下操作:

import json

json_keyboard = json.dumps({'keyboard': [["A button"], ["B button"]], 
                            'one_time_keyboard': False, 
                            'resize_keyboard': True})

TelegramAPI.post(TELEGRAM_URL + "sendMessage", 
                 data=dict(chat_id=CHAT_ID, 
                           text="Has to be non-empty", 
                           reply_markup=json_keyboard))

请注意,text它必须是非空的。

于 2015-12-17T05:39:02.960 回答