ios - 如何设置服务器以从 url 安装 iphone 应用程序(用于开发)
<p><p>我将 .ipa 文件放在 <a href="http://www.diawi.com/" rel="noreferrer noopener nofollow">http://www.diawi.com/</a> 上并且可以提供并安装它。 </p>
<p>但是,我试图在我的服务器上进行设置,但它不想工作。</p>
<p>根据 diawi URL,我的 URL 以 .ipa 结尾。</p>
<p>我使用以下标题提供服务:</p>
<pre><code>Cache-Control:public
Content-Disposition:attachment; filename="Speaking Email.ipa"
Content-Length:644878
Content-Type:application/octet-stream
Date:Fri, 20 Mar 2015 06:54:00 GMT
Expires:Mon, 01 Jan 0001 00:00:00 GMT
Last-Modified:Fri, 20 Mar 2015 06:43:39 GMT
Server:Microsoft-IIS/7.5
X-AspNet-Version:4.0.30319
X-UA-Compatible:IE=Edge,chrome=1
</code></pre>
<p>diawi.com 上的标题是:</p>
<pre><code>Accept-Ranges:bytes
Cache-Control:no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Connection:keep-alive
Content-Disposition:attachment; filename="Speaking Email.ipa"
Content-Length:644878
Content-Type:application/octet-stream
Date:Fri, 20 Mar 2015 07:09:22 GMT
ETag:"550bc49e-9d70e"
Expires:Thu, 19 Nov 1981 08:52:00 GMT
Last-Modified:Fri, 20 Mar 2015 06:56:30 GMT
Server:nginx
Set-Cookie:__utmmobile=0x4bf390e7f5e82765; expires=Sun, 19-Mar-2017 07:09:22 GMT; Max-Age=63072000; path=/
Set-Cookie:insc=2; expires=Fri, 20-Mar-2015 07:10:22 GMT; Max-Age=60
</code></pre>
<p>当我下载这两个 IPA 并将它们重命名为 ZIP 和 Beyond 比较它们时,它们是相同的。所以据我所知,他们并没有对 IPA 或标题做任何特别的事情......</p>
<p>他们是怎么做到的? (PhoneGap build 也做同样的事情)</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>你不必链接.ipa,你必须链接一个.plist</p>
<pre><code><a href="itms-services://?action=download-manifest&url=http://www.yourserver.com/yourApp/manifest.plist">Install the App</a>
</code></pre>
<p>manifest.plist 应该是这样的:</p>
<pre><code><!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://www.yourserver.com/yourApp/YourAppName.ipa</string>
</dict>
</array>
<key>metadata</key>
<dict>
<key>bundle-identifier</key>
<string>com.yourcompany.YourAppName</string>
<key>kind</key>
<string>software</string>
<key>title</key>
<string>iOS Test App</string>
</dict>
</dict>
</array>
</dict>
</plist>
</code></pre></p>
<p style="font-size: 20px;">关于ios - 如何设置服务器以从 url 安装 iphone 应用程序(用于开发),我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/29161305/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/29161305/
</a>
</p>
页:
[1]