Google play API for pulling reviews and find list of applications

Viewed 2453
1 Answers

Indeed, android-publisher API doesn't provide such functionality.

As a workaround, you may query Google Play web interface using http://play.google.com/store/search?q=pub:publisher-name URL (where publisher-name is a parameter) and then parse the page to get the package names.
For example, to get all Google's apps, use the following query: https://play.google.com/store/search?q=pub:Google+LLC.

Another option is to use one of the unofficial Google Play APIs, for example this one (first search result from Google).

Related