我已经设法让分享按钮工作,但它没有为每个图像正确格式化帖子,所以我尝试了 FB.ui 方法,但这似乎只允许我发布到我自己的墙上???我完全没有得到 FB Api 吗?开发人员 Facebook 页面上的文档非常糟糕......
var fbConfig = {
method: 'feed',
display: 'popup',
name: scope.content.post.post_title,
link: scope.link,
picture: scope.content.image.src,
caption: scope.content.post.post_title + ' is featured on The Sexiest Non Profit Ever\'s website',
// description: 'a slightly longer description...',
// redirect_uri: 'http://www.thesexiestnonprofitever.org/'
};
FB.ui(fbConfig, function(response){
});