【发布时间】:2011-08-22 22:25:10
【问题描述】:
在我的应用程序中,我想在 facebook wall 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>
【问题讨论】: