1

我想在我的 WordPress 页面上有一个“赞”Facebook 按钮。我尝试使用 Facebook 文档中的插件和直接代码。两者都有效,但我的“喜欢”不会在我的时间线上发布。我确实把我的 AppID 放在那里,它会是什么?

FB根代码:

<div id="fb-root"></div>
<script>(function(d, s, id) { var js, fjs = d.getElementsByTagName(s)[0]; if (d.getElementById(id)) return; js = d.createElement(s); js.id = id; js.src = "//connect.facebook.net/pl_PL/all.js#xfbml=1&appId=###"; fjs.parentNode.insertBefore(js, fjs); }(document, 'script', 'facebook-jssdk'));</script>`

fb:喜欢代码:

<fb:like href="<?php echo $_SERVER["HTTP_HOST"] . $_SERVER["REQUEST_URI"] ?>" send="true" width="450" show_faces="false"></fb:like>`
4

5 回答 5

0

这是您的 html 示例。

*给你一些提示,如果你不确定你的网站格式是否正确,不要简单地喜欢你的页面,因为它会向 facebook 提交错误标题/图像/描述/内容等的记录。

 <html xmlns="http://www.w3.org/1999/xhtml"
  xmlns:og="http://ogp.me/ns#"
  xmlns:fb="https://www.facebook.com/2008/fbml">
 <head>
<title>WooTube</title>
<meta property="og:title" content="WooTube"/>
<meta property="og:type" content="website"/>
<meta property="og:url" content="http://www.wootube.woolei.com"/>
<meta property="og:image" content="http://i.ytimg.com/vi/LD-rmC2i624/default.jpg"/>
<meta property="og:site_name" content="WooTube"/>
<meta property="fb:admins" content="568394401"/>
<meta property="og:description"
      content="WooTube - Share Video To All Your FaceBook Group With 1 Click!"/>
 </head>
 <body>

于 2012-10-09T15:24:11.277 回答
0

检查您在 Facebook 上的活动日志,看看您的个人资料上是否显示了“赞”。点赞可能已发布为“最近的活动”或个人“有人喜欢...”的帖子。

于 2012-10-09T10:43:58.023 回答
0

您需要提交您的 Facebook 应用以供审核,然后“赞”才会出现在用户的时间线中,通过 Facebook 的应用仪表板 >> 状态和审核 >> 开始提交:

https://developers.facebook.com/docs/apps/review

于 2014-08-12T09:26:11.247 回答
0

I would use the Facebook debugger to lint your site/page where the like button resides:

https://developers.facebook.com/tools/debug

This will tell you if you have any issues with the like button and or the OG tags on the page.

Hope this helps.

于 2012-10-09T13:01:53.857 回答
0

可能我有点晚了:)但鉴于我没有看到一个可接受的答案......

您是否能够从FB 调试器中看到正确的点赞数?

如果不是,可能值得验证以下代码的结果是否代表正确的 URL(并且具有正确的编码):

<fb:like href="<?php echo $_SERVER["HTTP_HOST"] . $_SERVER["REQUEST_URI"] ?>
于 2017-04-10T16:53:56.087 回答