2018-12-26 02:56:50 +01:00
|
|
|
---
|
|
|
|
title: messages.setBotPrecheckoutResults
|
|
|
|
description: Bots only: set precheckout results
|
|
|
|
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
|
|
|
|
---
|
|
|
|
# Method: messages.setBotPrecheckoutResults
|
|
|
|
[Back to methods index](index.md)
|
|
|
|
|
|
|
|
|
|
|
|
Bots only: set precheckout results
|
|
|
|
|
|
|
|
### Parameters:
|
|
|
|
|
|
|
|
| Name | Type | Description | Required |
|
|
|
|
|----------|---------------|-------------|----------|
|
|
|
|
|success|[Bool](../types/Bool.md) | Success? | Optional|
|
|
|
|
|query\_id|[long](../types/long.md) | Query ID | Yes|
|
|
|
|
|error|[string](../types/string.md) | Error | Optional|
|
|
|
|
|
|
|
|
|
|
|
|
### Return type: [Bool](../types/Bool.md)
|
|
|
|
|
|
|
|
### Can bots use this method: **YES**
|
|
|
|
|
|
|
|
|
2019-06-02 13:49:54 +02:00
|
|
|
### MadelineProto Example ([now async for huge speed and parallelism!](https://docs.madelineproto.xyz/docs/ASYNC.html)):
|
2018-12-26 02:56:50 +01:00
|
|
|
|
|
|
|
|
|
|
|
```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();
|
|
|
|
|
|
|
|
$Bool = $MadelineProto->messages->setBotPrecheckoutResults(['success' => Bool, 'query_id' => long, 'error' => 'string', ]);
|
|
|
|
```
|
|
|
|
|
|
|
|
Or, if you're into Lua:
|
|
|
|
|
|
|
|
```lua
|
|
|
|
Bool = messages.setBotPrecheckoutResults({success=Bool, query_id=long, error='string', })
|
|
|
|
```
|
|
|
|
|
2019-09-02 17:41:28 +02:00
|
|
|
### Errors
|
2018-12-26 02:56:50 +01:00
|
|
|
|
2019-09-02 17:41:28 +02:00
|
|
|
| Code | Type | Description |
|
|
|
|
|------|----------|---------------|
|
|
|
|
|400|ERROR_TEXT_EMPTY|The provided error message is empty|
|
2018-12-26 02:56:50 +01:00
|
|
|
|
|
|
|
|