需要在我的网站上显示带有特定标签的 flickr 图片

发布于 2024-10-23 00:30:31 字数 219 浏览 1 评论 0原文

*我一直在研究可用的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

向日葵 2024-10-30 00:30:31

flickr.photos.search API 的方法?

引用:

返回匹配的照片列表
一些标准
只有调用用户可见的照片才会被显示
回来了。返回私人或
半私人照片,来电者必须
通过“读取”进行身份验证
权限,并且有权限
查看照片。
未经身份验证
调用只会返回公开照片。

而且,在该页面的下方,似乎有一个按标签过滤的参数:

标签 (Facultatif)
以逗号分隔的标签列表。

包含一张或多张照片
列出的标签将被返回。

可以排除与某个术语匹配的结果
通过在其前面添加 - 字符。

例如,要搜索猫:

http://api.flickr.com/services/rest/?method=flickr.photos.search&api_key=ee8c6bd0a9d778dba873a3bffed6e503&tags=cat

注意:仅快速尝试使用 API 资源管理器

What about the flickr.photos.search method of the API ?

Quoting :

Return a list of photos matching
some criteria.
Only photos visible to the calling user will be
returned. To return private or
semi-private photos, the caller must
be authenticated with 'read'
permissions, and have permission to
view the photos.
Unauthenticated
calls will only return public photos.

And, a bit lower on that page, it seems there is a parameter to filter by tags :

tags (Facultatif)
A comma-delimited list of tags.

Photos with one or more of the
tags listed will be returned.
You
can exclude results that match a term
by prepending it with a - character.

For example, to search for cats :

http://api.flickr.com/services/rest/?method=flickr.photos.search&api_key=ee8c6bd0a9d778dba873a3bffed6e503&tags=cat

Note : only quickly tried using the API Explorer.

那小子欠揍 2024-10-30 00:30:31

您可以尝试 YQL

示例查询

select * from flickr.photos.search where text="lol cat" limit 10

示例查询

这非常简单为了集成,YQL 提供了一个 REST 查询 url,您可以根据需要使用curl 并解析响应(xml 或 json)。

you can try YQL

Example query

select * from flickr.photos.search where text="lol cat" limit 10

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 .

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文