我无法在Facebook上共享我的单页应用程序中的内容。 我正在使用AngularJs,但屏幕上的数据未在Facebook上共享
当我单击共享按钮时,我能够在控制台中列出json数据,但是该数据未在facebook页面上共享。 facebook上的输出未列出我想要的数据。只有一个徽标出来
到目前为止,这是我的代码。单页应用程序数据未在Facebook上共享
<meta property="og:url" content="my-domain"/>
<meta property="og:type" content="website"/>
<meta property="og:title" content="mu-name"/>
<meta property="og:image" content=""/>
<meta property="og:description" content="Description about your website"/>
self.feed = function (content) {
FB.ui({
method: 'share_open_graph',
action_type: 'og.shares',
action_properties: JSON.stringify({
object: {
'og:url': content.url,
'og:title': content.title,
'og:site_name': content.name,
'og:description': content.description,
'og:image': content.picture,
'og:image:width': '200',
'og:image:height': '200'
}
})
});
}
当前,我已经准备好处理json中的数据,但无法将其发送到Facebook。我想列出共享中的所有信息,例如图像,描述,URL ... 我想根据共享的内容来动态化数据