我目前正在开展一个项目,该项目允许我将 IPA (iOS) 文件上传到 s3 存储桶,以便使用无线 (OTA) 将它们安装在我的 iPhone 上。
index.html 文件包含以下链接:
<a href="itms-services://?action=download-manifest&;url=https://s3-eu-west-3.amazonaws.com/ipapk-ipa/plist.xml" class="mdl-button mdl-button--raised mdl-button--colored mdl-js-button mdl-js-ripple-effect">Install</a>
这里是 plist.xml 文件:
<?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://s3-eu-west-3.amazonaws.com/ipapk-ipa/DVIA.ipa</string>
</dict>
<dict>
<key>kind</key>
<string>display-image</string>
<key>needs-shine</key>
<true/>
<key>url</key>
<string>https://s3-eu-west-3.amazonaws.com/ipapk-ipa/DVIA.ipa.png</string>
</dict>
</array>
<key>metadata</key>
<dict>
<key>bundle-identifier</key>
<string>com.highaltitudehacks.DVIAswiftv2</string>
<key>bundle-version</key>
<string>1</string>
<key>kind</key>
<string>software</string>
<key>title</key>
<string>DVIA-v2</string>
</dict>
</dict>
</array>
</dict>
</plist>
当我单击安装按钮时,应用程序开始安装,但中断时显示“无法安装此应用程序,因为无法验证其完整性”
你有什么想法吗?PS:我在使用https://www.diawi.com/等工具时遇到了同样的错误