我正在使用 JavaScript SDK 来实现提要功能。这是我的问题,如果用户登录并单击分享按钮,Facebook 能够在时间轴中看到帖子,但它没有反映在主页中。
我该如何解决这个问题?
我正在使用此代码-
FB.init({appId: "XXXXXXXXX",show_error:true, status: true, cookie: true});
function postToFeed() {
// calling the API ...
var obj = {
method: 'feed',
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.'
};
FB.ui(obj, callback);
}