I am trying to launch twitter app from my own application for sharing reason. I find facebook from link and I would like to launch twitter as well.
I used below to launch it and share my text, It launches twitter but my text is not shared.
await Windows.System.Launcher.LaunchUriAsync(new Uri("twitter:tweet?text=" + getMessageToShare(selectedAya) + ""));
The above launches Twitter App!
Any ideas, How to share text with it?
Thanks!