Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

iTunes lookup?bundleId method is not working for my app

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

like image 683
Neti Pengkhuan Avatar asked Feb 01 '13 06:02

Neti Pengkhuan


1 Answers

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
like image 63
Ted Hosmann Avatar answered Oct 07 '22 22:10

Ted Hosmann