mirror of
https://github.com/danog/MadelineProto.git
synced 2024-12-14 12:47:56 +01:00
47 lines
1.0 KiB
Markdown
47 lines
1.0 KiB
Markdown
|
---
|
||
|
title: viewTrendingStickerSets
|
||
|
description: Trending sticker sets are viewed by the user
|
||
|
---
|
||
|
## Method: viewTrendingStickerSets
|
||
|
[Back to methods index](index.md)
|
||
|
|
||
|
|
||
|
Trending sticker sets are viewed by the user
|
||
|
|
||
|
### Params:
|
||
|
|
||
|
| Name | Type | Required | Description |
|
||
|
|----------|:-------------:|:--------:|------------:|
|
||
|
|sticker\_set\_ids|Array of [long](../types/long.md) | Yes|Identifiers of viewed trending sticker sets|
|
||
|
|
||
|
|
||
|
### Return type: [Ok](../types/Ok.md)
|
||
|
|
||
|
### Example:
|
||
|
|
||
|
|
||
|
```
|
||
|
$MadelineProto = new \danog\MadelineProto\API();
|
||
|
if (isset($token)) {
|
||
|
$this->bot_login($token);
|
||
|
}
|
||
|
if (isset($number)) {
|
||
|
$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);
|
||
|
}
|
||
|
|
||
|
$Ok = $MadelineProto->viewTrendingStickerSets(['sticker_set_ids' => [long], ]);
|
||
|
```
|
||
|
|
||
|
Or, if you're into Lua:
|
||
|
|
||
|
```
|
||
|
Ok = viewTrendingStickerSets({sticker_set_ids={long}, })
|
||
|
```
|
||
|
|