I'm trying to create a custom keyboard with telegram in order to have a simple way to do more action.
Like this (detail: https://core.telegram.org/bots#keyboards):
In detail if I use this link to send a message all works fine:
Code: Select all
https://api.telegram.org/botMyToken/sendMessage?chat_id=myId&text=testCode: Select all
https://api.telegram.org/botMyToken/sendMessage?chat_id=myId&text=test&reply_markup={"keyboard":[[{%20text:%20"Si"%20}]]}I tryied also with serialized JSON but the result is the same.{"ok":false,"error_code":400,"description":"Bad Request: can't parse reply keyboard markup JSON object"}
Somebody use this function in telegram?
Thanks.