无法直接打开whatsapp聊天群邀请

Can't directly open whatsapp chat group invite

我需要打开一个 whatsapp 聊天组 link invite (https://chat.whatsapp.com/############) from my flutter app without opening the browser first. just using url_launcher and launch('https://chat.whatsapp.com/############') 在 android 上有效,但在 IOS 上它会先打开 Safari。

我在电报上遇到了同样的问题,但我发现了这个:tg://join?invite=XXXXXX,我 99% 确定它对 IOS 有效,但我没有找到 Whatsapp 的任何类似内容,除了 Whatsapp://send= 但它无法打开邀请

要在 iOS 上使用 url_launcher 的通用链接,您需要将 forceSafariVC 参数传递为 false,这样它就不会先打开 Safari 视图:

launch(url, forceSafariVC: false);