博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
通过 itms:services://? 在线安装ipa ,跨过app-store
阅读量:6808 次
发布时间:2019-06-26

本文共 3844 字,大约阅读时间需要 12 分钟。

1.需要一个html文件,引导下载用户在线安装ipa

<!
DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
>
<
html
>
  
<
head
>
    
<
title
>一键安装掌上综调iPhone版
</
title
>
  
</
head
>
  
  
<
body
>
        
<
href
='itms-services://?action=download-manifest&url=http://222.177.4.242/ios/d.plist'
>一键安装掌上综调iPhone版
</
a
>
  
</
body
>
</
html
>

 

2. 上文中的d.plist文件内容如下,其实它是一个XML文件,有关plist文件,请自行查阅google

<?
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
>http://222.177.4.242/download?attachId=022DB5EAF88A57B175D24060DCD1BA70
</
string
>
               
</
dict
>
               
<
dict
>
                   
<
key
>kind
</
key
>
                   
<
string
>display-image
</
string
>
                   
<
key
>needs-shine
</
key
>
                   
<
true
/>
                   
<
key
>url
</
key
>
                   
<
string
>http://222.177.4.242/ios/icon.png
</
string
>
               
</
dict
>
               
<
dict
>
                   
<
key
>kind
</
key
>
                   
<
string
>full-size-image
</
string
>
                   
<
key
>needs-shine
</
key
>
                   
<
true
/>
                   
<
key
>url
</
key
>
                   
<
string
>http://222.177.4.242/ios/icon.png
</
string
>
               
</
dict
>
           
</
array
><
key
>metadata
</
key
>
           
<
dict
>
               
<
key
>bundle-identifier
</
key
>
               
<
string
>com.ccssoft.mopclient.chongqing
</
string
>
               
<
key
>bundle-version
</
key
>
               
<
string
>1.0.0
</
string
>
               
<
key
>kind
</
key
>
               
<
string
>software
</
string
>
               
<
key
>subtitle
</
key
>
               
<
string
>掌上综调
</
string
>
               
<
key
>title
</
key
>
               
<
string
>掌上综调
</
string
>
           
</
dict
>
       
</
dict
>
   
</
array
>
</
dict
>
</
plist
>

上面2中的http://222.177.4.242/download?attachId=022DB5EAF88A57B175D24060DCD1BA70 这是ipa包所在的网络地址

 

3.自行找一个icon.png放在上面两个文件的同一个目录,此图片用作在iphone上显示程序图标。 http://222.177.4.242/ios/icon.png

 

4.使用iphone safari浏览器,浏览http://222.177.4.242/ios/d.html文件,即可安装了。简单吧。

 

iOS 7.1下itms-services在线安装失败的解决方法

iOS 7.1正式版发布了,之前使用itms-services://URL方式在线安装ipa文件的方法却失效了,点击的时候报错为:“无法安装应用程序,因xxx.com的证书无效”,这应该怎么解决呢?

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

比如之前的链接代码为:

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文件的功能。

     //-------------------  延伸: 关于https设置 ----------------------------------

1.upload your app.plist to dropbox

2.get shared link of app.plist, like https://www.dropbox.com/s/qgknrfngaxazm38/app.plist

3.replace www.dropbox.com with dl.dropboxusercontent.com in the link, like https://dl.dropboxusercontent.com/s/qgknrfngaxazm38/app.plist

4.write your download.html like <a href="itms-services://?action=download-manifest&url=https://dl.dropboxusercontent.com/s/qgknrfngaxazm38/app.plist">INSTALL!!</a>

5.upload the download.html to dropbox

6.get shared link of download.html, like https://www.dropbox.com/s/gnoctp7n9g0l3hx/download.html

7.replace www.dropbox.com with dl.dropboxusercontent.com in the second link as well, like https://dl.dropboxusercontent.com/s/gnoctp7n9g0l3hx/download.html

Now, visit https://dl.dropboxusercontent.com/s/gnoctp7n9g0l3hx/download.html in your device, you can install the app like before.

 

这个是通过上传dropbox来解决,事实上,只要找个可以以https方式共享外链的网盘,把plist文件上传就可以了!

 

上述方法通过测试可以解决提示“证书无效”的问题。下面介绍下步骤:

1、进入dropbox注册一个账号:https://www.dropbox.com/  ,并根据官网提示安装dropbox

2、安装成功后会自动在桌面上的名为用户名的文件夹(WIN7)建立一个名为Dropbox的文件夹。将之前做好的plist文件复制到此文件夹中

3、plist文件左下角有蓝色图标表示正在同步,变为绿色图标表示完成同步。在plist文件上点击右键,选择“共享Dropbox链接”,会在状态栏中提示已复制到剪贴板

4、在记事本中粘贴出来,链接地址应为类似于:https://www.dropbox.com/s/qgknrfngaxazm38/app.plist

5、将这个链接中www.dropbox.com替换为dl.dropboxusercontent.com,结果类似于:https://dl.dropboxusercontent.com/s/qgknrfngaxazm38/app.plist

6、把这个链接替换itms:services://后url的参数,类似于:<a href="itms-services://?action=download-manifest&url=https://dl.dropboxusercontent.com/s/qgknrfngaxazm38/app.plist">INSTALL!!</a>

完毕。

转载地址:http://goxwl.baihongyu.com/

你可能感兴趣的文章
彻底弄清楚session是什么?
查看>>
hibernate中实体类对象的四种状态
查看>>
HTML的基本标签
查看>>
Java全套视频
查看>>
[整理]使用POI操作Excel相关知识~
查看>>
虚拟化的适用范围和适用场景,服务器虚拟化架构和功能
查看>>
centos7 yum安装zabbix监控
查看>>
shell
查看>>
Linux运维(三)
查看>>
你真的输不起了,别再孩子气了
查看>>
linux 查看系统内存及系统负载
查看>>
shell编程基础(二)
查看>>
C# 委托
查看>>
Bash重定向详解
查看>>
ActiveMQ(19):高级特性之独有消费者(Exclusive Consumer)
查看>>
类方法调用
查看>>
General PLSQL 查看数据表中文乱码????
查看>>
Varnish 管理及配置详解
查看>>
我的友情链接
查看>>
【python学习】装饰器@
查看>>