MadelineProtoDocs/docs/API_docs/methods/account_getWallPaper.md
2019-03-12 13:25:41 +01:00

70 lines
1.4 KiB
Markdown

---
title: account.getWallPaper
description: Get wallpaper info
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Method: account.getWallPaper
[Back to methods index](index.md)
Get wallpaper info
### Parameters:
| Name | Type | Description | Required |
|----------|---------------|-------------|----------|
|wallpaper|[InputWallPaper](../types/InputWallPaper.md) | Wallpaper | Yes|
### Return type: [WallPaper](../types/WallPaper.md)
### Can bots use this method: **YES**
### 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();
$WallPaper = $MadelineProto->account->getWallPaper(['wallpaper' => InputWallPaper, ]);
```
### [PWRTelegram HTTP API](https://pwrtelegram.xyz) example (NOT FOR MadelineProto):
### As a bot:
POST/GET to `https://api.pwrtelegram.xyz/botTOKEN/madeline`
Parameters:
* method - account.getWallPaper
* params - `{"wallpaper": InputWallPaper, }`
### As a user:
POST/GET to `https://api.pwrtelegram.xyz/userTOKEN/account.getWallPaper`
Parameters:
wallpaper - Json encoded InputWallPaper
Or, if you're into Lua:
```lua
WallPaper = account.getWallPaper({wallpaper=InputWallPaper, })
```