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 |
---|---|---|---|
game | Bool | Is this a game? | Optional |
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 | Optional |
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(['game' => Bool, 'peer' => InputPeer, 'msg_id' => int, 'data' => 'bytes', ]);
Or, if you're into Lua:
messages_BotCallbackAnswer = messages.getBotCallbackAnswer({game=Bool, peer=InputPeer, msg_id=int, data='bytes', })
Errors
Code | Type | Description |
---|---|---|
400 | CHANNEL_INVALID | The provided channel is invalid |
400 | DATA_INVALID | Encrypted data invalid |
400 | MESSAGE_ID_INVALID | The provided message id is invalid |
400 | PEER_ID_INVALID | The provided peer id is invalid |
-503 | Timeout | Timeout while fetching data |