flickr-sdk
Version:
Almost certainly the best Flickr API client in the world for node and the browser
17 lines (16 loc) • 426 B
TypeScript
/**
* This file was auto-generated on 2023-10-24T15:44:49.788Z
* flickr.photos.geo.getLocation
* Get the geo data (latitude and longitude and the accuracy level) for a photo.
* Permissions required: none
*/
export type FlickrPhotosGeoGetLocationParams = {
/**
* The id of the photo you want to retrieve location data for.
*/
photo_id: string;
/**
* Extra flags.
*/
extras?: string;
};