2016-12-30 16:32:25 +01:00
|
|
|
---
|
2017-01-02 19:50:37 +01:00
|
|
|
title: messages_editChatPhoto
|
|
|
|
description: messages_editChatPhoto parameters, return type and example
|
2016-12-30 16:32:25 +01:00
|
|
|
---
|
2017-01-02 19:50:37 +01:00
|
|
|
## Method: messages\_editChatPhoto
|
2016-12-30 16:32:25 +01:00
|
|
|
[Back to methods index](index.md)
|
|
|
|
|
|
|
|
|
|
|
|
### Parameters:
|
|
|
|
|
|
|
|
| Name | Type | Required |
|
|
|
|
|----------|:-------------:|---------:|
|
2017-01-02 19:50:37 +01:00
|
|
|
|chat\_id|[int](../types/int.md) | Required|
|
|
|
|
|photo|[InputChatPhoto](../types/InputChatPhoto.md) | Required|
|
2016-12-30 16:32:25 +01:00
|
|
|
|
|
|
|
|
2017-01-02 19:50:37 +01:00
|
|
|
### Return type: [Updates](../types/Updates.md)
|
2016-12-30 16:32:25 +01:00
|
|
|
|
|
|
|
### 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);
|
|
|
|
}
|
|
|
|
|
2017-01-02 19:50:37 +01:00
|
|
|
$Updates = $MadelineProto->messages->editChatPhoto(['chat_id' => int, 'photo' => InputChatPhoto, ]);
|
2016-12-30 16:32:25 +01:00
|
|
|
```
|