Method: channels.reorderPinnedForumTopics
Reorder pinned forum topics
Parameters:
Name | Type | Description | Required |
---|---|---|---|
force | Bool | If set, topics pinned server-side but not present in the order field will be unpinned. | Optional |
channel | Username, chat ID, Update, Message or InputChannel | Supergroup ID | Optional |
order | Array of int | Topic IDs » | Yes |
Return type: Updates
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();
$Updates = $MadelineProto->channels->reorderPinnedForumTopics(force: Bool, channel: InputChannel, order: [int, int], );