gpt4 book ai didi

iOS 通用链接 : Tapping universal link inside the Application redirects me to safari instead of continuing in the application

转载 作者:行者123 更新时间:2023-12-05 06:53:46 25 4
gpt4 key购买 nike

我正在使用内部调用 UIApplication.shared.OpenUrl 以在应用程序中打开通用链接的第三方 SDK

但不是在 application:(UIApplication *)application continueUserActivity 中获得回调,而是在 Safari 中打开链接。

我想继续在应用程序中处理通用链接,而不是转移到 Safari。

Note: I cannot use Custom URL scheme due to project restrictions.When I use iPhone Notes application that universal link; tapping on the link opens my application.

https://frozen-garden-86689.herokuapp.com/apple-app-site-association

最佳答案

您必须在您的应用程序中添加关联域并在此路径上将文件上传到您的网站

https://yourwebsite.com/.well-known/apple-app-site-association

在 apple-app-site-association 中你必须准确添加这个 JSON

{
"applinks": {
"apps": [],
"details": [{
"appID": "xxxxxx", // your appID here like 2u19IxOp1.com.mybudleid.app
"paths": ["/g/*"] //it should be same
}]
}
}

在路径上放置准确的 JSON 后,在浏览器上点击它应该显示此 JSON 文件的路径

重要!* 并且必须在您的 Xcode 项目中添加关联域,这将是 applinks:yourwebsite.com

在这里您的链接将开始重定向到您的应用程序而不是 safari

关于iOS 通用链接 : Tapping universal link inside the Application redirects me to safari instead of continuing in the application,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65695757/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com