iOS是否支持关联域的通配符? (* .company.com)

问题描述 投票:0回答:1

我需要创建一个具有GUID.company.com格式的URL的解决方案。 GUID是客户提供的,并重定向到客户端托管的产品实例。

我们的想法是,客户可以在我们的工厂或自己的实例上托管他们的实例,其中任何一个都没有停机。此外,这将允许客户通过URL链接微调他们想要自动启动的应用程序版本。 (通过编辑./.well-known文件完成)

以下是我想为客户提供的部署选项

https://guid1.company.com -> 301 redirect to multitenant hosted -> launch app if installed

https://guid2.company.com -> 301 redirect to client-hosted -> launch app if installed

https://guid3.company.com -> cloud flare redirect logic -> launch app if installed

我对iOS用户的问题(并且对android有同样的问题)是否可以解决这个问题?

ios xamarin.ios info.plist wildcard-subdomain associated-domains
1个回答
1
投票

要在您的应用中支持通用链接,请执行以下步骤:

  • 添加指定您的应用支持的域的权利。
  • 更新您的应用委托以在收到NSUserActivity对象时做出适当的响应。

有关更多信息,您可以访问链接Support Universal Links

© www.soinside.com 2019 - 2024. All rights reserved.