0

自 2 周以来,我一直被社交插件评论框所困扰。我设法在我的 FB Fanpage 上安装了“Hike - Free Tab Builder”,并在那里插入了一个带有文本的 HTML 代码,我还在那里添加了一些框。为了调整这些框,我制作了一个应用程序(评论框)来获取 AppID,并完成了 fb.developers 教程中要求的所有操作。我将询问的 ID 作为元命令放在“head”部分中,并将其他任何内容放在“body”标签后面。

它永远无法连接到审核工具,我不能说什么是错的。我现在已经为此工作了 2 周,我询问并四处寻找答案,但没有成功。也许这里的任何人都可以给出答案。

这是我写的部分代码:

<!DOCTYPE html>

<html>
<head>

  <meta property="fb:admins" content="{10000113xxxxxxx}"/>
  <meta property="fb:app_id" content="{20368994xxxxxxx}"/>

    <title>Research</title>


<style type="text/css">

    P {font-family: arial; color: rgb(0, 0, 102); font-size: 1}
    H2 {font-family: arial; font-size: 4; color: rgb(153, 0, 0); font: bold}
    H3 {font-family: arial; font-size: 3; color: rgb(153, 0, 0); font: bold}
    HR {font-family: arial; width: auto}

</style>

</head>

<body>
<div id="fb-root"></div>
<script>
  window.fbAsyncInit = function() {
    FB.init({
      appId      : '203689xxxxxxx', // App ID
      channelUrl : '//channel.html', // Channel File
      status     : true, // check login status
      cookie     : true, // enable cookies to allow the server to access the session
      xfbml      : true  // parse XFBML
    });

    // Additional initialization code here
  };

  // Load the SDK Asynchronously
  (function(d){
     var js, id = 'facebook-jssdk', ref = d.getElementsByTagName('script')[0];
     if (d.getElementById(id)) {return;}
     js = d.createElement('script'); js.id = id; js.async = true;
     js.src = "//connect.facebook.net/en_US/all.js";
     ref.parentNode.insertBefore(js, ref);
   }(document));
</script>

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

<h2>Contents</h2>

(...)

<div class="fb-comments" data-href="https://www.facebook.com/(...)/app_151503908244383" data-num-posts="10" data-width="785"></div>

(...)
</body>
</html>

知道这里有什么问题吗?

4

1 回答 1

1

你必须定义 og:url、og:title 和 og:img。

http://developers.facebook.com/tools/debug是有用的工具。只需写下您的网址,让它对您说些什么。

于 2012-09-27T10:47:54.640 回答