我正在尝试使用fb.ui来打开一个对话框,这样我的用户就可以在他们的朋友墙上发帖了。 我正在尝试facebook最基本的样本:
<div id='fb-root'></div>
<script src='http://connect.facebook.net/en_US/all.js'></script>
<p><a onclick='postToFeed(); return false;'>Post to Feed</a></p>
<p id='msg'></p>
<script>
FB.init({appId: "YOUR_APP_ID", status: true, cookie: true});
function postToFeed() {
// calling the API ...
var obj = {
method: 'feed',
redirect_uri: 'YOUR URL HERE',
link: 'https://developers.facebook.com/docs/reference/dialogs/',
picture: 'http://fbrell.com/f8.jpg',
name: 'Facebook Dialogs',
caption: 'Reference Documentation',
description: 'Using Dialogs to interact with users.'
};
function callback(response) {
document.getElementById('msg').innerHTML = "Post ID: " + response['post_id'];
}
FB.ui(obj, callback);
}
一切看起来都很棒,回调被调用,我看到了post_id但是当我进入facebook时,我看不到朋友墙上的实际帖子..
答案 0 :(得分:1)
我发现了什么问题.. 我的应用程序处于沙盒模式,因此我确实获得了post_id,但应用程序并没有真正发布。
答案 1 :(得分:0)
您需要在对象“obj”中指定“to”属性,以将其发布到朋友的墙上。属性值应该是您要在其墙上发布的朋友的uid。
https://developers.facebook.com/docs/reference/dialogs/feed/