Method: bots.checkDownloadFileParams
Check if a mini app can request the download of a specific file: called when handling web_app_request_file_download events »
Parameters:
Name | Type | Description | Required |
---|---|---|---|
bot | Username, chat ID, Update, Message or InputUser | The bot that owns the mini app that requested the download | Optional |
file_name | string | The filename from the web_app_request_file_download event » | Optional |
url | string | The 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', );