1.2 KiB
1.2 KiB
title | description |
---|---|
messages.reorderStickerSets | Reorder sticker sets |
Method: messages.reorderStickerSets
Reorder sticker sets
Parameters:
Name | Type | Required | Description |
---|---|---|---|
masks | Bool | Optional | Reorder masks? |
order | Array of long | Yes | The order |
Return type: Bool
Can bots use this method: NO
MadelineProto Example:
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->messages->reorderStickerSets(['masks' => Bool, 'order' => [long, long], ]);
PWRTelegram HTTP API example (NOT FOR MadelineProto):
As a user:
POST/GET to https://api.pwrtelegram.xyz/userTOKEN/messages.reorderStickerSets
Parameters:
masks - Json encoded Bool
order - Json encoded array of long
Or, if you're into Lua:
Bool = messages.reorderStickerSets({masks=Bool, order={long}, })