stickers.changeStickerPosition
Changes the absolute position of a sticker in the set to which it belongs; for bots only. The sticker set must have been created by the bot
Example
const {Api, TelegramClient} = require('telegram');
const {StringSession} = require('telegram/sessions');
const session = new StringSession('');
const client = new TelegramClient(session, apiId, apiHash, {});
(async function run() {
const result = await client.invoke(new Api.stickers.changeStickerPosition({
sticker: new Api.InputDocument({...}),
position: 3575070,
}));
console.log(result); // prints the result
})();
TL schema
messages.stickerSet#b60a24a6 set:StickerSet packs:Vector<StickerPack> documents:Vector<Document> = messages.StickerSet;
---functions---
stickers.changeStickerPosition#ffb6d4ca sticker:InputDocument position:int = messages.StickerSet;
Parameters
Name
Type
Description
Result
Possible errors
Code
Type
Description
400
BOT_MISSING
This method can only be run by a bot
400
STICKER_INVALID
The provided sticker is invalid
Can bots use this methd ?
yes
Related pages
Last updated
Was this helpful?