使用 Fb.ui 提要方法,而不是直接通过图形 API 发布帖子。这将打开一个弹出对话框,用户可以接受在墙上发布或取消:
FB.ui(
{
method: 'feed',
name: 'Facebook Dialogs',
link: 'https://developers.facebook.com/docs/reference/dialogs/',
picture: 'http://fbrell.com/f8.jpg',
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.');
}
}
);
注意:此处的所有链接都应指向您在画布 url 中指定的域
更好的方法是使用开放图形操作,而不是仅仅在墙上发布故事。打开图表操作显示在时间线的活动部分。这些故事很小,因此看起来不像是向用户墙发送垃圾邮件。如果帖子数量很高,则将其汇总/合并在一起。