Changes from Version 1 of zooomr.photosets.getPhotos

Show
Ignore:
Author:
bluemonki (IP: 78.86.133.53)
Timestamp:
05/11/08 08:44:38 (2 years ago)
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • zooomr.photosets.getPhotos

    v0 v1  
     1== zooomr.photosets.getPhotos == 
     2 
     3Get the list of photos in a set. 
     4 
     5=== Authentication === 
     6 
     7This method does not require authentication. 
     8 
     9=== Arguments === 
     10 
     11api_key (Required) 
     12    Your API application key. 
     13photoset_id (Required) 
     14    The id of the photoset to return the photos for. 
     15extras (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. 
     17privacy_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 
     26per_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. 
     28page (Optional)  
     29    The page of results to return. If this argument is omitted, it defaults to 1. 
     30media (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}}}