MadelineProtoDocs/old_docs/API_docs_v82/methods/messages_getAttachedStickers.md
2019-03-12 13:25:41 +01:00

61 lines
1.4 KiB
Markdown

---
title: messages.getAttachedStickers
description: Get stickers attachable to images
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Method: messages.getAttachedStickers
[Back to methods index](index.md)
Get stickers attachable to images
### Parameters:
| Name | Type | Description | Required |
|----------|---------------|-------------|----------|
|media|[InputStickeredMedia](../types/InputStickeredMedia.md) | The stickered media | Yes|
### Return type: [Vector\_of\_StickerSetCovered](../types/StickerSetCovered.md)
### Can bots use this method: **NO**
### MadelineProto Example:
```php
if (!file_exists('madeline.php')) {
copy('https://phar.madelineproto.xyz/madeline.php', 'madeline.php');
}
define('MADELINE_BRANCH', '');
include 'madeline.php';
$MadelineProto = new \danog\MadelineProto\API('session.madeline');
$MadelineProto->start();
$Vector_of_StickerSetCovered = $MadelineProto->messages->getAttachedStickers(['media' => InputStickeredMedia, ]);
```
### [PWRTelegram HTTP API](https://pwrtelegram.xyz) example (NOT FOR MadelineProto):
### As a user:
POST/GET to `https://api.pwrtelegram.xyz/userTOKEN/messages.getAttachedStickers`
Parameters:
media - Json encoded InputStickeredMedia
Or, if you're into Lua:
```lua
Vector_of_StickerSetCovered = messages.getAttachedStickers({media=InputStickeredMedia, })
```