将Like按钮放在我的网站上有两个问题

时间:2012-09-18 14:33:01

标签: php facebook-like

我是一个网站的PHP开发人员,最近用更新的代码示例替换了Sharer.php代码。 Like按钮显示正常,但是当您单击它时,弹出窗口仅显示一两秒,然后消失。此外,描述不会显示在弹出窗口中 - 只显示URL。 Like按钮代码包含在可由用户隐藏的DIV容器中(使用JQuery),页面上有AJAX可自动每分钟查询一次表以刷新屏幕上的计数器。

以下是一些代码段,以防他们提供帮助,敬请任何帮助:

<meta property="og:title" content="FourFreedomsBlog - Romney/Ryan: Channeling the  inner McCain" />
<meta property="og:description" content="The Romney/Ryan campaign is evoking an eerie recollection of the McCain campaign of 2008: trust us - you'll get the details AFTER we're elected." />
<meta property="og:url" content="http://www.fourfreedomsblog.com/Blog.php?Act=ViewBlogPost&amp;BlogID=2090" />
<meta property="og:image" content="http://www.FourFreedomsBlog.com/images/4Fv3.0.gif" />
<meta property="og:type" content="website" />
<meta property="og:site_name" content="FourFreedoms Blog" />
<meta property="fb:admins" content="14194340826" />

<div class="ShareThisContainer">

<div class="FoldingMenu">
  <h4><button id="showShareThis" class="ButtonHide" /></button><span name="" id="">Share This!</span></h4>

  <div id="SharePane" class="TogPane ItemHide">

    <table class="ShareThis">
      <tr>
        <td colspan=8>

          <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/en_US/all.js#xfbml=1";
              fjs.parentNode.insertBefore(js, fjs);
            }
            (document, 'script', 'facebook-jssdk'));
          </script>

          <div class="fb-like" data-href="http%3A%2F%2Fwww.FourFreedomsBlog.com%2FBlog.php?Act=ViewBlogPost&BlogID=2090" data-send="true" data-width="320" data-show-faces="true"></div>

        </td>
      </tr>
    </table>

  </div><!-- id=SharePane -->

</div><!-- class=FoldingMenu -->
</div><!-- class=ShareThisContainer -->

1 个答案:

答案 0 :(得分:0)

  

<div class="fb-like" data-href="http%3A%2F%2Fwww.FourFreedomsBlog.com%2FBlog.php?Act=ViewBlogPost&BlogID=2090" …

首先,不会对此处data-href参数的值进行网址编码。

其次,在您的域名中使用大写字母 - Facebook刮刀在使用大写字母的域名上失败 - 比较

https://developers.facebook.com/tools/debug/og/object?q=http%3A%2F%2Fwww.FourFreedomsBlog.com%2FBlog.php%3FAct%3DViewBlogPost%26BlogID%3D2090

VS

https://developers.facebook.com/tools/debug/og/object?q=http%3A%2F%2Fwww.fourfreedomsblog.com%2FBlog.php%3FAct%3DViewBlogPost%26BlogID%3D2090

然后,最后,修复调试工具显示的错误:

  

对象无效值:“网站”类型的网址“http://www.fourfreedomsblog.com/Blog.php?Act=ViewBlogPost&BlogID=2090”上的对象无效,因为属性的给定值“14194340826” fb:admins'无法解析为'fbid'类型。

14194340826是Facebook 群组的ID - 但群组不能是任何“管理员”,只需普通用户帐户即可。