FBJS streem发布不起作用

时间:2011-08-22 13:37:53

标签: facebook fbjs

在我的应用程序中,我想在facebook墙上发布短信streemPublish但是它不起作用,有人能告诉我我做错了什么,否则指导我一个好的工作教程, 以下代码也没有显示任何错误....

这是我的代码......

<body>
<script src="http://static.ak.connect.facebook.com/js/api_lib/v0.4/FeatureLoader.js.php" type="text/javascript"></script>

<script type="text/javascript">

function publish() {
 FB_RequireFeatures(["Connect"], function() {
   FB.Facebook.init('113700398662301', 'xd_receiver.htm');
                FB.ensureInit(function() {

                    var message = 'this is message';

                    var action_links = [{ 'text': 'Vote for Bill The Aircraft Carrier!', 'href': 'http://spayday.factor360.com/contest.html?page=viewInd&id=48082&contestId=2'}];
                    FB.Connect.streamPublish(message, action_links, null, "Share your support for Bill The Aircraft Carrier!", callback, false, null);
                });

    function callback(post_id, exception) {
        alert('Wall Post Complete');
    }

 });
}
</script>

</body>
<p>Stream Publish Test</p>
<a href="#" onclick="publish(); return false;">Post a story</a>

</html>

1 个答案:

答案 0 :(得分:0)

代码看起来有点过时了。检查此项以获取有关流发布的更新信息

https://developers.facebook.com/docs/reference/javascript/FB.ui/

这用于设置FB初始化。

https://developers.facebook.com/blog/post/525/