FQL 查询:使用多个stream_id 的查询给出的记录太少
我想查询多个页面的公开帖子。
我的 FQL 查询如下所示:
SELECT post_id, source_id FROM stream WHERE source_id in (157528807603192, 127531603328)
此查询仅返回大约 6 条记录。
但是,如果我在两个单独的查询中使用两个 source_id,我会得到超过 20 个项目:
SELECT post_id, source_id FROM stream WHERE source_id in = 157528807603192
我在文档中找不到任何内容说明如果查询多个 source_id 则需要不同的权限。
谁能解释一下这里发生了什么?
I would like to query public posts from multiple Pages.
My FQL query looks like this:
SELECT post_id, source_id FROM stream WHERE source_id in (157528807603192, 127531603328)
This query returns only about 6 records.
However, if I use the two source_id in two separate query I got more than 20 item for both of them:
SELECT post_id, source_id FROM stream WHERE source_id in = 157528807603192
I couldn't find anything in the documentation stating that if you query multiple source_id you need different permissions.
Can anyone explain me what is happening here?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我在文档中找到了答案。 :(
http://developers.facebook.com/docs/reference/rest/流.get/
I've found the answer in the documentation. :(
http://developers.facebook.com/docs/reference/rest/stream.get/