1.4 KiB
1.4 KiB
title: messages.setBotPrecheckoutResults
description: Bots only: set precheckout results
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
Method: messages.setBotPrecheckoutResults
Bots only: set precheckout results
Parameters:
Name | Type | Description | Required |
---|---|---|---|
success | Bool | Success? | Optional |
query_id | long | Query ID | Yes |
error | string | Error | Optional |
Return type: Bool
Can bots use this method: YES
MadelineProto Example (now async!):
if (!file_exists('madeline.php')) {
copy('https://phar.madelineproto.xyz/madeline.php', 'madeline.php');
}
define('MADELINE_BRANCH', '');
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:
Bool = messages.setBotPrecheckoutResults({success=Bool, query_id=long, error='string', })
Errors this method can return:
Error | Description |
---|---|
ERROR_TEXT_EMPTY | The provided error message is empty |