MadelineProtoDocs/old_docs/API_docs_v82/methods/messages_getBotCallbackAnswer.md

80 lines
2.1 KiB
Markdown
Raw Normal View History

2018-12-26 02:56:50 +01:00
---
title: messages.getBotCallbackAnswer
description: Get the callback answer of a bot (after clicking a button)
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Method: messages.getBotCallbackAnswer
[Back to methods index](index.md)
Get the callback answer of a bot (after clicking a button)
### Parameters:
| 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|
### Return type: [messages\_BotCallbackAnswer](../types/messages_BotCallbackAnswer.md)
### Can bots use this method: **NO**
### MadelineProto Example:
```php
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:
```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|