| | 1 | == zooomr.photosets.getPhotos == |
|---|
| | 2 | |
|---|
| | 3 | Get the list of photos in a set. |
|---|
| | 4 | |
|---|
| | 5 | === Authentication === |
|---|
| | 6 | |
|---|
| | 7 | This method does not require authentication. |
|---|
| | 8 | |
|---|
| | 9 | === Arguments === |
|---|
| | 10 | |
|---|
| | 11 | api_key (Required) |
|---|
| | 12 | Your API application key. |
|---|
| | 13 | photoset_id (Required) |
|---|
| | 14 | The id of the photoset to return the photos for. |
|---|
| | 15 | extras (Optional) NOT YET IMPLEMENTED |
|---|
| | 16 | A comma-delimited list of extra information to fetch for each returned record. Currently supported fields are: license, date_upload, date_taken, owner_name, icon_server, original_format, last_update. |
|---|
| | 17 | privacy_filter (Optional) NOT YET IMPLEMENTED |
|---|
| | 18 | Return photos only matching a certain privacy level. This only applies when making an authenticated call to view a photoset you own. Valid values are: |
|---|
| | 19 | |
|---|
| | 20 | * 1 public photos |
|---|
| | 21 | * 2 private photos visible to friends |
|---|
| | 22 | * 3 private photos visible to family |
|---|
| | 23 | * 4 private photos visible to friends & family |
|---|
| | 24 | * 5 completely private photos |
|---|
| | 25 | |
|---|
| | 26 | per_page (Optional) |
|---|
| | 27 | Number of photos to return per page. If this argument is omitted, it defaults to 500. The maximum allowed value is 500. |
|---|
| | 28 | page (Optional) |
|---|
| | 29 | The page of results to return. If this argument is omitted, it defaults to 1. |
|---|
| | 30 | media (Optional) PROBABLY DOESN'T WORK |
|---|
| | 31 | Filter results by media type. Possible values are all (default), photos or videos |
|---|
| | 32 | |
|---|
| | 33 | === Example Response === |
|---|
| | 34 | {{{ |
|---|
| | 35 | {"stat": "ok", "photoset": {"perpage": 100, "id": 31917, "photo": [{"owner": "13205@Z01", "secret": "1abb30ffb2", "title": "cup", "farm": 1, "isprimary": 1, "id": 4809022, "server": 0}], "pages": 1, "total": 0, "primary": 4809022, "page": 1}} |
|---|
| | 36 | }}} |