Link Search Menu Expand Document

Method: bots.checkDownloadFileParams

Back to methods index

Check if a mini app can request the download of a specific file: called when handling web_app_request_file_download events »

Parameters:

NameTypeDescriptionRequired
botUsername, chat ID, Update, Message or InputUserThe bot that owns the mini app that requested the downloadOptional
file_namestringThe filename from the web_app_request_file_download event »Optional
urlstringThe url from the web_app_request_file_download event »Optional

Return type: Bool

Can userbots use this method: YES

Can bots use this method: NO

MadelineProto Example (now async for huge speed and parallelism!):

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->bots->checkDownloadFileParams(bot: $InputUser, file_name: 'string', url: 'string', );