FQl 和 Graph API:是一种获取“隐藏帖子”的方法吗?在页面墙上(提要/流)

发布于 2024-11-29 10:02:49 字数 113 浏览 0 评论 0原文

在 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 技术交流群。

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

发布评论

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

评论(2

蝶舞 2024-12-06 10:02:49

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 ;)

逆光下的微笑 2024-12-06 10:02:49

在 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)

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