$cordovaSocialSharing.share can not share image to wechat app

i write code like below, but when i add image to option, it cant share to wechat. If i remove image then i can share to wechat…

Please suggest me how can i share text with image

var message = “Here is my msg”;
var subject = “testing”;
var image = “www.someURL.com/image.png”;
var link = “www.google.com”;

$cordovaSocialSharing.share(message, subject, image , link)
.then(function(result) {

}, function(err) {

});