1
0
mirror of https://github.com/danog/MadelineProto.git synced 2024-12-12 21:07:21 +01:00
MadelineProto/old_docs/API_docs_v71/methods/photos_updateProfilePhoto.md

64 lines
1.5 KiB
Markdown
Raw Normal View History

2017-10-14 11:50:46 +02:00
---
title: photos.updateProfilePhoto
2018-03-23 16:23:49 +01:00
description: Update the profile photo (use photos->uploadProfilePhoto to upload the photo)
2017-10-14 11:50:46 +02:00
---
## Method: photos.updateProfilePhoto
[Back to methods index](index.md)
2018-03-23 16:23:49 +01:00
Update the profile photo (use photos->uploadProfilePhoto to upload the photo)
2017-10-14 11:50:46 +02:00
### Parameters:
2018-03-23 16:23:49 +01:00
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|id|[MessageMedia, Update, Message or InputPhoto](../types/InputPhoto.md) | Optional|The photo to use|
2017-10-14 11:50:46 +02:00
### Return type: [UserProfilePhoto](../types/UserProfilePhoto.md)
### Can bots use this method: **NO**
2018-03-20 19:57:36 +01:00
### MadelineProto Example:
2017-10-14 11:50:46 +02:00
```
if (!file_exists('madeline.php')) {
copy('https://phar.madelineproto.xyz/madeline.php', 'madeline.php');
2017-10-14 11:50:46 +02:00
}
include 'madeline.php';
// !!! This API id/API hash combination will not work !!!
// !!! You must get your own @ my.telegram.org !!!
$api_id = 0;
$api_hash = '';
$MadelineProto = new \danog\MadelineProto\API('session.madeline', ['app_info' => ['api_id' => $api_id, 'api_hash' => $api_hash]]);
$MadelineProto->start();
2017-10-14 11:50:46 +02:00
$UserProfilePhoto = $MadelineProto->photos->updateProfilePhoto(['id' => InputPhoto, ]);
```
2018-03-20 19:57:36 +01:00
### [PWRTelegram HTTP API](https://pwrtelegram.xyz) example (NOT FOR MadelineProto):
2017-10-14 11:50:46 +02:00
### As a user:
POST/GET to `https://api.pwrtelegram.xyz/userTOKEN/photos.updateProfilePhoto`
Parameters:
id - Json encoded InputPhoto
Or, if you're into Lua:
```
UserProfilePhoto = photos.updateProfilePhoto({id=InputPhoto, })
```