Link Search Menu Expand Document

Method: photos.getUserPhotos

Back to methods index

Returns the list of user photos.

Parameters:

NameTypeDescriptionRequired
user_idUsername, chat ID, Update, Message or InputUserUser IDOptional
offsetintNumber of list elements to be skippedOptional
max_idlongIf a positive value was transferred, the method will return only photos with IDs less than the set one. This parameter is often useful when refetching file references », as in conjuction with limit=1 and offset=-1 the photo object with the id specified in max_id can be fetched.Yes
limitintNumber of list elements to be returnedOptional

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, );