Ionic social sharing with deep links

I’m using deeplinks and i share the URL with the social sharing plugins, the issue is that the link isnt sent as a string not a link.

Example

this.socialSharing.shareViaFacebook(msg + " myapp://home/article/"+id, img).then(() => {
//
});

I tried a script on codepen and its working perfectly.

Did you get this to work? I am currently have the same issue.

No still no replies :confused:

try this and see if it works.

  this.socialSharing.share(msg, null, img, "myapp://home/article/"+id).then(() => {
  //
  });