2

我有一个安装页面(用于无线 iOS 应用程序),带有指向 plist 文件的 itms 链接。(长篇大论,但是)安装页面中的 plist 文件“必须是”……我尝试了一个数据 url:

<a href="itms-services://?action=download-manifest&url=data:text/xml,<the-plist-content>">Download</a>

但这不起作用……我做错了什么,还是有其他方法?

PS:plist文件中的IPA url必须是原始状态,不是编码!

4

2 回答 2

0

Is there any error in your OTA link, the argument of url needs to the url of the plist. Is that correct in your case?

<a href="itms-services://?action=download-manifest&url=http://www.yourdomain.com/Installer/Application.plist">Application Name</a>
于 2013-05-01T18:39:48.737 回答
0

.plist 文件的 url 路径应该是 [https],而不是 [http]。也许 HTTP 不安全;确保您的 .plist 文件放置在支持 HTTPS 的服务器中。

于 2017-04-21T02:49:54.900 回答