MadelineProtoDocs/docs/API_docs/methods/photos.getUserPhotos.md
2024-05-01 14:53:46 +02:00

1.8 KiB

title description grand_parent parent image redirect_from
photos.getUserPhotos Returns the list of user photos. Telegram RPC API Methods https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png /API_docs/methods/photos_getUserPhotos.html

Method: photos.getUserPhotos

Back to methods index

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