Method: photos.uploadContactProfilePhoto
Parameters:
Name | Type | Required |
---|---|---|
suggest | Bool | Optional |
save | Bool | Optional |
user_id | Username, chat ID, Update, Message or InputUser | Optional |
file | File path or InputFile | Optional |
video | File path or InputFile | Optional |
video_start_ts | double | Optional |
Return type: photos.Photo
Can bots use this method: YES
MadelineProto Example (now async for huge speed and parallelism!):
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();
// PHP 8+ syntax, use an array on PHP 7.
$photos_Photo = $MadelineProto->photos->uploadContactProfilePhoto(suggest: Bool, save: Bool, user_id: InputUser, file: InputFile, video: InputFile, video_start_ts: double, );