Facebook comment.create没有触发移动 - ios Safari和Android浏览器

时间:2013-07-24 20:32:12

标签: javascript web-applications facebook-javascript-sdk

这让我发疯了 - 我无法在移动设备上获取facebook comment.create事件(不是我测试过的工作)。登录事件工作正常(auth.authResponseChange)

<html>
<head></head>
<body>
<div id="fb-root"></div>
<script>
  window.fbAsyncInit = function() {
  FB.init({
    appId      : 'MYAPPID', // App ID
    channelUrl : '//WWW.MYAPPURL.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
  });

    FB.Event.subscribe('comment.create', function(response) { alert("1"); });
//  FB.Event.subscribe('auth.authResponseChange', function(response) {alert("1"); });

  };

  // 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 = "http://connect.facebook.net/en_US/all.js";
   ref.parentNode.insertBefore(js, ref);
  }(document));


</script>


<fb:login-button show-faces="true" width="200" max-rows="1"></fb:login-button>


comments
<div class="fb-comments" data-notify="true" data-href="http://test/test.htm" data-width="470" data-num-posts="10"></div>
</body>
</html>

1 个答案:

答案 0 :(得分:0)

请注意,这仍是一个持续的FB bug