我已经尝试使用FB.api将内容发布到我的Feed中几个小时了。我无法让它为我工作。我给了应用程序的权限。我可以使用PHP SDK发布到我的Feed,但我必须使用JavaScript。
<button onclick="doPost()">Post to Stream</button>
<script>
window.doPost = function() {
FB.api(
'/me/feed',
'post',
{ body: 'Trying the Graph' },
Log.info.bind('/me/feed POST callback')
);
};
</script>
有人能举例说明使用FB.api发布到Feed的简单HTML页面吗?
答案 0 :(得分:11)
嗯,我自己开始工作了。当我从头开始使用新的HTML文件时,我不确定第一次出了什么问题。我希望它会帮助某人:
<!DOCTYPE html>
<html xmlns:fb="http://www.facebook.com/2008/fbml">
<head>
</head>
<body>
<a href="#" onClick="postToFacebook()">Post to Facebook</a>
<script>
function postToFacebook() {
var body = 'Reading Connect JS documentation';
FB.api('/me/feed', 'post', { body: body, message: 'My message is ...' }, function(response) {
if (!response || response.error) {
alert('Error occured');
} else {
alert('Post ID: ' + response);
}
});
}
</script>
<div id="fb-root"></div>
<script>
window.fbAsyncInit = function() {
FB.init({
appId : 'YOUR APP ID GOES HERE',
status : true, // check login status
cookie : true, // enable cookies to allow the server to access the session
xfbml : true // parse XFBML
});
};
(function() {
var e = document.createElement('script');
e.src = document.location.protocol + '//connect.facebook.net/en_US/all.js';
e.async = true;
document.getElementById('fb-root').appendChild(e);
}());
</script>
</body>
</html>
答案 1 :(得分:4)
我在fb game-app上使用此代码 看起来像http://trupa.files.wordpress.com/2012/04/prscreenan.jpg
<a href="#" onClick="publishStory();" class="sendFeed"><br><font style="color:#FFF; text-decoration:none;padding-left:27px;">post to wall</font></a><br>
<script>
function publishStory() {
FB.ui({
method: 'feed',
name: 'message name',
caption: 'message caption ',
description: 'description goes here',
link: 'the url current page',
picture: 'if you want to add an image'
},
function(response) {
console.log('publishStory response: ', response);
});
return false;
}
</script>
答案 2 :(得分:2)
在第一个示例中,您忘记了“message”属性。没有“消息”,你可以发布每个人,但不是自我。