Method: bots.getPopularAppBots
Fetch popular Main Mini Apps, to be used in the apps tab of global search ».
Parameters:
Name | Type | Description | Required |
---|---|---|---|
offset | string | Offset for pagination, initially an empty string, then re-use the next_offset returned by the previous query. | Optional |
limit | int | Maximum number of results to return, see pagination | Optional |
Return type: bots.PopularAppBots
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();
$bots_PopularAppBots = $MadelineProto->bots->getPopularAppBots(offset: 'string', limit: $int, );