MadelineProto/old_docs/API_docs_v70/methods/stickers_changeStickerPosition.md

83 lines
1.8 KiB
Markdown
Raw Normal View History

---
title: stickers.changeStickerPosition
description: stickers.changeStickerPosition parameters, return type and example
---
## Method: stickers.changeStickerPosition
[Back to methods index](index.md)
### Parameters:
| Name | Type | Required |
|----------|---------------|----------|
|sticker|[InputDocument](../types/InputDocument.md) | Yes|
|position|[int](../types/int.md) | Yes|
### Return type: [messages\_StickerSet](../types/messages_StickerSet.md)
2017-08-28 12:44:50 +02:00
### Can bots use this method: **YES**
2017-11-03 17:39:50 +01:00
### Errors this method can return:
| Error | Description |
|----------|---------------|
|BOT_MISSING|This method can only be run by a bot|
|STICKER_INVALID|The provided sticker is invalid|
### Example:
```
$MadelineProto = new \danog\MadelineProto\API();
if (isset($token)) { // Login as a bot
$MadelineProto->bot_login($token);
}
if (isset($number)) { // Login as a user
$sentCode = $MadelineProto->phone_login($number);
echo 'Enter the code you received: ';
$code = '';
for ($x = 0; $x < $sentCode['type']['length']; $x++) {
$code .= fgetc(STDIN);
}
$MadelineProto->complete_phone_login($code);
}
$messages_StickerSet = $MadelineProto->stickers->changeStickerPosition(['sticker' => InputDocument, 'position' => int, ]);
```
Or, if you're using the [PWRTelegram HTTP API](https://pwrtelegram.xyz):
### As a bot:
POST/GET to `https://api.pwrtelegram.xyz/botTOKEN/madeline`
Parameters:
* method - stickers.changeStickerPosition
* params - `{"sticker": InputDocument, "position": int, }`
### As a user:
POST/GET to `https://api.pwrtelegram.xyz/userTOKEN/stickers.changeStickerPosition`
Parameters:
sticker - Json encoded InputDocument
position - Json encoded int
Or, if you're into Lua:
```
messages_StickerSet = stickers.changeStickerPosition({sticker=InputDocument, position=int, })
```