1

我为 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() {
            });
    }
4

3 回答 3

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.');
    }
});
于 2015-10-08T08:25:49.023 回答
0

对于动作_share

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" />

效果将是:

在此处输入图像描述

于 2014-08-22T02:16:41.317 回答
-1

您必须使用action属性,请参阅此处的文档

于 2012-05-04T07:41:10.043 回答