0

我正在尝试将使用社交插件的 facebook 评论框添加到将作为 facebook 应用程序在 facebook 内运行的应用程序中。

当我通过其 url 查看应用程序时,它工作正常,但是当我在 dev facebook 应用程序中查看应用程序时,评论插件不会加载。有谁知道这是否可能或是否需要任何其他设置。

我尝试将 data-href 设置为提供应用程序的 url,而 facebook 应用程序的 url 似乎都不起作用

<div class="fb-comments" data-href="[MYDOMAIN]” data-num-posts="30" data-width="470"></div>

该代码只是来自 fb js sdk 的标准片段

<div id="fb-root"></div>
<script>
  window.fbAsyncInit = function() {
    FB.init({
      appId      : '[MYAPPID], // App ID
      status     : true, // check login status
      cookie     : true, // enable cookies to allow the server to access the session
      xfbml      : true  // parse XFBML
    });
    FB.Canvas.setAutoGrow();
    // 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));

4

1 回答 1

0

尝试提供频道文件和频道网址。

来自Facebook JavaScript SDK 文档“...包含跨框架通信的代码的页面可能会导致社交插件在没有 channelUrl 的情况下显示为空白...”

FB.init({
    appId      : 'YOUR_APP_ID', // App ID
    channelUrl : '//WWW.YOUR_DOMAIN.COM/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
});
于 2012-06-13T15:19:27.137 回答