Flickr API - auto tags not showing up in lists returned by flickr.tags.getListPhoto -
flickr's tag api doesn't seem return of tags given photo.
flickr began automatically tagging photos month or 2 ago. given photo can tagged 0 or more user tags added users, , 0 or more machine tags added flickr's algorithms.
flickr's api offers flickr.tags.getlistphoto method retrieving tags. seems return user tags. https://www.flickr.com/services/api/explore/flickr.tags.getlistphoto
the tags returned (the user tags) include machine_tag="0" pair, assume there's way machine tags, @ least planned if not implemented. here's json example of output getlistphoto:
{ "photo": { "id": "18791800953", "tags": { "tag": [ { "id": "126228644-18791800953-3318", "author": "126251698@n03", "authorname": "jorgemolina37", "raw": "downtown", "_content": "downtown", "machine_tag": 0 }, { "id": "126228644-18791800953-1306", "author": "126251698@n03", "authorname": "jorgemolina37", "raw": "skyscraper", "_content": "skyscraper", "machine_tag": 0 }, { "id": "126228644-18791800953-553", "author": "126251698@n03", "authorname": "jorgemolina37", "raw": "building", "_content": "building", "machine_tag": 0 }, { "id": "126228644-18791800953-16588", "author": "126251698@n03", "authorname": "jorgemolina37", "raw": "high-rise", "_content": "highrise", "machine_tag": 0 }, { "id": "126228644-18791800953-4603", "author": "126251698@n03", "authorname": "jorgemolina37", "raw": "las vegas", "_content": "lasvegas", "machine_tag": 0 }, { "id": "126228644-18791800953-6215", "author": "126251698@n03", "authorname": "jorgemolina37", "raw": "nevada", "_content": "nevada", "machine_tag": 0 }, { "id": "126228644-18791800953-291", "author": "126251698@n03", "authorname": "jorgemolina37", "raw": "urban", "_content": "urban", "machine_tag": 0 } ] } }, "stat": "ok" } in addition above user tags, image has machine tags such "blackandwhite", "outdoor", , "monochrome" not returned in json: https://www.flickr.com/photos/miamiboy/18791800953/
i haven't seen in documentation discusses machine tags (or mentions them), presumably because they're new.
am missing something? there parameter or method missed somewhere? or machine tags not available (yet?)?
the getphotos service allows specify 'extras' returned. can specify 'machine_tags' 1 of extras: https://www.flickr.com/services/api/explore/flickr.photosets.getphotos
Comments
Post a Comment