我正在使用Cordova的Facebook插件,我只想使用“分享”方法发布链接。
目标链接具有正确的Facebook元数据(og:title,og:image ...等)。
事情是它在Android上的功能就像一个魅力:它正确地发布图像和所有元数据。 在iOS上,对话框显示图像并将其发布,但是当我检查时间线时,图像未发布(标题和描述以及其他信息已发布)。
图像会发生什么变化?为什么它适用于Android而且在iOS上不起作用?有什么我想念的吗?
facebookConnectPlugin.showDialog({
method: "share",
quote: "¡Yolo!",
hashtag: "#yolo",
href: "http://lasonrisanomada.com",
mobile_iframe: true
}, function (response) {
console.log(response)
}, function (response) {
console.log(response)
}
);
非常感谢你的帮助。谢谢。
答案 0 :(得分:0)
尝试发送图片参数:
facebookConnectPlugin.showDialog({
method: "share",
quote: "¡Yolo!",
hashtag: "#yolo",
href: "http://lasonrisanomada.com",
picture: 'http://lasonrisanomada.com/image.png',
mobile_iframe: true
}, function (response) {
console.log(response)
}, function (response) {
console.log(response)
}
);