I want to open up zoom meeting url from my app in device's browser, i.e. Safari in iOS and Google chrome in Android.
Here is the url of zoom meeting: Meeting ID
I have successfully opened up this url in browser using Xamarin.Essential:
public async void Button_Clicked(System.Object sender, System.EventArgs e)
{
var zoomMeetUrl = "https://us04web.zoom.us/j/7850637100?
pwd=bnJwWC8xOHZod2VyMzZlMFAzUkJ5QT09";
await Browser.OpenAsync(zoomMeetUrl, BrowserLaunchMode.SystemPreferred);
}
But in iOS when I click on Launch meeting button in browser it gives this error message:
Safari cannot Open the Page because the Address Is Invalid
Does anyone know, how to fix this problem?
Note: Zoom app is installed in my device, still it gives same message.