iTunes 查找 API 在我的应用程序中返回旧数据

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

我的APP通过比较iTunes查找API返回的本地版本和远程版本来检查更新。但新版本发布后API仍然返回旧版本。

https://itunes.apple.com/us/lookup?bundleId=com.xxx.xxxx

如果我通过浏览器请求,此 API 返回新版本(4.9),但在 APP 中返回旧版本(4.8.1)。

有人帮忙吗?谢谢。

- (void)updateAppInfo

{
    dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
    //first check iTunes
    NSString *iTunesServiceURL = [NSString stringWithFormat:@"https://itunes.apple.com/us/lookup"];
    iTunesServiceURL = [iTunesServiceURL stringByAppendingFormat:@"?bundleId=%@", [[NSBundle mainBundle] bundleIdentifier]];
    NSLog(@"iRate is checking %@ to retrieve the App Store details...", iTunesServiceURL);

    NSError *error = nil;
    NSURLResponse *response = nil;
    NSURLRequest *request = [NSURLRequest requestWithURL:[NSURL URLWithString:iTunesServiceURL] cachePolicy:NSURLRequestReloadIgnoringLocalCacheData timeoutInterval:60];
    NSData *data = [NSURLConnection sendSynchronousRequest:request returningResponse:&response error:&error];
    NSInteger statusCode = ((NSHTTPURLResponse *)response).statusCode;
    if (data && statusCode == 200)
    {
        //in case error is garbage...
        error = nil;
        id json = nil;
        if ([NSJSONSerialization class])
        {
            json = [[NSJSONSerialization JSONObjectWithData:data options:(NSJSONReadingOptions)0 error:&error][@"results"] lastObject];
        }
        else
        {
            //convert to string
            json = [[NSString alloc] initWithData:data encoding:NSUTF8StringEncoding];
        }

        if (!error)
        {
            self.appStoreId = [self valueForKey:@"trackId" inJSON:json];
            self.latestVersion = [self valueForKey:@"version" inJSON:json];
            self.releaseNote = [self valueForKey:@"releaseNotes" inJSON:json];
        }
    }
    });
}
ios app-store-connect lookup itunes-store
6个回答
25
投票

我也面临着同样的问题,但就我而言,我使用的是http(例如http://itunes.apple.com/lookup?bundleId=com.xxx.xxxx),所以没有获得最新的应用程序版本。然后我将 http 替换为 https (https://itunes.apple.com/lookup?bundleId=com.xxx.xxxx) 之后它对我有用。

更新 - 我们的团队向苹果开发人员发送了邮件,询问为什么 https 可以工作而 http 不能工作,并得到了苹果团队的回复。他告诉 “一般来说,更新的应用程序信息从 App Store Connect 向公众发布会有 24 小时的延迟。”

欲了解更多信息,请参阅他们的电子邮件回复-enter image description here


2
投票

我现在也遇到同样的问题了。我与另一位开发人员交谈,他得出的结论是这可能是 CDN 问题。 (内容交付网络)

  • 当我连接到我们的 wifi 时,响应已过时。
  • 当我连接到 4G 数据时,响应会更新。

2
投票

我也面临着同样的问题。它有两个步骤来解决这个问题。

我使用的是 http://itunes.apple.com/lookup?bundleId="YOUR BUNDLE ID" 而不是 https

步骤#1:请确保您使用的是 https 而不是 http,因为它不会为您提供更新的版本号。 首先,我上传了我的应用程序,版本为1.8.0,然后是版本1.9.0,然后是版本1.9.1。当我使用 http 时,它总是显示 1.8.0,即使应用程序商店上的应用程序的版本是 1.9.1。所以,以后就使用 https 吧。

步骤#2:上传最新版本后,请等待 24 小时才能在 https://itunes.apple.com/lookup?bundleId=“您的捆绑包 ID” 获取最新版本。尽管该应用程序在 24 小时内就以版本 1.9.1 上线,但我还是获得了版本 1.9.0。我等了 24 小时,然后它开始给我正确的版本,然后我能够通过版本检查强制更新我的应用程序。


0
投票

并非所有应用程序在所有国家/地区都可用。在您的网址中,在美国商店中查找它。删除 /us/ 并尝试。

了解更多详情:iTunes 搜索 API 不会显示现有应用程序信息


0
投票

好的@Yunnosch 目前无法从此 url 获取 JSON 格式的应用程序信息

https://itunes.apple.com/lookup?bundleId=“您的捆绑包 ID”。

因此我们需要用这个来改变URL

新 URL 将 https://itunes.apple.com/lookup?id=“您的捆绑包 id”

这只是在评论中告知新的最新网址。


0
投票

请在最终网址末尾添加 &t=(CFAbsoluteTimeGetCurrent()) 这在应用程序中也 100% 有效。

示例 https://itunes.apple.com/lookup?bundleId=com.xxx.xxxx&t=\(CFAbsoluteTimeGetCurrent())

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