MadelineProto/old_docs/API_docs_v66/methods/messages_sendInlineBotResult.md

94 lines
2.6 KiB
Markdown
Raw Normal View History

2017-06-30 15:36:33 +02:00
---
title: messages.sendInlineBotResult
2018-03-23 16:23:49 +01:00
description: Send a received bot result to the chat
2017-06-30 15:36:33 +02:00
---
## Method: messages.sendInlineBotResult
[Back to methods index](index.md)
2018-03-23 16:23:49 +01:00
Send a received bot result to the chat
2017-06-30 15:36:33 +02:00
### Parameters:
2018-03-23 16:23:49 +01:00
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|silent|[CLICK ME Bool](../types/Bool.md) | Optional|Disable notifications?|
|background|[CLICK ME Bool](../types/Bool.md) | Optional|Disable background notifications?|
|clear\_draft|[CLICK ME Bool](../types/Bool.md) | Optional|Clear the message draft?|
|peer|[Username, chat ID, Update, Message or InputPeer](../types/InputPeer.md) | Optional|Where to send the message|
|reply\_to\_msg\_id|[CLICK ME int](../types/int.md) | Optional|Reply to message by ID|
|query\_id|[CLICK ME long](../types/long.md) | Yes|The inline query ID|
|id|[CLICK ME string](../types/string.md) | Yes|The result ID|
2017-06-30 15:36:33 +02:00
### Return type: [Updates](../types/Updates.md)
2017-08-28 12:44:50 +02:00
### Can bots use this method: **NO**
2017-11-03 17:39:50 +01:00
### Errors this method can return:
| Error | Description |
|----------|---------------|
|INLINE_RESULT_EXPIRED|The inline query expired|
|PEER_ID_INVALID|The provided peer id is invalid|
|QUERY_ID_EMPTY|The query ID is empty|
2017-12-21 10:52:23 +01:00
|WEBPAGE_CURL_FAILED|Failure while fetching the webpage with cURL|
|WEBPAGE_MEDIA_EMPTY|Webpage media empty|
2017-11-03 17:39:50 +01:00
|CHAT_WRITE_FORBIDDEN|You can't write in this chat|
2018-03-20 19:57:36 +01:00
### MadelineProto Example:
2017-06-30 15:36:33 +02:00
```
if (!file_exists('madeline.php')) {
copy('https://phar.madelineproto.xyz/madeline.php', 'madeline.php');
2017-06-30 15:36:33 +02:00
}
include 'madeline.php';
// !!! This API id/API hash combination will not work !!!
// !!! You must get your own @ my.telegram.org !!!
$api_id = 0;
$api_hash = '';
$MadelineProto = new \danog\MadelineProto\API('session.madeline', ['app_info' => ['api_id' => $api_id, 'api_hash' => $api_hash]]);
$MadelineProto->start();
2017-06-30 15:36:33 +02:00
2017-07-23 16:33:46 +02:00
$Updates = $MadelineProto->messages->sendInlineBotResult(['silent' => Bool, 'background' => Bool, 'clear_draft' => Bool, 'peer' => InputPeer, 'reply_to_msg_id' => int, 'query_id' => long, 'id' => 'string', ]);
2017-06-30 15:36:33 +02:00
```
2018-03-20 19:57:36 +01:00
### [PWRTelegram HTTP API](https://pwrtelegram.xyz) example (NOT FOR MadelineProto):
2017-07-23 16:11:02 +02:00
2017-07-23 16:34:36 +02:00
2017-07-23 16:11:02 +02:00
### As a user:
POST/GET to `https://api.pwrtelegram.xyz/userTOKEN/messages.sendInlineBotResult`
Parameters:
silent - Json encoded Bool
2017-08-20 19:09:52 +02:00
2017-07-23 16:11:02 +02:00
background - Json encoded Bool
2017-08-20 19:09:52 +02:00
2017-07-23 16:11:02 +02:00
clear_draft - Json encoded Bool
2017-08-20 19:09:52 +02:00
2017-07-23 16:11:02 +02:00
peer - Json encoded InputPeer
2017-08-20 19:09:52 +02:00
2017-07-23 16:11:02 +02:00
reply_to_msg_id - Json encoded int
2017-08-20 19:09:52 +02:00
2017-07-23 16:11:02 +02:00
query_id - Json encoded long
2017-08-20 19:09:52 +02:00
2017-07-23 16:11:02 +02:00
id - Json encoded string
2017-07-23 16:40:54 +02:00
2017-07-23 16:11:02 +02:00
2017-08-20 19:09:52 +02:00
2017-06-30 15:36:33 +02:00
Or, if you're into Lua:
```
2017-07-23 16:33:46 +02:00
Updates = messages.sendInlineBotResult({silent=Bool, background=Bool, clear_draft=Bool, peer=InputPeer, reply_to_msg_id=int, query_id=long, id='string', })
2017-06-30 15:36:33 +02:00
```