Hi there! It’s understandable how to set a keyboard in fixed mode, but how can I set an inline keyboard in expression mode?
I tried put the code
{
"inlineKeyboard": {
"rows": [
{
"row": {
"buttons": [
{
"text": "Text one",
"additionalFields": {
"callback_data": "callback_one"
}
},
{
"text": "Text two",
"additionalFields": {
"callback_data": "callback_two"
}
}
]
}
},
{
"row": {
"buttons": [
{
"text": "Text three",
"additionalFields": {
"callback_data": "callback_three"
}
},
{
"text": "Text four",
"additionalFields": {
"callback_data": "callback_four"
}
}
]
}
}
]
}
}
into input of Reply Markup, but doesn’t happen.
