swift iOS无法从iTunes获取准确的应用程序版本

wbrvyc0a  于 2023-03-28  发布在  Swift
关注(0)|答案(4)|浏览(191)

实际上只是想实现这样的功能,如果应用程序的新版本在AppStore上可用,那么最终用户将被通知更新应用程序。
在Google上有很多答案,但看看下面的代码。

func isUpdateAvailable(completion: @escaping (Bool?, Error?) -> Void) throws -> URLSessionDataTask {
        guard let info = Bundle.main.infoDictionary,
            let currentVersion = info["CFBundleShortVersionString"] as? String,
            let identifier = info["CFBundleIdentifier"] as? String,
            let url = URL(string: "http://itunes.apple.com/in/lookup?bundleId=\(identifier)") else {
                throw VersionError.invalidBundleInfo
        }
        print(currentVersion)
        let task = URLSession.shared.dataTask(with: url) { (data, response, error) in
            do {
                if let error = error { throw error }
                guard let data = data else { throw VersionError.invalidResponse }
                let json = try JSONSerialization.jsonObject(with: data, options: [.allowFragments]) as? [String: Any]
                 if let a = ((json?["results"] as? [Any])?.first) as? [String: Any] {
                print(a["version"] as? String ?? "")
            }
                guard let result = (json?["results"] as? [Any])?.first as? [String: Any], let version = result["version"] as? String else {
                    throw VersionError.invalidResponse
                }
                completion(version != currentVersion, nil)
            } catch {
                completion(nil, error)
            }
        }
        task.resume()
        return task
    }

然后调用这个函数

_ = try? appDelegate.isUpdateAvailable { (update, error) in
            if let error = error {
                print(error)
            } else if let update = update {
                if update {
                    let alert = UIAlertController(title: "New Version Available", message: "New version of application is available please update now!", preferredStyle: UIAlertControllerStyle.alert)
                    alert.addAction(UIAlertAction(title: "Update", style: .default, handler: { (actionOk) in

                        if let url = URL(string: "itms-apps://itunes.apple.com/app/idXXXXXXXXX"),
                            UIApplication.shared.canOpenURL(url){
                            UIApplication.shared.open(url, options: [:])
                        }
                    }))
                    self.present(alert, animated: true, completion: nil)
                }
            }
        }

问题是,如果新版本的应用程序准备出售,我打开旧版本的应用程序,然后弹出窗口将打开,当我点击更新按钮,它会在AppStore上重定向.但在AppStore,而不是显示“更新”按钮,它显示“打开”按钮
所以我签入了我的代码。
当我在浏览器上手动运行下面的URL时

http://itunes.apple.com/in/lookup?bundleId=com.mycompany.appname

然后下载**.txt**文件并获得准确的应用程序版本,但在我的代码print(a["version"] as? String ?? "")中,它返回错误的版本号。
我哪里说错了?请纠正我。
注意:我也使用了http://itunes.apple.com/lookup?bundleId=com.mycompany.appname意味着从URL中删除了国家代码,但对我不起作用。

bn31dyow

bn31dyow1#

这是所有iOS开发人员检测应用程序版本并通知用户新更新的头痛问题。顺便说一句**@ CÜur@Alexis O解释得很好,所以我不认为要解释更多。只要按照我的代码。
通过调用下面的URL,您将得到.txt文件
http://itunes.apple.com/in/lookup?bundleId=com.mycompany.appname
在该文件中,您还将找到
currentVersionReleaseDate**,使用该数据和时间并与当前日期和时间进行比较,如果大于24小时,则您应显示popup以更新应用程序。

更改了您的代码:

if let a = ((json?["results"] as? [Any])?.first) as? [String: Any] {
                    print(a["version"] as? String ?? "")
                    let currentVersionDate = a["currentVersionReleaseDate"] as? String ?? ""
                    let dateFormatter = DateFormatter()
                    dateFormatter.dateFormat = "yyyy-MM-dd'T'HH:mm:ssZ"
                    dateFormatter.locale = Locale(identifier: "en_US_POSIX")

                    if let myDate = dateFormatter.date(from: currentVersionDate) {
                        let diff = Calendar.current.dateComponents([.hour], from: myDate, to: Date()).hour ?? 0
                        if diff < 24 {
                            completion(false, nil)
                            return
                        }
                    }
                }

在 *If语句 * 中更改。请检查。

bn31dyow

bn31dyow2#

您的代码看起来是正确的。正如Coeur所说,Apple会逐步推出新的更新,而不是立即更新。更新通常在24小时后完成。
就我个人而言,我不会采用这种方法。最好是从服务器获取版本,然后在应用发布24小时后更新该值。您将对它有更多的控制权。假设您的新应用程序有错误。您可以选择不提示用户更新到该版本。
侧头:

  • 确保您只显示一次弹出窗口。
  • 如果服务器版本较低,不显示弹出窗口。另一个自由支持“不”提示用户更新。
crcmnpdw

crcmnpdw3#

你可以试试这个:

func isAppUpdateAvailable() throws -> Bool {
        let yourAppleID = "12454364536" //This is demo id, you can get your apple id for a specific app from the appinformation tab of itunesconnect account 
        guard let info = Bundle.main.infoDictionary,
            let currentVersion = info["CFBundleShortVersionString"] as? String,
            let url = URL(string: "http://itunes.apple.com/lookup?id=\(yourAppleID)") else {
                throw VersionError.invalidBundleInfo
        }
        let data = try Data(contentsOf: url)
        guard let json = try JSONSerialization.jsonObject(with: data, options: [.allowFragments]) as? [String: Any] else {
            throw VersionError.invalidResponse
        }
        if let result = (json["results"] as? [Any])?.first as? [String: Any], let version = result["version"] as? String {
            print("version in app store", version,currentVersion);

            return version != currentVersion
        }
        throw VersionError.invalidResponse
    }

这是在Appstore上发送的检查://这是您的应用程序的appstore URL,您可以直接将您的appstore URL放在这里

let appStoreURl = "https://itunes.apple.com/sg/app/AppName/idXXXXXXXXXX?ls=1&mt=8"
 if let url = URL(string: appStoreURl),
                                UIApplication.shared.canOpenURL(url){
    UIApplication.shared.open(url, options: [:])
 }
whlutmcx

whlutmcx4#

如果有人仍然遇到这个问题,请确保您正在执行以下3个步骤:

  • 您的请求缓存策略应为:.reloadIgnoringLocalCacheData

urlRequest.cachePolicy = .reloadIgnoringLocalCacheData

  • 您的链接方案应该是https,而不是http
  • 调用url“https://itunes.apple.com/lookup?bundleId =(appID)”将在24小时后获得最新更新。更新您的链接到“https://itunes.apple.com/us/lookup?bundleId =(appID)”以获得即时更新。路径/us会产生差异,我知道这很奇怪,但它可以工作。

注意:对于第三个检查,如果你从web navigator调用常规链接(不带/us),它会给你有效的版本。以编程方式调用它不会。这就是为什么你需要添加/us路径。

相关问题