flickr-sdk
Version:
Almost certainly the best Flickr API client in the world for node and the browser
29 lines (28 loc) • 1.15 kB
TypeScript
/**
* This file was auto-generated on 2023-10-24T15:44:49.803Z
* flickr.photos.getContactsPhotos
* Fetch a list of recent photos from the calling users' contacts.
* Permissions required: read
*/
export type FlickrPhotosGetContactsPhotosParams = {
/**
* Number of photos to return. Defaults to 10, maximum 50. This is only used if <code>single_photo</code> is not passed.
*/
count?: string;
/**
* set as 1 to only show photos from friends and family (excluding regular contacts).
*/
just_friends?: string;
/**
* Only fetch one photo (the latest) per contact, instead of all photos in chronological order.
*/
single_photo?: string;
/**
* Set to 1 to include photos from the calling user.
*/
include_self?: string;
/**
* A comma-delimited list of extra information to fetch for each returned record. Currently supported fields include: license, date_upload, date_taken, owner_name, icon_server, original_format, last_update. For more information see extras under <a href="/services/api/flickr.photos.search.html">flickr.photos.search</a>.
*/
extras?: string;
};