Method: contacts.setBlocked
Replace the contents of an entire blocklist, see here for more info ».
Parameters:
Name | Type | Description | Required |
---|---|---|---|
my_stories_from | Bool | Whether to edit the story blocklist; if not set, will edit the main blocklist. See here » for differences between the two. | Optional |
id | Array of Username, chat ID, Update, Message or InputPeer | Full content of the blocklist. | Yes |
limit | int | Maximum number of results to return, see pagination | Optional |
Return type: Bool
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();
$Bool = $MadelineProto->contacts->setBlocked(my_stories_from: $Bool, id: [$InputPeer, $InputPeer], limit: $int, );