1

我的问题是关于 iTunes 连接的处理。实际上我上传了一个 1.1 版本的应用程序。我更改了描述中的文本,我想比较新应用商店存在的效果。但因此我需要 1.1 版之前编写的信息。

有没有办法从通过 itunes connect 发布的先前版本中获取关键字、描述、广告文字等?

4

1 回答 1

1

你可以试试"http://itunes.apple.com/lookup?bundleId=com.app.id"网址。您必须在其中设置应用程序的捆绑 ID,并获得应用程序信息的 dict。

 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)
 }

希望它可以帮助你。

于 2018-07-28T08:04:01.433 回答