MadelineProtoDocs/old_docs/API_docs_v42/methods/photos_updateProfilePhoto.md

63 lines
1.5 KiB
Markdown
Raw Normal View History

2018-04-01 13:19:25 +02:00
---
title: photos.updateProfilePhoto
description: Update the profile photo (use photos->uploadProfilePhoto to upload the photo)
2018-04-04 19:52:48 +02:00
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
2018-04-01 13:19:25 +02:00
---
## Method: photos.updateProfilePhoto
[Back to methods index](index.md)
Update the profile photo (use photos->uploadProfilePhoto to upload the photo)
### Parameters:
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|id|[MessageMedia, Update, Message or InputPhoto](../types/InputPhoto.md) | Optional|The photo to use|
2018-04-01 13:24:46 +02:00
|crop|[InputPhotoCrop](../types/InputPhotoCrop.md) | Yes|Cropping info|
2018-04-01 13:19:25 +02:00
### Return type: [UserProfilePhoto](../types/UserProfilePhoto.md)
### 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
$UserProfilePhoto = $MadelineProto->photos->updateProfilePhoto(['id' => InputPhoto, 'crop' => InputPhotoCrop, ]);
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/photos.updateProfilePhoto`
Parameters:
id - Json encoded InputPhoto
2018-04-01 13:24:46 +02:00
crop - Json encoded InputPhotoCrop
2018-04-01 13:19:25 +02:00
Or, if you're into Lua:
```
2018-04-01 13:24:46 +02:00
UserProfilePhoto = photos.updateProfilePhoto({id=InputPhoto, crop=InputPhotoCrop, })
2018-04-01 13:19:25 +02:00
```