MadelineProtoDocs/old_docs/API_docs_v40/methods/messages_installStickerSet.md

69 lines
1.4 KiB
Markdown
Raw Normal View History

2018-04-01 13:19:25 +02:00
---
title: messages.installStickerSet
description: Add a sticker set
---
## Method: messages.installStickerSet
[Back to methods index](index.md)
Add a sticker set
### Parameters:
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|stickerset|[InputStickerSet](../types/InputStickerSet.md) | Optional|The sticker set to add|
2018-04-01 13:24:46 +02:00
|disabled|[Bool](../types/Bool.md) | Yes|Disable stickerset?|
2018-04-01 13:19:25 +02:00
2018-04-01 13:24:46 +02:00
### Return type: [Bool](../types/Bool.md)
2018-04-01 13:19:25 +02:00
### Can bots use this method: **NO**
### MadelineProto Example:
```
if (!file_exists('madeline.php')) {
copy('https://phar.madelineproto.xyz/madeline.php', 'madeline.php');
}
include 'madeline.php';
$MadelineProto = new \danog\MadelineProto\API('session.madeline');
$MadelineProto->start();
2018-04-01 13:24:46 +02:00
$Bool = $MadelineProto->messages->installStickerSet(['stickerset' => InputStickerSet, 'disabled' => Bool, ]);
2018-04-01 13:19:25 +02:00
```
### [PWRTelegram HTTP API](https://pwrtelegram.xyz) example (NOT FOR MadelineProto):
### As a user:
POST/GET to `https://api.pwrtelegram.xyz/userTOKEN/messages.installStickerSet`
Parameters:
stickerset - Json encoded InputStickerSet
2018-04-01 13:24:46 +02:00
disabled - Json encoded Bool
2018-04-01 13:19:25 +02:00
Or, if you're into Lua:
```
2018-04-01 13:24:46 +02:00
Bool = messages.installStickerSet({stickerset=InputStickerSet, disabled=Bool, })
2018-04-01 13:19:25 +02:00
```
### Errors this method can return:
| Error | Description |
|----------|---------------|
|STICKERSET_INVALID|The provided sticker set is invalid|