2.1 KiB
2.1 KiB
title | description | image | redirect_from |
---|---|---|---|
messages.getBotCallbackAnswer | Press an inline callback button and get a callback answer from the bot | https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png | /API_docs/methods/messages_getBotCallbackAnswer.html |
Method: messages.getBotCallbackAnswer
Press an inline callback button and get a callback answer from the bot
Parameters:
Name | Type | Description | Required |
---|---|---|---|
game | Bool | Whether this is a "play game" button | Optional |
peer | Username, chat ID, Update, Message or InputPeer | Where was the inline keyboard sent | Optional |
msg_id | int | ID of the Message with the inline keyboard | Yes |
data | bytes | Callback data | 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 | CHANNEL_PRIVATE | You haven't joined this channel/supergroup |
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 |
406 | AUTH_KEY_DUPLICATED | An auth key with the same ID was already generated |
-503 | Timeout | Timeout while fetching data |