使用 Flickr API 获取指定照片集的标签列表
我是 flickr 和 flickr API 的新手,我使用照片集来组织我的照片。 在我正在开发的应用程序中,需要能够标记照片集而不是单张照片;或者至少检索给定指定照片集的标签列表。但 Flickr API 中似乎没有此类内容。那么,我是否在 API 中遗漏了某些内容,或者是否存在针对这种情况的已知解决方法?提前谢谢
I'm new to flickr and the flickr API and I use photo sets to organize my photos.
In an application I'm developping, a need to be able to tag photo sets rather than individual photos; or at least retrieving a tag list given a specified photo set. But it seems like there is nothing of that kind in the Flickr API. So, am I missing something in the API, or does a known workaround for this situation exists ? Thx in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
据我所知,Flickr 文档中的 collections 和 标签 和 API,仅限照片可以被标记,而不是集合或集合。
要获得您想要的内容,您可以使用 获取给定集合中照片的标签
photosets.getPhotos
通过在extras
字符串中指定tags
并将这些标签的并集显示为整个集合的标签。相反,使用photos.addTags
为一组照片中的每张照片添加新标签。As far as I can tell from the Flickr documentation for collections and tags and the API, only photos can be tagged, not sets or collections.
To get what you want, you could get tags for photos in a given set using
photosets.getPhotos
by specifyingtags
in theextras
string and display the union of those as tags for the entire set. And conversely, usephotos.addTags
to add a new tag to each photos in a set.