Inline buttons problem

(Govher Abbas Zade) #1

Hi. İ set inline button it is working on the moile phones but dont work in web telegram. what can Id do about it?

{
“text”: “Seçim edin.”,
“reply_markup”: {
“inline_keyboard”: [
[{
“text”: ":computer: Techniques ",
“callback_data”:“stexnik”
}],
[{
“text”: " :couch_and_lamp: furniture ",
“callback_data”:“sfurt”
}],
[{
“text”: " :iphone: Mobil phone ",
“callback_data”:“smob”
}]
]
}
}

method data – sendMessage

(Daniel Beckett) #2

Hi @Govher_Abbas-zade

What are you expecting on the web version? Calls work from the mobile device as they’re able to dial out once the link is clicked.

(Govher Abbas Zade) #3

yes. none of the web version of telegram and test console of flowxo. only inline buttons seen in the mobile phones

(Daniel Beckett) #4

It won’t work on the test console as the custom request is specific to Telegram.

Inline buttons will still also show on the Web Telegram but call buttons won’t as they’re specific to mobile devices.

Edit: Sorry, I see that you are referring to callback data rather than a call button. Callback data isn’t picked up by the bot, only the text / message that is sent when the button is selected.