通用 link 不适用于 http 方案
Univeral link not working with http scheme
在离子框架 (v3) 中使用通用 link。它在 android、ios(https 方案)中运行良好,但不适用于 http 方案。
我在某处看到我可以签署 apple-app-site-association 文件并上传到 http 网站,但那是 ios < 9。
我正在寻找以下 url 的解决方法:
要支持通用链接,您必须上传 apple-app-site-association
文件,仅使用 https
,如 https://developer.apple.com/documentation/security/password_autofill/setting_up_an_app_s_associated_domains?language=objc
中所述
然后您可能支持重定向到您的应用程序的 http 链接(但如果您有有效的 SSL 证书,为什么要通过 http
提供内容)
在离子框架 (v3) 中使用通用 link。它在 android、ios(https 方案)中运行良好,但不适用于 http 方案。
我在某处看到我可以签署 apple-app-site-association 文件并上传到 http 网站,但那是 ios < 9。
我正在寻找以下 url 的解决方法:
要支持通用链接,您必须上传 apple-app-site-association
文件,仅使用 https
,如 https://developer.apple.com/documentation/security/password_autofill/setting_up_an_app_s_associated_domains?language=objc
然后您可能支持重定向到您的应用程序的 http 链接(但如果您有有效的 SSL 证书,为什么要通过 http
提供内容)