I wonder how to open the official Facebook App for sharing an URI from my C# code on Windows Phone. The common Uri-Scheme like "fb://"
may open the App but no parameter seems to work. I have something like this in mind, but it will not work for me:
LaunchUriAsync(new Uri("fb://publish/profile/me?text=foo"));
Of course I know that I could use the ShareTask
but that's not what I want.
You can take a look at the Spotfy App, it does exactly, what I want to do, when sharing a song.
Thank you for your help and answers!
PS: Same with Twitter by the way...