Facebook通过网址发布

时间:2014-03-09 16:05:18

标签: facebook share

我正在尝试将此发送到Facebook并且它的作品除了标题“Some Page Title”没有显示在帖子中。 Example

我正在使用的格式:

https://www.facebook.com/sharer/sharer.php?u=<url>&t=<page title>

是否不再支持传递标题?

TIA

1 个答案:

答案 0 :(得分:1)

要覆盖Open Graph元标记,您只需使用需要应用ID的feed方法

JS

$('#facebook-share').click(function (e) {
    e.preventDefault();
    FB.ui({

        method: 'feed', // feed method! 
        name: 'My title', // overwrites "og:title"
        link: 'https://www.facebook.com/Retrogram', // required param
        picture: 'http://i.imgur.com/SKwsQM2.png?1', // overwrites "og:image"
        caption: 'My caption', // overwrite caption
        description: 'My description' // overwrites "og:description"

    });
});

Fiddle