需要在我的网站上显示带有特定标签的 flickr 图片
*我一直在研究可用的 API 和程序,但我需要的是一种从我的网站上的 flickr 获取图片的方法。我见过的大多数程序都只显示属于某个ID的图片。有没有办法显示带有特定标签的任何图片?就像如果我需要在我的网站上显示标记为猫的图片我该怎么做。
我会对基于 php 的库感兴趣,或者如果有类似 jquery 插件的东西可以做到这一点那就更好了
谢谢 - 我正在为我的应用程序使用 zend 框架。
*I'm been going over the available apis and programs out there but what I need is a way to pictures from flickr on my site. Most of the programs I have seen only show pictures that belong to a certain ID. Is there a way to show any picture that is tagged with a certain tag? Like if I need to show pictures tagged Cat on my site how can I do it.
I would be interested in a php based library or if theres something like a jquery plugin that can do it that would be all the better
Thanks - I'm using the zend framework for my application.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
flickr.photos.search
API 的方法?引用:
而且,在该页面的下方,似乎有一个按标签过滤的参数:
例如,要搜索猫:
注意:仅快速尝试使用 API 资源管理器。
What about the
flickr.photos.search
method of the API ?Quoting :
And, a bit lower on that page, it seems there is a parameter to filter by tags :
For example, to search for cats :
Note : only quickly tried using the API Explorer.
您可以尝试 YQL
示例查询
示例查询
这非常简单为了集成,YQL 提供了一个 REST 查询 url,您可以根据需要使用curl 并解析响应(xml 或 json)。
you can try YQL
Example query
example query
it's pretty easy to integrate , YQL gives a REST Query url ,you can use curl and parse the response ( either xml or json ) according to your needs .