MadelineProtoDocs/old_docs/API_docs_v44/methods/stickers.setStickerSetThumb.md

1.5 KiB

title description image redirect_from
stickers.setStickerSetThumb Set stickerset thumbnail https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png /API_docs/methods/stickers_setStickerSetThumb.html

Method: stickers.setStickerSetThumb

Back to methods index

Set stickerset thumbnail

Parameters:

Name Type Description Required
stickerset InputStickerSet Stickerset Optional
thumb MessageMedia, Update, Message or InputDocument Thumbnail Optional

Return type: messages.StickerSet

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();

$messages.StickerSet = $MadelineProto->stickers->setStickerSetThumb(['stickerset' => InputStickerSet, 'thumb' => InputDocument, ]);

Or, if you're into Lua:

messages.StickerSet = stickers.setStickerSetThumb({stickerset=InputStickerSet, thumb=InputDocument, })

Errors

Code Type Description
400 STICKERSET_INVALID The provided sticker set is invalid