I'm trying to open a Telegram bot from built-in Safari browser on iOS. The problem shows when a browser made a redirect link, but does not show a pop up confirmation window. Help please.
var url = 'https://t.me/mybot'
var redirect = function () {
window.open(url, '_system');
}
Sollution with window.location.href does not work neither.
Similar question: Open Telegram chat (with a Bot) from a iOS app