正在寻找json有效负载来创建inline_keyboard
,并且在同一行上有多个InlineKeyboardButton
。
以下代码有效,但每行创建1个按钮。
{
"telegram": {
"text": "Pick a color",
"reply_markup": {
"inline_keyboard": [
[
{
"text": "Red",
"callback_data": "Red"
}
],
[
{
"text": "Pink",
"callback_data": "Pink"
}
]
]
}
}
}
Dialogflow中的电报卡能够创建多个内联按钮,如下所示:
https://core.telegram.org/file/811140217/1/NkRCCLeQZVc/17a804837802700ea4
答案 0 :(得分:0)
function toogleListTypeDemande(element) {
$(this).closest(".div").find(".list-type-demandes").toggle();
}
consists of rows,每行包含buttons。
因此,只需将按钮添加到第一行(在这种情况下为inline_keyboard
和Blue
),就这样:
Green