2014-09-12 126 views
0

我正在開發phonegap應用程序並使用社交共享插件Cordova/Phonegap在Facebook上共享帖子和圖像。但是,當我試圖分享多個圖像不工作,並給出錯誤。多個圖像不與社交共享插件共享Cordova/Phonegap

我傳遞多幅圖像,如下陣列,

['image1','image2'] 

請幫我在這。

+0

哪個版本的插件是你usi NG?你能分享你正在使用的確切線路嗎? – 2014-09-12 13:52:35

+0

我已經從下面的URl下載,https://github.com/EddyVerbruggen/SocialSharing-PhoneGap-Plugin和我的代碼:window.plugins.socialsharing.shareViaFacebook('message',null,['image1','image2' ]); – 2014-09-12 14:02:21

回答

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']); 

我覺得你做你的參數的順序是錯誤的:它應該是消息,然後圖像數組然後爲空:

window.plugins.socialsharing.shareViaFacebook('message', ['image1','image2'], null);