从 Amazon Aws s3 iOS 下载应用程序更新 OTA

问题描述 投票:0回答:2

我正在寻找在应用程序更新中创建,目前我的应用程序在我的 Amazon s3 存储桶中为我的 plist 文件创建了一个签名 url,我还为我的 .ipa 文件创建了一个签名 url 并将该签名 url 存储在我的 plist 中文件,如下所示:

App内URL调用:

NSMutableString *downloadURL = [NSMutableString string] ;
[downloadURL appendString:@"itms-services://?action=download-manifest&url="];
[downloadURL appendString:plistURL];
NSString *ipaDownloadString = [NSString stringWithString:downloadURL];
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:ipaDownloadString]];

其中 ipaDownloadString 是附加到 item-services://?action 等的签名 URL。

列表:

<?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://bucket_name.s3-eu-west-1.amazonaws.com/ipa_name.ipa?AWSAccessKeyId=xxxxxxxxxxxxx&Expires=1435587320&Signature=xxxxxxxxxxxx</string>
</dict>
            </array>
    <key>metadata</key>
        <dict>
            <key>bundle-identifier</key>
            <string>com.name.DropboxTest</string>
            <key>bundle-version</key>
            <string>1.1</string>
            <key>kind</key>
            <string>software</string>
            <key>title</key>
            <string>Dropbox Test</string>
        </dict>
    </dict>
     </array>
</dict></plist>

当您将它们插入浏览器时,网址可以正常工作,但是,单击链接时,应用程序不会下载应用程序。

我尝试对 plist 中的 url 进行 url 编码,但没有成功。 plist 的内容类型:text/plain IPA 的内容类型 |: application/octet-stream

干杯, 本

ios amazon-s3 plist ipa
2个回答
9
投票

我自己解决了这个问题,对于那些将来需要此信息的人:

plist 文件中的 url 需要进行签名,并且所述 url 中的

&
需要以
&amp;
的形式进行编码。

我发现 s3 上的内容类型根本没有问题。

我已经包含了一个示例 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>
        <!-- array of downloads. -->
        <key>items</key>
        <array>
            <dict>
 
                <!-- an array of assets to download -->
                <key>assets</key>
                <array>
 
                    <!-- software-package: the ipa to install. -->
                    <dict>
 
                        <!-- required.  the asset kind. -->
                        <key>kind</key>
                        <string>software-package</string>

                        <!-- required.  the URL of the file to download. -->
                        <key>url</key>
                        <string>https://s3-eu-west-1.amazonaws.com/bucket/path-to-ipa?AWSAccessKeyId=xxxxxxxxxxxxx&amp;Expires=1437661858&amp;Signature=xxxxxxxxxxxxxxxxxxxxxx</string>  
                       
                    </dict>
 
                    <!-- display-image: the icon to display during download. -->
                    <dict>
 
                        <key>kind</key>
                        <string>display-image</string>
 
                        <key>url</key>
                        <string>link to image</string>
                    </dict>
 

                      <!-- full-size-image: the large 512×512 icon used by iTunes. -->
                    <dict>

                        <key>kind</key>
                        <string>full-size-image</string>


                        <key>needs-shine</key>
                        <true/>

                        <key>url</key>
                        <string>link to image</string>
                    </dict>
                </array>
 
                <key>metadata</key>
                <dict>
 
                    <!-- required -->
                    <key>bundle-identifier</key>
                    <string>com.hostname.appname</string>
 
                    <!-- optional (software only) -->
                    <key>bundle-version</key>
                    <string>1.2.5.0</string>
 
                    <!-- required.  the download kind. -->
                    <key>kind</key>
                    <string>software</string>
 
                    <!-- optional. displayed during download; -->
                    <!-- typically company name -->
                    <key>subtitle</key>
                    <string>Command Centre</string>
 
                    <!-- required.  the title to display during the download. -->
                    <key>title</key>
                    <string>Command Centre</string>
                </dict>
            </dict>
        </array>
    </dict>
</plist>

我希望这对将来的人有帮助。


1
投票

就我而言,我将 & 替换为 &

如果我将 && 一起使用,则不起作用。

© www.soinside.com 2019 - 2024. All rights reserved.