MadelineProto/old_docs/API_docs_v71/methods/stickers_changeStickerPosition.md

84 lines
2.0 KiB
Markdown
Raw Normal View History

2017-10-14 11:50:46 +02:00
---
title: stickers.changeStickerPosition
2018-03-23 16:23:49 +01:00
description: Change sticker position in photo
2017-10-14 11:50:46 +02:00
---
## Method: stickers.changeStickerPosition
[Back to methods index](index.md)
2018-03-23 16:23:49 +01:00
Change sticker position in photo
2017-10-14 11:50:46 +02:00
### Parameters:
2018-03-23 16:23:49 +01:00
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|sticker|[MessageMedia, Update, Message or InputDocument](../types/InputDocument.md) | Optional|The sticker|
|position|[CLICK ME int](../types/int.md) | Yes|New position|
2017-10-14 11:50:46 +02:00
### Return type: [messages\_StickerSet](../types/messages_StickerSet.md)
### 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|
2018-03-20 19:57:36 +01:00
### MadelineProto Example:
2017-10-14 11:50:46 +02:00
```
if (!file_exists('madeline.php')) {
copy('https://phar.madelineproto.xyz/madeline.php', 'madeline.php');
2017-10-14 11:50:46 +02:00
}
include 'madeline.php';
// !!! This API id/API hash combination will not work !!!
// !!! You must get your own @ my.telegram.org !!!
$api_id = 0;
$api_hash = '';
$MadelineProto = new \danog\MadelineProto\API('session.madeline', ['app_info' => ['api_id' => $api_id, 'api_hash' => $api_hash]]);
$MadelineProto->start();
2017-10-14 11:50:46 +02:00
$messages_StickerSet = $MadelineProto->stickers->changeStickerPosition(['sticker' => InputDocument, 'position' => int, ]);
```
2018-03-20 19:57:36 +01:00
### [PWRTelegram HTTP API](https://pwrtelegram.xyz) example (NOT FOR MadelineProto):
2017-10-14 11:50:46 +02:00
### 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, })
```