Method: phone.getGroupCallChainBlocks
Fetch the blocks of a conference blockchain ».
Parameters:
| Name | Type | Description | Required |
|---|---|---|---|
| call | InputGroupCall | The conference. | Yes |
| sub_chain_id | int | Subchain ID. | Optional |
| offset | int | Offset for pagination. | Optional |
| limit | int | Maximum number of blocks to return in this call, see pagination | Optional |
Return type: Updates
Can users use this method: YES
Can bots use this method: NO
Can bots use this method over a business connection with the businessConnectionId flag: 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();
$Updates = $MadelineProto->phone->getGroupCallChainBlocks(call: $InputGroupCall, sub_chain_id: $int, offset: $int, limit: $int, );