MadelineProtoDocs/old_docs/API_docs_v30/methods/messages.getStatsURL.md

1.4 KiB

title description image redirect_from
messages.getStatsURL Returns URL with the chat statistics. Currently this method can be used only for channels https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png /API_docs/methods/messages_getStatsURL.html

Method: messages.getStatsURL

Back to methods index

Returns URL with the chat statistics. Currently this method can be used only for channels

Parameters:

Name Type Description Required
peer Username, chat ID, Update, Message or InputPeer Chat identifier Optional

Return type: StatsURL

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

$StatsURL = $MadelineProto->messages->getStatsURL(['peer' => InputPeer, ]);

Or, if you're into Lua:

StatsURL = messages.getStatsURL({peer=InputPeer, })

Errors

Code Type Description
400 PEER_ID_INVALID The provided peer id is invalid