gpt4 book ai didi

javascript - Facebook Connect FB.CommentClient.add_onComment 方法莫名其妙地停止工作

转载 作者:塔克拉玛干 更新时间:2023-11-02 21:37:18 25 4
gpt4 key购买 nike

我使用 FB Connect 已有一段时间了。自从我第一次实现下面的代码以来,它一直运行良好。

上周我做了一些服务器配置以启用 mod_deflate,但它已停止工作。注释起作用了,只有回调函数停止了。

有没有人有过类似的经历?谁能推荐一个解决方案?

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" 
"http://www.w3.org/TR/html4/frameset.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:fb="http://www.facebook.com/2008/fbml">
<head>
</head>
<body>
<script src="http://static.ak.connect.facebook.com/js/api_lib/v0.4/FeatureLoader.js.php" type="text/javascript"></script>
<fb:comments></fb:comments>
<script type="text/javascript" language="JavaScript">
FB_RequireFeatures(["XFBML"], function(){
FB.Facebook.init("myapikeygoeshere", "{site_url}connect/xd_receiver.htm");
FB_RequireFeatures(["Comments"], function() {
FB.CommentClient.add_onComment(function(comment){
alert("after");
});
});
});
</script>
</body>
</html>

这里有一些有用的链接:

http://drupal.org/node/715862http://www.daffodilsw.com/blog/2009/11/Add-Facebook-Comment-box-in-Site.html http://developers.facebook.com/docs/reference/fbml/

最佳答案

解决方法:

升级到更新版本的 SDK。旧的有错误...

在新版本中,这将是这样的:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" 
"http://www.w3.org/TR/html4/frameset.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:fb="http://www.facebook.com/2008/fbml">
<head>
</head>
<body>
<fb:comments xid="1" canpost="true" candelete="true" numposts="10" showform="true" notify="true" returnurl="[[my url goes here]]">
</fb:comments>
<div id="fb-root"></div>
<script src="http://connect.facebook.net/en_US/all.js"></script>
<script>
FB.init({
appId : "[[my app id goes here]]",
status: true,
cookie: true,
xfbml : true
});
FB.Event.subscribe('comments.add',function(resp){
alert('comment added');
});
</script>
</body>
</html>

关于javascript - Facebook Connect FB.CommentClient.add_onComment 方法莫名其妙地停止工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3888166/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com