Method: messages.getExportedChatInvites
Get info about the chat invites of a specific chat
Parameters:
Name | Type | Description | Required |
---|---|---|---|
revoked | Bool | Whether to fetch revoked chat invites | Optional |
peer | Username, chat ID, Update, Message or InputPeer | Chat | Optional |
admin_id | Username, chat ID, Update, Message or InputUser | Whether to only fetch chat invites from this admin | Optional |
offset_date | int | Offsets for pagination, for more info click here | Optional |
offset_link | string | Offsets for pagination, for more info click here | Optional |
limit | int | Maximum number of results to return, see pagination | Optional |
Return type: messages.ExportedChatInvites
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();
$messages_ExportedChatInvites = $MadelineProto->messages->getExportedChatInvites(revoked: $Bool, peer: $InputPeer, admin_id: $InputUser, offset_date: $int, offset_link: 'string', limit: $int, );