I am trying to open a specific facebook page from xamarin, I am trying with this if in the browser is https://www.facebook.com/Mysite
if (await Launcher.CanOpenAsync("fb://MySite"))
{
await Launcher.OpenAsync("fb://MySite");
}
but this, it only opens facebook but it does not go to the specific page
thanks in advance