在我尝试一切我认为能够做到,但徒劳无益的时候,任何帮助都将受到高度赞赏。
我正在使用Facebook最新版本(截至上周)fb:comments系统,但无法获得FB。 活动. 提交评论.create和FB.Event. 提交评论.remove to work。
参看here。
我是首当其冲的菲克斯·阿萨尼。
<script type="text/javascript">
//<![CDATA[
window.fbAsyncInit = function() {
FB.init({appId: 191116444251564 , status: true, cookie: true, xfbml: true});
FB.Event.subscribe( comments.create , function (response) {
// console.log( create , response);
//got response.... now query FQL to return total number of post counts
FB.api(
{
method: "fql.query",
query: "SELECT count FROM comments_info WHERE xid= 2_plain-basmati-rice---rice-cooker and app_id= 191116444251564 "
},
function(fql_response) {
$j.post( /recipes/2_plain-basmati-rice---rice-cooker/commented , {count: fql_response[0].count});
}
);
});
FB.Event.subscribe( comments.remove , function (response) {
//got response.... now query FQL to return total number of post counts
// console.log( remove , response);
FB.api(
{
method: "fql.query",
query: "SELECT count FROM comments_info WHERE xid= 2_plain-basmati-rice---rice-cooker and app_id= 191116444251564 "
},
function(fql_response) {
$j.post( /recipes/2_plain-basmati-rice---rice-cooker/commented , {count: fql_response[0].count});
}
);
});
};
(function() {
var e = document.createElement( script );
e.async = true;
e.src = document.location.protocol + //connect.facebook.net/en_US/all.js ;
document.getElementById( fb-root ).appendChild(e);
}());
//]]>
</script>
用简单的警示(tst)取代两个用户报警。
我用FB的中子对网页进行了测试,没有显示该特定页的错误。
同样,我对任何人的感谢可以提供任何假肢或点击器。