<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>items</key>
<array>
<dict>
<key>assets</key>
<array>
<dict>
<key>kind</key>
<string>software-package</string>
<key>url</key>
<string>https://app.company.com/myapp/app.ipa</string>
</dict>
</array>
<key>metadata</key>
<dict>
<key>bundle-identifier</key>
<string>com.company.*</string>
<key>bundle-version</key>
<string>1.0.0 (1.0.0)</string>
<key>kind</key>
<string>software</string>
<key>title</key>
<string>Conference APp</string>
</dict>
</dict>
</array>
</dict>
</plist>我正在尝试访问清单文件,以下载iPhone上的应用程序。
我将其指向清单文件,但它似乎没有在iOS设备上读取它:
<a href="itms-services://?action=download-manifest&url=main.com/manifest.plist">Download </a>发布于 2014-03-25 03:56:05
itms-services链接的url参数需要正确转义(您不能使用/字符,必须是%2f),并且它需要是绝对URL而不是相对URL。
尝试将其更改为:
<a href="itms-services://?action=download-manifest&url=https%3A%2F%2Fexample.com%2Fapp%2fmanifest.plist">Download ProjectA Reports</a>发布于 2014-03-26 23:17:38
路径不正确。对于IOS6和IOS7,此文件没有区别
https://stackoverflow.com/questions/22618726
复制相似问题