ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
## **Universal Link**   Universal Links(通用链接),是苹果在iOS9之后,提供的一种“可通过传统HTTP链接来跳转APP”的能力。 该特性相较于传统的Custom URL Scheme方式,具备唯一、安全、私有和简单的优势 #### **苹果官网APP ID的配置** 在苹果官网[https://developer.apple.com/](https://developer.apple.com/)申请APP ID时勾上Associated Domains。然后生成相应的配置文件证书上传到网站![](http://h-img.bslyun.com/2b61e69c04af955602d88884122a9fcf) **配置要求** Universal Link,必须要求跨域。 例如:打包网址为[https://www.zhihu.com](https://www.zhihu.com) 而使用oia.zhihu.com做Universal Link。(https://oia.zhihu.com 是可以在浏览器打开的 比如谷歌浏览器) **服务器建文件** 自己的网站支持https,并且是可以访问到的网站。比如确定使用https://域名/ 文件名:apple-app-site-association (无后缀,固定名称) 内容: ``` { "applinks": { "apps": [], "details": [ { "appID": "自已开发者账号的Team ID值.应用的bundle id", "paths":["*","/qq_conn/{APPID} /*"] } ] } } ``` 文件放到网站的可访问的根目录中,确保https://域名/apple-app-site-association能访问。 例如:https://oia.zhihu.com/apple-app-site-association **App验证** 在备忘录中输入 https://Universal Link。例如:输入https://oia.zhihu.com ,点击可以直接打开app 或者长按+松手就可以看到底部弹框 弹出的内容有一项是:在xx中打开。这样就可以达到使用目的了![](http://h-img.bslyun.com/21feaf96ab559d1d817b72a988528b6f)