FQl 和 Graph API:是一种获取“隐藏帖子”的方法吗?在页面墙上(提要/流)
在 FQL 和 Graph APi 中,我无法再获取页面提要(流 FQL 表)中的所有帖子, 我看不到隐藏的帖子,即使我输入“... WHERE (is_hidden = 0 OR is_hidden = 1)”
In FQL and Graph APi, i am no longer able to get all posts in a page's feed (stream FQL table),
i don't see hidden posts, even if i put "... WHERE (is_hidden = 0 OR is_hidden = 1)"
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在 https://developers.facebook.com/docs/reference/fql/stream/< /a> 列 列表上没有关于 is_hidden 标志的文档。
但只有一个示例(该页面上的第一个示例)使用此标志。
在 https://developers.facebook.com/docs/reference/fql/stream_filter/< /a> 有一个标志叫做
is_visible
我不知道...但是如果我负责文档或 API,我会在流/提要上放置一个 is_hidden 标志
但一定有一些方法我们可以获得隐藏过滤来自 API 的选项。但由于 facebook 文档太棒了,我就是找不到它......
所以请引导我们正确的方向 facebook 人;)
in https://developers.facebook.com/docs/reference/fql/stream/ there is no documentation on is_hidden flag on the columns list.
But there is only one example (the first one on that page) that uses this flag.
In https://developers.facebook.com/docs/reference/fql/stream_filter/ there is a flag called
is_visible
I don't know... but if I was in charge of documentation or the API, I would put an is_hidden flag on stream/feed
But there must be some methods we could get the hidden filtering option from the API. but since the facebook documentation is so awesome, I just can not find it...
So please direct us to the right direction facebook people ;)
在 where 子句中使用 (is_hidden OR is_published)
例如 SELECT 消息,is_hidden FROM 流 其中 source_id = [page_id] and (is_hidden 或 is_published)
Use in the where clause (is_hidden OR is_published)
For instance SELECT message, is_hidden FROM stream Where source_id = [page_id] and (is_hidden or is_published)