2018-04-01 13:19:25 +02:00
|
|
|
---
|
|
|
|
title: messages.getBotCallbackAnswer
|
|
|
|
description: Get the callback answer of a bot (after clicking a button)
|
2018-04-04 19:52:48 +02:00
|
|
|
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
|
2018-04-01 13:19:25 +02:00
|
|
|
---
|
2018-04-05 01:19:57 +02:00
|
|
|
# Method: messages.getBotCallbackAnswer
|
2018-04-01 13:19:25 +02:00
|
|
|
[Back to methods index](index.md)
|
|
|
|
|
|
|
|
|
|
|
|
Get the callback answer of a bot (after clicking a button)
|
|
|
|
|
|
|
|
### Parameters:
|
|
|
|
|
2018-08-29 11:18:25 +02:00
|
|
|
| Name | Type | Description | Required |
|
|
|
|
|----------|---------------|-------------|----------|
|
|
|
|
|game|[Bool](../types/Bool.md) | Is this a game? | Optional|
|
|
|
|
|peer|[Username, chat ID, Update, Message or InputPeer](../types/InputPeer.md) | The chat | Optional|
|
|
|
|
|msg\_id|[int](../types/int.md) | The message ID | Yes|
|
|
|
|
|data|[bytes](../types/bytes.md) | The data to send to the bot | Optional|
|
2018-04-01 13:19:25 +02:00
|
|
|
|
|
|
|
|
|
|
|
### Return type: [messages\_BotCallbackAnswer](../types/messages_BotCallbackAnswer.md)
|
|
|
|
|
|
|
|
### 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](https://pwrtelegram.xyz) 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|
|
|
|
|
|
|
|
|
|