7

我正面临一个严重的问题。我正在尝试制作一个企业应用程序。通过使用 BetaBuilder,我遵循以下步骤:

myApp.ipa
manifest.plist
index.html

清单.plist:

<?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>https://example.com/ios/myapp.ipa</string>
                </dict>
            </array>
            <key>metadata</key>
            <dict>
                <key>bundle-identifier</key>
                <string>com.com.myapp</string>
                <key>bundle-version</key>
                <string>1.0</string>
                <key>kind</key>
                <string>software</string>
                <key>title</key>
                <string>Myapp</string>
            </dict>
        </dict>
    </array>
</dict>
</plist>

和 index.html 文件:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0">
<title>Myapp - Beta Release</title>
</head>
<body>

<div id="container">
  <h1>iOS 4.0 Users:</h1>
  <div class="link"><a href="itms-services://?action=download-manifest&url=https://example.com/ios/manifest.plist">Tap Here to Install</a>
  </div>
</div>

</body>
</html>

我什http至做了链接https。但它总是说:Cannot connect to example.com。设置有什么问题?

4

1 回答 1

8

必须使用带有经过验证的 SSL 证书的 SSL 来提供无线 iOS 分发。

现在要分发 OTA,您必须按照以下步骤操作。

1)提供指向您生成的.plist文件的链接,该文件包含应用程序下载的清单。此链接必须通过 SSL 提供,并带有经过验证的 SSL 证书。.plist有效文件的示例如下:

<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE plist PUBLIC "-//Apple Computer//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>https://[full download url].ipa</string>
          </dict>
        </array>
        <key>metadata</key>
        <dict>
          <key>bundle-identifier</key>
          <string><full bundle identifier></string>
          <key>bundle-version</key>
          <string>[version string]</string>
          <key>kind</key>
          <string>software</string>
          <key>title</key>
          <string>[software name]</string>
        </dict>
      </dict>
    </array>
  </dict>
</plist>

2)文件 中的 URL 密钥.plist必须来自有效的 SSL 证书。

现在我不是您的服务器设置的 100%,但 Web 服务器可能无法正确响应.plist扩展程序以及.ipa扩展程序。您必须设置您的 Web 服务器以了解以下文件扩展名 \mime-type:

  • 扩大:.plist
  • 哑剧类型:application/xml

  • 扩大:.ipa

  • 哑剧类型:application/octet-stream

起初,我们遇到了很多问题,让我们的应用程序通过无线方式部署。最大的障碍是 SSL 证书和 MimeTypes。

最后一条评论,我相信您有自己的域,并且没有在链接或 plist 文件中使用 example.com。

干杯..

于 2015-04-10T11:18:17.373 回答