我正在我的网站上实施共享功能。
由于我的网站是SPA,我决定使用FB.ui和“share_open_graph”分享方法。
FB.ui({
method: 'share_open_graph',
action_type: 'og.shares',
action_properties: JSON.stringify({
object : {
'og:url': this.pageUrl,
'og:title': this.article.title,
'og:site_name': 'Dedicated To My Love - Gift Ideas',
'og:description': this.article.description,
'og:image': window.location.origin + '/' + this.article.detailImageUrl
}
})
}, function(response){});
上述代码的唯一问题是,我没有选择“将内容分享到我管理的页面”。
如果我使用“方法:分享”,我会同时选择“在我的墙上分享”以及“在我管理的页面中”。
如何克服这个问题?