Hi, help me to make such a keyboard
ReplyKeyboardMarkup in Telegram
DanielBeckett
(Daniel Beckett)
#2
It looks like that is using Telegram’s Inline Keyboard. You can use our Make a Custom Request to add this to your bot, here’s some sample code to help you out:
{
"chat_id": "{{bot_new_message.channel_id}}",
"text": "Hello World",
"reply_markup": {
"inline_keyboard": [
[{
"text": "test2",
"switch_inline_query": "chat"
}],
[{
"text": "test3",
"url": "https://community.flowxo.com/t/telegram-inline-button-in-robots/1247/4"
}]
]
}
}