1

I want to get list of all apps of a particular publisher. I have tried with https://play.google.com/store/search?q=pub:"publisher name". It gives result if I enter publisher name google, but if I enter my publisher name it does not gives me the list of my published apps.

Can anyone help me out here?

miketreacy
  • 1,120
  • 1
  • 11
  • 17
ahuja007
  • 281
  • 2
  • 14
  • try proper name otherwise there may not be any app for the name you searching for.. – Bapusaheb Shinde Sep 06 '17 at 05:16
  • @ahuja007 you can ref this:~ https://developer.android.com/distribute/marketing-tools/linking-to-google-play.html and also get this way https://play.google.com/store/apps/developer?id=XYZ+XYZ – Harshit Trivedi Sep 06 '17 at 05:17
  • I think you can try JSOUP Library to get the publisher list for the play store. – Mahmudur Rahman Sep 06 '17 at 05:28
  • @HarshitTrivedi I tried with developer account which comes in URL while opening console. No luck in that. I got the error : "We're sorry, the requested URL was not found on this server." – ahuja007 Sep 06 '17 at 06:08
  • @HarshitTrivedi I think I got that. After creating developer page, that link took me to my developer page. Thanks a lot for your help – ahuja007 Sep 06 '17 at 06:15
  • @ahuja007 if you can find with your all app you get the result of your app list https://play.google.com/store/apps/developer?id=Aexyn but you try https://play.google.com/store/search?q=Aexyn this get all related result of app – Harshit Trivedi Sep 06 '17 at 06:16
  • @ahuja007 I think no need to developer page you can put https://play.google.com/store/apps/developer?id=Aexyn this query you get all app and if you help full then plz up vote – Harshit Trivedi Sep 06 '17 at 06:20
  • @HarshitTrivedi Yeah that worked. Thanks a lot – ahuja007 Sep 06 '17 at 06:26
  • @ahuja007 welcome and upvote the comment useful to post – Harshit Trivedi Sep 06 '17 at 06:54

2 Answers2

2

From an Android app: market://search?q=pub:publisher_name

From a web site: http://play.google.com/store/search?q=pub:publisher_name

publisher_name SHOULD BE SAME AS ORIGINAL NAME INCLUDING SPACING AND OTHERS.

Exigente05
  • 2,161
  • 3
  • 22
  • 42
2

If you are looking list of search results for google play store, here is the code to list all the apps of a publisher. Happy Coding!

https://play.google.com/store/search?q=pub:< PUBLISHER NAME>&c=apps

Example:

https://play.google.com/store/search?q=pub:Google LLC&c=apps
Gopal Meena
  • 407
  • 8
  • 20