以下のコードを使って自分のサイトからFacebookのリンクを共有しようとしましたが、壁にしか表示されません。共有されたものをFacebookの壁とニュースフィードの両方に表示したいのですが、その方法はありますか?
FB.ui(
{
method: 'feed',
name: 'Facebook Dialogs',
link: 'http://developers.facebook.com/docs/reference/dialogs/',
caption: 'Reference Documentation',
description: 'Dialogs provide a simple, consistent interface for applications to interface with users.'
},
function(response) {
if (response && response.post_id) {
alert('Post was published.');
} else {
alert('Post was not published.');
}
}
);