如何在单击按钮时在Facebook上共享图像?
我使用了他们的opengraph api。但似乎不起作用。谁能分享工作样本
FB.ui({
method: 'share_open_graph',=
action_type: 'og.likes',
action_properties: JSON.stringify({
object: {
'og:url': 'https://www.example.com',
'og:title': 'This is an example',
'og:description': 'This is an example',
'og:image': 'https://www.example.com/xxx.jpg'
}
})
},
function (response) {
// Action after response
});