1.8 KiB
1.8 KiB
title | description | image |
---|---|---|
messages.getBotCallbackAnswer | Get the callback answer of a bot (after clicking a button) | https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png |
Method: messages.getBotCallbackAnswer
Get the callback answer of a bot (after clicking a button)
Parameters:
Name | Type | Description | Required |
---|---|---|---|
peer | Username, chat ID, Update, Message or InputPeer | The chat | Optional |
msg_id | int | The message ID | Yes |
data | bytes | The data to send to the bot | Yes |
Return type: messages_BotCallbackAnswer
Can bots use this method: NO
MadelineProto Example (now async for huge speed and parallelism!):
if (!file_exists('madeline.php')) {
copy('https://phar.madelineproto.xyz/madeline.php', 'madeline.php');
}
include 'madeline.php';
$MadelineProto = new \danog\MadelineProto\API('session.madeline');
$MadelineProto->start();
$messages_BotCallbackAnswer = $MadelineProto->messages->getBotCallbackAnswer(['peer' => InputPeer, 'msg_id' => int, 'data' => 'bytes', ]);
Or, if you're into Lua:
messages_BotCallbackAnswer = messages.getBotCallbackAnswer({peer=InputPeer, msg_id=int, data='bytes', })
Errors this method can return:
Error | Description |
---|---|
CHANNEL_INVALID | The provided channel is invalid |
DATA_INVALID | Encrypted data invalid |
MESSAGE_ID_INVALID | The provided message id is invalid |
PEER_ID_INVALID | The provided peer id is invalid |
Timeout | A timeout occurred while fetching data from the bot |