1
0
mirror of https://github.com/danog/MadelineProto.git synced 2024-12-11 08:42:03 +01:00
MadelineProto/old_docs/API_docs_v72/methods/messages_setBotPrecheckoutResults.md

81 lines
1.7 KiB
Markdown
Raw Normal View History

2017-11-15 13:41:58 +01:00
---
title: messages.setBotPrecheckoutResults
2018-03-23 16:23:49 +01:00
description: Bots only: set precheckout results
2017-11-15 13:41:58 +01:00
---
## Method: messages.setBotPrecheckoutResults
[Back to methods index](index.md)
2018-03-23 16:23:49 +01:00
Bots only: set precheckout results
2017-11-15 13:41:58 +01:00
### Parameters:
2018-03-23 16:23:49 +01:00
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|success|[CLICK ME Bool](../types/Bool.md) | Optional|Success?|
|query\_id|[CLICK ME long](../types/long.md) | Yes|Query ID|
|error|[CLICK ME string](../types/string.md) | Optional|Error|
2017-11-15 13:41:58 +01:00
### Return type: [Bool](../types/Bool.md)
### Can bots use this method: **YES**
### Errors this method can return:
| Error | Description |
|----------|---------------|
|ERROR_TEXT_EMPTY|The provided error message is empty|
2018-03-20 19:57:36 +01:00
### MadelineProto Example:
2017-11-15 13:41:58 +01:00
```
if (!file_exists('madeline.php')) {
copy('https://phar.madelineproto.xyz/madeline.php', 'madeline.php');
2017-11-15 13:41:58 +01:00
}
include 'madeline.php';
$MadelineProto = new \danog\MadelineProto\API('session.madeline');
$MadelineProto->start();
2017-11-15 13:41:58 +01:00
$Bool = $MadelineProto->messages->setBotPrecheckoutResults(['success' => Bool, 'query_id' => long, 'error' => 'string', ]);
```
2018-03-20 19:57:36 +01:00
### [PWRTelegram HTTP API](https://pwrtelegram.xyz) example (NOT FOR MadelineProto):
2017-11-15 13:41:58 +01:00
### As a bot:
POST/GET to `https://api.pwrtelegram.xyz/botTOKEN/madeline`
Parameters:
* method - messages.setBotPrecheckoutResults
* params - `{"success": Bool, "query_id": long, "error": "string", }`
### As a user:
POST/GET to `https://api.pwrtelegram.xyz/userTOKEN/messages.setBotPrecheckoutResults`
Parameters:
success - Json encoded Bool
query_id - Json encoded long
error - Json encoded string
Or, if you're into Lua:
```
Bool = messages.setBotPrecheckoutResults({success=Bool, query_id=long, error='string', })
```