使用 FQL 查询每个喜欢的对象

发布于 2025-01-06 13:57:13 字数 489 浏览 0 评论 0原文

我试图通过运行此查询来查询用户自从加入 facebook 以来喜欢的每个对象:

SELECT user_id, object_id, post_id FROM like WHERE user_id=me()

此查询运行良好并返回一些结果,但它们的数量比我估计的要少得多。我在不同的真实用户帐户上进行了尝试,对于我的一位在 2006 年左右加入 Facebook 的朋友来说,返回结果的数量仍然只有 65 左右。

我通过官方 javascript sdk 和 graph api explorer 尝试了这个查询,它给出了相同的结果。

文档没有说明对查询 like 表施加的任何限制。

对此表进行查询时,有什么我应该注意的吗?

非常感谢!

I'm trying to query every object which the user has liked since joining facebook by running this query:

SELECT user_id, object_id, post_id FROM like WHERE user_id=me()

This query runs fine and returns some results, but the number of them is a lot less than I estimated. I tried it on different, real user accounts, and for a friend of mine who has joined facebook around 2006 the number of returned results is still only around 65.

I tried this query through the official javascript sdk and through the graph api explorer which gave identical results.

The documentation doesn't state any limit imposed upon querying the like table.

Is there anything, I should be aware when doing a query on this table?

Thank you very much!

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

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

发布评论

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

评论(1

财迷小姐 2025-01-13 13:57:13

根据本文档

流表的每次查询仅限于前30天或
50 个帖子,以较大者为准,但是您可以使用特定时间
诸如created_time之类的字段以及FQL运算符(例如<或>)
检索更大范围的帖子。

尽管在文档中没有明确提到喜欢,但我想这将是相同的限制。因此,尝试在 where 子句中添加created_time。

According to this documentation :

Each query of the stream table is limited to the previous 30 days or
50 posts, whichever is greater, however you can use time-specific
fields such as created_time along with FQL operators (such as < or >)
to retrieve a much greater range of posts.

Although not explicitly mentioned in the doucmentation for likes, I guess this will be the same limit. So try to add created_time in a where clause.

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