MadelineProtoDocs/docs/API_docs/methods/account.getMultiWallPapers.md

47 lines
1.3 KiB
Markdown
Raw Normal View History

2020-03-06 12:24:14 +01:00
---
title: account.getMultiWallPapers
2020-06-16 17:50:25 +02:00
description: Get info about multiple wallpapers
2020-03-06 12:24:14 +01:00
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
redirect_from: /API_docs/methods/account_getMultiWallPapers.html
---
2020-06-16 17:50:25 +02:00
# Method: account.getMultiWallPapers
2020-03-06 12:24:14 +01:00
[Back to methods index](index.md)
2020-06-16 17:50:25 +02:00
Get info about multiple wallpapers
2020-03-06 12:24:14 +01:00
### Parameters:
2020-06-16 17:50:25 +02:00
| Name | Type | Description | Required |
|----------|---------------|-------------|----------|
|wallpapers|Array of [InputWallPaper](../types/InputWallPaper.md) | Wallpapers to fetch info about | Yes|
2020-03-06 12:24:14 +01:00
### Return type: [Vector\_of\_WallPaper](../types/WallPaper.md)
2020-06-16 17:50:25 +02:00
### Can bots use this method: **NO**
2020-03-06 12:24:14 +01:00
### MadelineProto Example ([now async for huge speed and parallelism!](https://docs.madelineproto.xyz/docs/ASYNC.html)):
```php
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();
$Vector_of_WallPaper = $MadelineProto->account->getMultiWallPapers(['wallpapers' => [InputWallPaper, InputWallPaper], ]);
```
Or, if you're into Lua:
```lua
Vector_of_WallPaper = account.getMultiWallPapers({wallpapers={InputWallPaper}, })
```