我正在使用javascript sdk来显示FB对话框,以便在用户的墙上发布Feed。这很好地贴在墙上,但当你点击墙上的Feed中的“分享”链接时,“分享这个故事”对话框只显示“平台故事分享”
即使使用FB api文档中的示例代码,我也能得到它。
任何人都有任何想法为什么会这样?或者,如何删除Feed中的“共享”链接
附件是截图
例如来自FB docs
<script>
FB.init({appId: "YOUR_APP_ID", 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.'
};
function callback(response) {
document.getElementById('msg').innerHTML = "Post ID: " + response['post_id'];
}
FB.ui(obj, callback);
}
</script>
答案 0 :(得分:3)