Open External Browser doesn't work on Safari

Hi.

I have a problem about open external URL
i try to use

Option 1

webBrowserTools.showWebPage("https://cuba-platform.com", ParamsMap.of("_target", "blank"));

Option2

  AppUI.getCurrent().getWebBrowserTools().showWebPage("http://www.cuba-platform.com", null);

Option3
< link caption=“Link” url=“https://www.cuba-platform.com” target=“_blank” rel=“noopener” >

But all of those solutions are work on chrome but not for Safari (via iphone default browser)
Are there any solution??

Thank you in advance

Hi,

Safari blocks popups by default, e.g.:

Possible reason is that dev environment doesn’t use HTTPS.

On iOS Safari this happens unnoticed by the user.

In iOS you can allow Safary to open popups: Go to Settings > Safary > Block Pop-ups - unckeck. As a result you’ll get the following confirmation then opening popups:

The 3rd options with <link ... /> works for me either way.

Gleb