English 中文(简体)
Flickr 与 WOE 身份和标签的查询链接
原标题:Flickr link to Query with WOE-id and tags

我与Flickr Api进行了询问, 在一个带有 WOE id 和一些标签的区域显示图片。

http://www.flickr.com/services/api/flickr.photos.search.html" rel=“no follow”>flickr.photos.搜索 方法,使用这些选项:

$options = array( privacy_filter =>1,
                     woe_id  => $woe,
                     tag_mode =>  any ,
                     per_page => 6,
                     sort  => interestingness-desc ,
                     tags  => some, tags 
                  );

它展示了6张照片。我想将我的页面访问者转到Flickr页面上,该页面显示我在其环境中的查询结果。

有人知道我怎么确定吗?

问题回答

搜索 API 时, 您可以通过 Flickr 获得每张照片的 ID 和 秘密 。 要在 Flickr 中获取每张照片的 URL 。 您需要再做一次 drickr. photos. getinfo, 提供 photid 和 secret 。 这样您就可以找到 URL 元数据, 并在 Flickr 环境中显示结果 。





相关问题
POST to Page Returned By WebResponse

I am using WebRequest to POST to a signin page that redirects me to the page I really need to post to. How can I post to this page that I have been redirected to? Here is the Code: *****NEW STUFF****...

Adding a photo collection using the flickr API

Is it possible to create a photo collection using the flickr API? I haven t found any example code to achieve this, however you CAN do it on the flickr website, and i suppose flickr uses the API ...

how can I get yesterdays date in unix format in javascript?

I m self-learning the REST concept and am playing with the Flickr API. One of the parameters that Flickr requires is the min_upload_date, which is formatted in the Unix date format and looks like ...

How to check if a flickr url is valid

We need the user to be able to enter URLs in our media section . However since users can make mistakes in entering the URLs , we need to ensure that the URLs are valid flickr URLs . Valid URL eg : ...

How to set the number of photos in flickr

I am reading this page about Zend_Service_Flickr. However it does not say how to set up the number of photos showing. The following code returns 10 images. Zend_Loader::loadClass( ...

热门标签