iphone通过itms-services协议来安装软件,显示证书无,效解决方法

其实iOS 7.1修改了manifest.plist文件的访问协议,之前可以通过http协议访问,在iOS 7.1之后必须使用https协议方式访问。

iphone通过itms-services协议来安装软件,显示证书无,效解决方法_第1张图片

比如之前的链接代码为:

itms-services://?action=download-manifest&url=http://example.com/manifest.plist

在iOS 7.1之后,就需要修改为:

itms-services://?action=download-manifest&url=https://example.com/manifest.plist

需要一个SSL证书才能够实现在线安装ipa文件的功能。


你可能感兴趣的:(iPhone)