1

My issue is about the handling of itunes connect. Actually I uploaded a 1.1 version of an app. I changed the texts in the description and I want to compare the effect of the newer app store presence. But therefore I need the information which were written before version 1.1.

Is there a way to get the keywords, descriptions, ad text, etc. from the previous versions which were released via itunes connect?

Alexander Langer
  • 320
  • 2
  • 11

1 Answers1

0

You can try "http://itunes.apple.com/lookup?bundleId=com.app.id" url. In which you have to set bundle id of your app and you get dict of your app info.

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

Hope it helps you.

Hitesh Agarwal
  • 1,943
  • 17
  • 21