MadelineProto/old_docs/API_docs_v71/methods/messages_getArchivedStickers.md

70 lines
1.6 KiB
Markdown
Raw Normal View History

2017-10-14 11:50:46 +02:00
---
title: messages.getArchivedStickers
2018-03-23 16:23:49 +01:00
description: Get all archived stickers
2017-10-14 11:50:46 +02:00
---
## Method: messages.getArchivedStickers
[Back to methods index](index.md)
2018-03-23 16:23:49 +01:00
Get all archived stickers
2017-10-14 11:50:46 +02:00
### Parameters:
2018-03-23 16:23:49 +01:00
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|masks|[CLICK ME Bool](../types/Bool.md) | Optional|Get masks?|
|offset\_id|[CLICK ME long](../types/long.md) | Yes|Sticker ID offset|
|limit|[CLICK ME int](../types/int.md) | Yes|Number of stickers to fetch|
2017-10-14 11:50:46 +02:00
### Return type: [messages\_ArchivedStickers](../types/messages_ArchivedStickers.md)
### Can bots use this method: **NO**
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_ArchivedStickers = $MadelineProto->messages->getArchivedStickers(['masks' => Bool, 'offset_id' => long, 'limit' => 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 user:
POST/GET to `https://api.pwrtelegram.xyz/userTOKEN/messages.getArchivedStickers`
Parameters:
masks - Json encoded Bool
offset_id - Json encoded long
limit - Json encoded int
Or, if you're into Lua:
```
messages_ArchivedStickers = messages.getArchivedStickers({masks=Bool, offset_id=long, limit=int, })
```