我正在开发phonegap应用程序并使用Social Share Plugin Cordova / Phonegap在Facebook上分享帖子和图片。但是,当我尝试共享多个图像时,它不起作用并给出错误。
我将多个图像作为数组传递,如下所示
['image1','image2']
请帮我解决这个问题。
答案 0 :(得分:2)
引用文档from the plugin github page:
// sharing multiple images via Facebook (you can mix protocols and file locations)
window.plugins.socialsharing.shareViaFacebook(
'Optional message, may be ignored by Facebook app',
['https://www.google.nl/images/srpr/logo4w.png','www/image.gif'],
null);
您在此处表示(在评论中)您执行了以下操作:
window.plugins.socialsharing.shareViaFacebook('message', null,['image1','image2']);
我认为你按照参数的顺序犯了一个错误:它应该是消息然后是images array然后为null:
window.plugins.socialsharing.shareViaFacebook('message', ['image1','image2'], null);