Method: photos.getUserPhotos
Returns the list of user photos.
Parameters:
Name | Type | Description | Required |
---|---|---|---|
user_id | Username, chat ID, Update, Message or InputUser | User ID | Optional |
offset | int | Number of list elements to be skipped | Optional |
max_id | long | If a positive value was transferred, the method will return only photos with IDs less than the set one | Yes |
limit | int | Number of list elements to be returned | Optional |
Return type: photos.Photos
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();
$photos_Photos = $MadelineProto->photos->getUserPhotos(user_id: $InputUser, offset: $int, max_id: $long, limit: $int, );