MadelineProtoDocs/old_docs/API_docs_v104/methods/stickers_changeStickerPosition.md
2019-09-02 17:41:28 +02:00

1.5 KiB

title description image
stickers.changeStickerPosition Change sticker position in photo https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png

Method: stickers.changeStickerPosition

Back to methods index

Change sticker position in photo

Parameters:

Name Type Description Required
sticker MessageMedia, Update, Message or InputDocument The sticker Optional
position int New position Yes

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->changeStickerPosition(['sticker' => InputDocument, 'position' => int, ]);

Or, if you're into Lua:

messages_StickerSet = stickers.changeStickerPosition({sticker=InputDocument, position=int, })

Errors

Code Type Description
400 BOT_MISSING This method can only be run by a bot
400 STICKER_INVALID The provided sticker is invalid