2.0 KiB
2.0 KiB
title | description |
---|---|
messages.editChatPhoto | messages.editChatPhoto parameters, return type and example |
Method: messages.editChatPhoto
Parameters:
Name | Type | Required |
---|---|---|
chat_id | Username, chat ID, Update, Message or InputPeer | Optional |
photo | CLICK ME InputChatPhoto | Optional |
Return type: Updates
Can bots use this method: YES
Errors this method can return:
Error | Description |
---|---|
CHAT_ID_INVALID | The provided chat id is invalid |
INPUT_CONSTRUCTOR_INVALID | The provided constructor is invalid |
INPUT_FETCH_FAIL | Failed deserializing TL payload |
PEER_ID_INVALID | The provided peer id is invalid |
PHOTO_EXT_INVALID | The extension of the photo is invalid |
MadelineProto Example:
if (!file_exists('madeline.php')) {
copy('https://phar.madelineproto.xyz/madeline.php', 'madeline.php');
}
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();
$Updates = $MadelineProto->messages->editChatPhoto(['chat_id' => InputPeer, 'photo' => InputChatPhoto, ]);
PWRTelegram HTTP API example (NOT FOR MadelineProto):
As a bot:
POST/GET to https://api.pwrtelegram.xyz/botTOKEN/madeline
Parameters:
- method - messages.editChatPhoto
- params -
{"chat_id": InputPeer, "photo": InputChatPhoto, }
As a user:
POST/GET to https://api.pwrtelegram.xyz/userTOKEN/messages.editChatPhoto
Parameters:
chat_id - Json encoded InputPeer
photo - Json encoded InputChatPhoto
Or, if you're into Lua:
Updates = messages.editChatPhoto({chat_id=InputPeer, photo=InputChatPhoto, })