社交分享和GIF动画与离子2

时间:2016-11-28 17:51:10

标签: angular typescript ionic2 cordova-plugins

我正在尝试分享动画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);
      })
  }

谢谢!

0 个答案:

没有答案