iTunes lookup?bundleId method is not working for my app
app-store, app-store-connect, ios, itunes-store, objective-c
Solution
Looks like your app is ONLY available in Thailand storefront - so the lookup should include country code in the base lookup URL:
- http://itunes.apple.com/th/lookup?bundleId=com.writingfuture.where2
The alternative to using bundleId is simply looking up by adamID:
- http://itunes.apple.com/th/lookup?id=467311933
Problem
I'm trying to lookup my app from this method: http://itunes.apple.com/US/lookup?bundleId=com.writingfuture.where2 But it always return ``` { "resultCount":0, "results": [] } ``` My app status in the store is perfectly fine (ready for sale). Here's a detail: Bundle ID: com.writingfuture.where2 Apple ID: 467311933 Type: iOS App Version: 2.0.1 Status: Ready for Sale Date Created: Dec 4, 2012 Date Released: Dec 10, 2012 I have no idea why I can't lookup for my app with this method. Do you guys have any idea? Thanks in advance, Chammp