Facebook 网站和 Facebook 页面上的评论

发布于 2024-10-29 11:04:56 字数 206 浏览 1 评论 0原文

我有一个网站,每个页面上都有 facebook 评论社交插件,并且我有 facebook 页面,我在其中通过 RSS(通过 dlvt.it)从我的网站将项目发布为“共享链接”。项目链接是相同的。

现在两个地方的评论不同(在 Facebook 页面和网站上)

问题是如何使 Facebook 页面项目上的评论也出现在我网站的评论表单上?

问候, 安东.

I have a web-site, where I have facebook comments social plugin on each page and I have facebook page, where I publish items as "shared links" from my site via RSS (through dlvt.it). Links to items are the same.

Now comments are diferent in two places (on facebook page and on web-site)

The question is how can I make that comments on facebook page items appears also on my web-site's comment form ?

Regards,
Anton.

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

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

发布评论

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

评论(1

最冷一天 2024-11-05 11:04:56

您需要创建一个 Facebook 应用程序。创建后,您将获得您的 app_id。然后,您可以在您的网站中添加:

xmlns="http://www.facebook.com/2008/fbml"> 到您的 HTML 标记,然后添加到 body< /code> 标签:

<script src="http://connect.facebook.net/en_US/all.js#appId=YOURAPPID&xfbml=1"></script>
<script type="text/javascript">
FB.init({
        appId: 'YOUR APP ID',
        status: true, // check login status
        cookie: true, // enable cookies to allow the server to access the session
        xfbml: true  // parse XFBML
    });
</script>

这将允许您从您的网站访问 Facebook 插件。因此,对于评论,您可以使用:

You need to create a Facebook application. Once you have created this, you'll get your app_id. In your website, you can then add:

xmlns="http://www.facebook.com/2008/fbml"> to your HTML tag, and then add in the body tag:

<script src="http://connect.facebook.net/en_US/all.js#appId=YOURAPPID&xfbml=1"></script>
<script type="text/javascript">
FB.init({
        appId: 'YOUR APP ID',
        status: true, // check login status
        cookie: true, // enable cookies to allow the server to access the session
        xfbml: true  // parse XFBML
    });
</script>

This will allow you to access Facebook plugins from your website. So, for comments you can use:

<fb:comments href="Your Page" num_posts="10"></fb:comments>

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