我正在尝试使用facebook-SDK将图像共享到facebook,但是出现的弹出窗口未显示我试图共享的图像。
我已经尝试过这个jquery脚本:
FB.ui({
method: 'share_open_graph',
action_type: 'og.shares',
action_properties: JSON.stringify({
object: {
'og:url': 'https://www.nuptial.me/album-content?d=1',
'og:title': 'Any Title',
'og:description': 'Any Description',
'og:image:width': '461',
'image:height': '369',
'og:image' : 'https://images.nuptial.me/WedsiteImages/PreWedding1/Ahmad-Zeina-Pre-Ceremony-pictures-1805525916T1549016723.jpg',
'og:image:type': 'image/jpeg'
}
})
}, function (response) {
if ($.isEmptyObject(response)) {
// do something
}
});
我期望图像应该共享,但是出现的弹出窗口不显示图像。
(请检查此图片)
https://i.stack.imgur.com/QqHU2.png
谢谢