我正在尝试将此发送到Facebook并且它的作品除了标题“Some Page Title”没有显示在帖子中。 Example
我正在使用的格式:
https://www.facebook.com/sharer/sharer.php?u=<url>&t=<page title>
是否不再支持传递标题?
TIA
答案 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"
});
});