MadelineProtoDocs/old_docs/API_docs_v44/methods/stats.getMegagroupStats.md

1.2 KiB

title description image redirect_from
stats.getMegagroupStats stats.getMegagroupStats parameters, return type and example https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png /API_docs/methods/stats_getMegagroupStats.html

Method: stats.getMegagroupStats

Back to methods index

Parameters:

Name Type Required
dark Bool Optional
channel Username, chat ID, Update, Message or InputChannel Optional

Return type: stats.MegagroupStats

Can bots use this method: YES

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();

$stats.MegagroupStats = $MadelineProto->stats->getMegagroupStats(['dark' => Bool, 'channel' => InputChannel, ]);

Or, if you're into Lua:

stats.MegagroupStats = stats.getMegagroupStats({dark=Bool, channel=InputChannel, })