获取 Flickr 集
常见的东西,一直在谷歌搜索,看着这里,没有帮助。然而。
我想要的是列出我在 Flickr 上拥有的照片集。尼斯&看起来很简单。 我想要“标题图像”(在 Flickr 上用作缩略图的图像)、标题和 URL。不可能那么难吧?
选择的语言是 PHP (5.1.6) 或 JS(jQuery 如果可能的话)。两者都很好。
Usual stuff, Googled forever, looked on here, no help. Yet.
What I want is to list the sets of photos I have on Flickr. Nice & simple, it would seem.
I want the 'title image' (the one used as the thumb for it on Flickr its self), the title and URL. Can't be that hard, can it?
The language of choice is PHP (5.1.6), or JS (jQuery if possible). Both are good.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
将 API 的 flickr.photos.search 方法与您的user_id 不起作用?
对于 PHP,您在此处有一个基于 PEAR 的包,在 < a href="http://phpflickr.com/" rel="nofollow noreferrer">http://phpflickr.com/。应该足以渡过难关。
编辑:
对于最小实现,您应该使用 stream_context_create() 对于 HTTP 标头,在此上下文中使用
fopen()
并手动构建 XMLRPC 请求作为要发送的文本变量。来自套接字的答案将是您的数据对于 API,请使用 flickr.photosets .getList
代码示例(您需要一个有效的 flickr api 密钥)
Using flickr.photos.search method of the API with your user_id does not work ?
For PHP, you have a PEAR-based package here and another library at http://phpflickr.com/. Should be enough to get through it.
EDIT :
For minimal implementation you should use stream_context_create() with HTTP headers, use
fopen()
with this context and build a XMLRPC request by hand as a text variable that you will send. Answer from the socket will be your dataFor the API, use flickr.photosets.getList
CODE EXAMPLE (you need a valid api key for flickr)
另请参见 http://framework.zend.com/manual/en/ zend.service.flickr.html 一个漂亮整洁的包装器
see also http://framework.zend.com/manual/en/zend.service.flickr.html for a nice tidy wrapper