我为FB制作了一个小应用程序,它使用FB.ui来允许用户在墙上分享它。我希望共享帖子在“评论”和“赞”旁边显示“分享”链接,就像在任何普通的墙上帖子一样。
有没有办法用FB.ui做到这一点?
或者是否还有其他一些方法可以让我在壁柱上定义自定义图像,标题,描述等?
我目前的代码:
function share(name, description) {
FB.ui({
method: 'feed',
name: name,
picture: '/img/fb.png',
link: url,
caption: '',
message: '',
description: description
}, function() {
});
}
答案 0 :(得分:5)
可以使用share_open_graph
方法完成。代码看起来应该是这样的
FB.ui({
method: 'share_open_graph',
action_type: 'og.shares',
action_properties: JSON.stringify({
object : {
'og:url': 'http://astahdziq.in/', // your url to share
'og:title': 'Here my custom title',
'og:description': 'here custom description',
'og:image': 'http://example.com/link/to/your/image.jpg'
}
})
},
// callback
function(response) {
if (response && !response.error_message) {
// then get post content
alert('successfully posted. Status id : '+response.post_id);
} else {
alert('Something went error.');
}
});
答案 1 :(得分:0)
FB.ui({
method: 'share',
href: 'https://developers.facebook.com/docs/',
}, function(response){});
要定义自定义图片,标题,说明,请在页面顶部使用Open Graph Tags:
<meta property="og:url" content="http://samples.ogp.me/136756249803614" />
<meta property="og:title" content="Chocolate Pecan Pie" />
<meta property="og:description" content="This pie is delicious!" />
<meta property="og:image" content="https://fbcdn-dragon-a.akamaihd.net/hphotos-ak-prn1/851565_496755187057665_544240989_n.jpg" />
效果将是:
答案 2 :(得分:-1)
您必须使用操作属性 请参阅文档here