ipa在线下载安装(itms-services)

要求:

1、ipa的下载地址放到plist的文件中,链接指定plist(plist格式见下文)

2、plist的链接要求一定是https的,而且必须是公网ssl,自签名及免费的https不可用。

3、链接格式要求一定是符合苹果规范的,itms-services://?action=download-manifest&url=https://****/***.plist


强调必须是公网ssl的https,其它不符合格式网址会报错,提示域名无法连接。


目前可以使用https测试用的域名:https://raw.githubusercontent.com/           (2018-01-16 测试通过)

具体方法:将plist上传到github上,查看plist内容页面上右上角点击“Raw”

使用该地址链接格式为https://raw.githubusercontent.com/用户名/项目名/master/xxxx.plist

拼接链接:itms-services://?action=download-manifest&url=https://raw.githubusercontent.com/用户名/项目名/master/xxxx.plist

在iphone手机中打开Safari,访问该链接,提示“在"iTunes"中打开链接吗?",点击打开

提示“raw.githubusercontent.com”要安装“XXXXX”,点击安装即可在线下载安装ipa。


.plist格式





	items
	
		
			assets
			
				
					kind
					software-package
					url
					http://xxxxxxxxxxxxxxxxxxx/xxx.ipa
				
				
					kind
					full-size-image
					needs-shine
					
					url
					http://xxxxxxxxxxxxxxxxxx.png
				
				
					kind
					display-image
					needs-shine
					
					url
					http://xxxxxxxxxxxxxxxxxx.png
				
			
			metadata
			
				bundle-identifier
				com.xxxx.demo
				bundle-version
				1.0.0
				kind
				software
				title
				XXXX App download
			
		
	



你可能感兴趣的:(IOS)