在我的应用程序中,我想在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>发布于 2011-08-22 22:25:10
代码看起来有点过时。有关流发布的更新信息,请查看此信息
https://developers.facebook.com/docs/reference/javascript/FB.ui/
这是用来设置你的FB初始化的。
https://stackoverflow.com/questions/7148334
复制相似问题