如何使用 Graph API 或 FQL 隐藏 Facebook 帖子?

发布于 2024-12-27 14:19:44 字数 108 浏览 1 评论 0原文

我正在创建一个审核应用程序,其中我需要获取页面上的所有帖子,然后根据需要将帖子设置为隐藏。在 Facebook 中,有一个选项可以将帖子设置为隐藏。如何使用 Graph API 或 FQL 执行此操作?

I am creating a moderating application in which i need to fetch all the posts on a page and then set the posts to be hidden if required. In Facebook, there is an option to set a post as hidden. How do I do this using the Graph API or FQL?

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

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

发布评论

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

评论(2

伤痕我心 2025-01-03 14:19:44

几周后,您可以使用参数“is_hidden”向帖子对象发出 POST 请求:

curl –F 'is_hidden=true" \
"https://graph.facebook.com/<POST_ID>?access_token=_"

查看“隐藏页面帖子”中的文档:
https://developers.facebook.com/docs/reference/api/page/

Since a few weeks, you can make a POST request to the post object with the parameter "is_hidden" :

curl –F 'is_hidden=true" \
"https://graph.facebook.com/<POST_ID>?access_token=_"

Check the documentation at "Hiding a Page Post" :
https://developers.facebook.com/docs/reference/api/page/

寄居者 2025-01-03 14:19:44

您需要查看文档,了解隐私 领域。

You'll want to check out the docs, regarding the privacy field.

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