我正在尝试分享动画GIF在Ionic2中投掷社交共享本机插件。问题是动画gif被转换为静态gif。
我的功能是:
Multiple actions were found that match the request:
↵System.Collections.Generic.IList`1[System.String] GetFoo(System.String) on type Controllers.MyController
↵System.Collections.Generic.IList`1[System.String] GetBar() on type Controllers.MyController"
Url param是图片的互联网网址。 我尝试下载图像并调用whatsappShare函数后得到相同的结果。有什么想法吗?
whatsappShare(url:string){
console.log("Compartir por Whatsapp");
SocialSharing.shareViaWhatsApp("Message via WhatsApp",url,null)
.then((ok)=>{
console.log("Success");
console.log(ok)
},
(err)=>{
console.log("failed")
console.log(err);
})
}
谢谢!