我知道通常通过 HTTPS 安装是有效的,但不知何故它在我的环境中不起作用。
据我了解,itms-service 链接是 HTTP:
itms-services://?action=download-manifest&url=http://' . $_SERVER['SERVER_NAME'] . $downloadLink
.plist 中的链接是 HTTPS
<key>assets</key>
<array>
<dict>
<key>kind</key>
<string>software-package</string>
<key>url</key>
<string>https://app.ipa</string>
</dict>
<dict>
<key>kind</key>
<string>full-size-image</string>
<key>needs-shine</key>
<true/>
<key>url</key>
<string>https://image_512x512.png</string>
</dict>
<dict>
<key>kind</key>
<string>display-image</string>
<key>needs-shine</key>
<true/>
<key>url</key>
<string>https://image_57x57.png</string>
</dict>
</array>
但该应用程序不会安装。我总是收到消息“无法加载应用程序”
所有 URL 都可以通过 HTTP 和 HTTPS 访问。
XCode 显示应用程序日志
未知 securityd[2331]:CFReadStream 域:12 错误:8
我在这里做错了什么?
谢谢