我的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];
}
}
});
}
答案 0 :(得分:7)
我也遇到了同样的问题,但就我而言,我使用的是http(例如http://itunes.apple.com/lookup?bundleId=com.xxx.xxxx),因此无法获取最新的应用程序版本。然后,将 http替换为https (https://itunes.apple.com/lookup?bundleId=com.xxx.xxxx)后,它对我有用。
更新-我们的团队向Apple开发人员发送了邮件,询问为什么https不起作用,而http不起作用,并得到了Apple团队的答复。他告诉“通常,将更新的应用程序信息从App Store Connect公开发布会延迟24小时。”
答案 1 :(得分:1)
我现在也遇到同样的问题。我与另一位开发人员交谈,他得出的结论是,这可能是一个CDN问题。 (内容分发网络)
答案 2 :(得分:0)
并非所有国家/地区都可以使用所有应用。在您的URL中,在美国商店中查找它。删除 / us / 并尝试。
答案 3 :(得分:0)
我面临着同样的问题。它有两个步骤可以解决此问题。
我使用的是 http ://itunes.apple.com/lookup?bundleId =“您的捆绑包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小时,然后开始为我提供正确的版本,然后我可以通过版本检查来强制更新我的应用。
答案 4 :(得分:0)
好的@Yunnosch 目前无法从此网址获取 JSON 格式的应用程序信息
https://itunes.apple.com/lookup?bundleId=“您的捆绑 ID”。
因此我们需要用这个来改变网址
新网址将https://itunes.apple.com/lookup?id=“您的捆绑 ID”
这只是在评论中通知新的最新网址。