HTML:Ad-hoc Distribution - 无法连接到本地服务器

时间:2018-04-04 10:01:52

标签: html ios ad-hoc-distribution

我正在测试一个ad-hoc分发html文件,在我们的本地服务器上托管它。我对此并不是很了解,只是想看看我能在网上找到什么,而且我不足以处理上述问题。

这是我的项目结构:

192.168.1.135/adhocDistributor:

  • 的index.html
  • project.ipa
  • manifest.plist

以下是index.html的代码:

<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Sample iOS OTA install</title>

</head>

<body>
<a href="itms-services://?action=download-manifest&amp;url=https://192.168.1.135/adhocDistributor/manifest.plist"><font size="+4">Install the App</font></a>

</body>
</html>

这是manifest.plist文件:

<!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><strong>https://192.168.1.135/adhocDistributor/project.ipa</strong></string>
</dict>
</array><key>metadata</key>
<dict>
<key>bundle-identifier</key>
<string><strong>com.yourcompany.TheElements</strong></string>
<key>kind</key>
<string>software</string>
<key>title</key>
<string>iOS Test App</string>
</dict>
</dict>
</array>
</dict>

我可以转到192.168.1.135/adhocDistributor从我的iPad上查看html页面。最初的问题是

  

无法安装应用程序,因为192.168.1.135的证书不是   有效

我读到的

可以通过使用https而不是http来解决,但现在我得到了这个:

  

无法连接到192.168.1.135

我尝试将这些内容上传到AWS S3 Bucket,但它给了我同样的错误,除非它现在告诉我Cannot connect to s3-ap-southeast-1.amazonaws.com

我还能做些什么吗?

0 个答案:

没有答案