MadelineProtoDocs/old_docs/API_docs_v81/methods/messages_getBotCallbackAnswer.md
2018-07-12 20:24:55 +02:00

2.1 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

Back to methods index

Get the callback answer of a bot (after clicking a button)

Parameters:

Name Type Required Description
game Bool Optional Is this a game?
peer Username, chat ID, Update, Message or InputPeer Optional The chat
msg_id int Yes The message ID
data bytes Optional The data to send to the bot

Return type: messages_BotCallbackAnswer

Can bots use this method: NO

MadelineProto Example:

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', ]);

PWRTelegram HTTP API example (NOT FOR MadelineProto):

As a user:

POST/GET to https://api.pwrtelegram.xyz/userTOKEN/messages.getBotCallbackAnswer

Parameters:

game - Json encoded Bool

peer - Json encoded InputPeer

msg_id - Json encoded int

data - Json encoded bytes

Or, if you're into Lua:

messages_BotCallbackAnswer = messages.getBotCallbackAnswer({game=Bool, 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