Facebook 评论审核工具

发布于 2024-12-10 06:39:23 字数 210 浏览 3 评论 0原文

我刚刚添加了 Facebook 评论插件,并且看到了用户的第一条评论。

但如果我去 http://developers.facebook.com/tools/comments 那里没有没有任何最近的评论。

有什么线索吗?

I have just added the facebook comments plugin and I am seeing a first comment of a user.

But if I go to http://developers.facebook.com/tools/comments there isn't any recent comments.

Any clue?

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

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

发布评论

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

评论(4

再见回来 2024-12-17 06:39:23

您需要确保您已在标头部分指定了您的 Facebook 应用程序 ID:

<meta property="fb:app_id" content="{YOUR_APP_ID}">

这将为您的应用程序的管理员提供内联访问权限(根据我的经验,可能需要一点时间才能显示,可能是由于缓存)。

请记住,在使用多个盒子时,Facebook 建议采用这种方法,而不是使用管理员元数据。从 Facebook 此处查看,滚动到审核工具

如果您的网站有很多评论框,我们强烈推荐您
指定 Facebook 应用程序 ID 作为管理员(所有管理员
该应用程序将能够审核评论)。这样做可以使
Facebook 上的主持人界面,其中来自所有插件的评论
由您的应用程序 ID 管理的内容可以轻松地一起调节。

输入您的 APP ID 后,您可以通过以下链接访问此评论工具:

https://developers.facebook.com/tools/comments?id={YOUR_APP_ID}&view=queue

或者通过此处查看索引。

You will want to make sure you've specified your Facebook App ID in the header section:

<meta property="fb:app_id" content="{YOUR_APP_ID}">

This will give administrators of your application in-line access (in my experience it takes a bit to show up, possibly due to caching).

Keep in mind that Facebook recommends this approach over doing an admins meta when using multiple boxes. From Facebook seen here, scroll to Moderation Tools:

If your site has many comments boxes, we strongly recommend you
specify a Facebook app id as the administrator (all administrators of
the app will be able to moderate comments). Doing this enables a
moderator interface on Facebook where comments from all plugins
administered by your app id can be easily moderated together.

You can access this comment tool by going to the following link, after inserting your APP ID:

https://developers.facebook.com/tools/comments?id={YOUR_APP_ID}&view=queue

Or by viewing the index here.

倾`听者〃 2024-12-17 06:39:23

除非您在页面的 <meta> 中添加以下 OpenGraph 元标记,否则您将无法审核任何评论。 因此,请检查您的页面源代码

<meta property="fb:admins" content="YOUR_FACEBOOK_USER_ID"/>

是否已添加上述元标记。只有这样,您才能管理您页面上发布的评论。

You will not be able to moderate any comment unless you add the following OpenGraph meta tag in your page's <meta> section

<meta property="fb:admins" content="YOUR_FACEBOOK_USER_ID"/>

So please check your page source that you have added the above meta tag. Only then you will be able to moderate comments posted on your page.

比忠 2024-12-17 06:39:23

我遇到了这个问题,通过让 Facebook 使用 https://developers 重新抓取页面来解决这个问题。 facebook.com/tools/debug/。您可以在该页面上看到 Open Graph 标签,因此如果您的 fb:app_id 不存在,则它不会将评论插件与您的审核应用程序连接。

I had this problem and it was resolved by having Facebook re-scrape the page using https://developers.facebook.com/tools/debug/. You can see the Open Graph tags on that page so if your fb:app_id isn't there, it's not connecting commenting plug in with your moderation app.

半步萧音过轻尘 2024-12-17 06:39:23

还要确保 data-href 属性设置正确。我正在动态设置它,并且不小心输出了错误的域。一旦我更正它,新的评论就会出现在评论审核工具中(尽管旧的评论消失了,因为我将它们与错误的 URL 关联起来,哈哈)。

Also make sure the data-href attribute is set correctly. I was dynamically setting it and I was accidentally outputting the wrong domain. Once I corrected it, new comments now showed up in the comment moderation tool (though old comments vanished, since I was associating them with the wrong URL, haha).

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