This Choreo uses your OAuth credentials to authenticate your account with Flickr, and returns a list of your photos which haven't been geo-tagged. The documentation for this Flickr method can be found here.
Note that the optional input named Extras has several possible values:
description, license, date_upload, date_taken, owner_name, icon_server, original_format, last_update, geo, tags, machine_tags, o_dims, views, media, path_alias, url_sq, url_t, url_s, url_q, url_m, url_n, url_z, url_c, url_l, url_o
Here's an example list of acceptable inputs:
APIKey: {YOUR FLICKR API KEY}
APISecret: {YOUR FLICKR API SECRET}
AccessToken: {YOUR FLICKR ACCESS TOKEN}
AccessTokenSecret: {YOUR FLICKR TOKEN SECRET}
Extras: url_m
The following is a sample of the JSON information returned by this Choreo:
{
"photos": {
"page": 1,
"pages": 58,
"perpage": 2,
"total": "116",
"photo": [
{
"id": "7739947574",
"owner": "65365961@N07",
"secret": "b954ae4e52",
"server": "7268",
"farm": 8,
"title": "test123.jpg",
"ispublic": 0,
"isfriend": 0,
"isfamily": 0,
"url_m": "https:\/\/farm8.staticflickr.com\/7268/7739947574_b954ae4e52.jpg",
"height_m": "500",
"width_m": "386"
},
{
"id": "7996258513",
"owner": "65365961@N07",
"secret": "cd32cc452b",
"server": "8460",
"farm": 9,
"title": "new",
"ispublic": 0,
"isfriend": 0,
"isfamily": 0,
"url_m": "https:\/\/farm9.staticflickr.com\/8460\/7996258513_cd32cc452b.jpg",
"height_m": "500",
"width_m": "386"
}
]
},
"stat": "ok"
}