Flickr API 获得有限数量的评论

发布于 2024-11-04 00:30:09 字数 259 浏览 1 评论 0原文

我正在使用 Flickr API 的 flickr.photos.comments.getList 方法从其网站获取一些照片的评论列表。我使用的照片不是 flickr.interestingness.getList 方法的,通常有数百条评论和收藏。我只想为每个请求获得 8 条评论,有办法做到这一点吗?

另外,我需要对 min_comment_date 与 max_comment_date 参数进行一些澄清。假设我只想获取过去 24 小时内的照片,我将使用哪个参数以及我将向其提供什么?

I'm using the Flickr API's flickr.photos.comments.getList method to get a list of comments of some photos from their site. The photos I am using are off of the flickr.interestingness.getList method and generally have hundreds of comments and favorites. I'd only like to get 8 comments per request, is there a way to do this?

Also, I need some clarification on the min_comment_date vs max_comment_date arguments. Say I want to get only photos within the last 24 hours, which argument would I use and what would I supply to it?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

绮筵 2024-11-11 00:30:09

不可以,flickr api 不允许通过 Web 服务 api 限制评论列表。
其他命令有 page/per_page 等限制器,但没有 comments-list;至少目前不是。

关于日期参数:flickr 接受 unix 时间戳或 mysql 日期时间作为日期字段,在本例中也是如此。通常,您可以在大多数编程语言中以编程方式创建时间戳,为了测试,您可以通过 http://www.unixtimestamp.com 手动转换值

希望这有帮助。

No,the flickr api doesn't allow list restrictions of comments via the web service api.
Other commands have limiters like page/per_page, but not the comments-list; at least not at the moment.

About the date arguments: flickr accepts a unix timestamp or mysql datetime for the date fields, also in this case. Normally you can create the timestamps programatically in most programming languages, for testing you can convert values manually via http://www.unixtimestamp.com.

hope this helps.

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