Post

Replies

Boosts

Views

Activity

Reply to Can't get correct version on App Store
Faced same issue recently. Both app and Postman. There is caching somewhere on network layer. Haven't found where exactly What I have done to solve it: I have added extra GET parameter 'date' with Date.init().timeIntervalSince1970 value As result, url looks like: var url: String { http://itunes.apple.com/lookup?bundleId={bundle}&date=\(Date.init().timeIntervalSince1970) } which gives me unique url every time I use it. I know, it's not the best way, bcs it's not solving the reason but helped to solve the resulting problem
Jul ’22