【发布时间】:2017-08-17 23:29:32
【问题描述】:
在电报机器人中显示 inline_keyboard 的示例 json
https://core.telegram.org/bots#inline-keyboards-and-on-the-fly-updating
{
"chat_id": "123456",
"text": "Hi",
"reply_markup": {
"inline_keyboard": [[
{
"text": "A",
"callback_data": "A1"
},
{
"text": "B",
"callback_data": "C1"
}]
]
}
}
【问题讨论】:
-
这似乎不是一个实际的问题。 Here is a link on question asking that might help you
标签: json telegram-bot