获取以前版本的Appstore信息

时间:2018-07-28 07:16:17

标签: ios app-store itunesconnect info

我的问题是关于iTunes连接的处理。实际上,我上传了1.1版本的应用程序。我更改了说明中的文字,并想比较新版应用商店的影响。但是,因此我需要在1.1版之前编写的信息。

是否可以从通过iTunes Connect发布的先前版本中获取关键字,说明,广告文字等?

1 个答案:

答案 0 :(得分:1)

您可以尝试 let str = "http://itunes.apple.com/lookup?bundleId=com.app.id" let url = URL(string: str) Alamofire.request(url! , method: .get).responseJSON { (dataResponse) in print(dataResponse.result.value) } 网址。您必须在其中设置应用程序的捆绑软件ID,然后才能获取应用程序信息的字典。

{{1}}

希望它对您有帮助。