get_user_profile_photos#

template<class Connector>
api_result<user_profile_photos_t, Connector&&> get_user_profile_photos(Connector &&connector, get_user_profile_photos_args_t args)#
template<class Connector>
api_result<user_profile_photos_t, Connector&&> call(Connector &&connector, get_user_profile_photos_args_t args)#

connector is any object satisfying connector concept.

Use this method to get a list of profile pictures for a user. Returns a UserProfilePhotos object.

struct get_user_profile_photos_args_t#

Arguments that should be passed to get_user_profile_photos().

integer_t user_id#

Unique identifier of the target user

optional_t<integer_t> offset#

Sequential number of the first photo to be returned. By default, all photos are returned.

optional_t<integer_t> limit#

Limits the number of photos to be retrieved. Values between 1-100 are accepted. Defaults to 100.