Google 播放 API 以获取评论并查找应用程序列表
Google play API for pulling reviews and find list of applications
我们正在构建一个工具,让用户 oAuth 进入他们的 google 游戏帐户,这样他们就可以监控他们的应用程序的评论。
https://developers.google.com/android-publisher/api-ref/reviews
问题是我们没有找到任何特定的API,一旦用户对他们的帐户进行 oAuthed,它就会提供已发布应用程序的列表。
我们需要他们的应用程序列表,以便我们可以获取每个 https://developers.google.com/android-publisher/api-ref/reviews/list
的 packageName
确实,android-publisher
API 不提供此类功能。
作为解决方法,您可以使用 http://play.google.com/store/search?q=pub:publisher-name
URL 查询 Google Play 网络界面(其中 publisher-name 是一个参数),然后解析页面以获取程序包名称.
例如,要获取 Google 的所有应用,请使用以下查询:https://play.google.com/store/search?q=pub:Google+LLC。
另一种选择是使用非官方 Google Play API 之一,例如 this one(来自 Google 的第一个搜索结果)。
我们正在构建一个工具,让用户 oAuth 进入他们的 google 游戏帐户,这样他们就可以监控他们的应用程序的评论。
https://developers.google.com/android-publisher/api-ref/reviews
问题是我们没有找到任何特定的API,一旦用户对他们的帐户进行 oAuthed,它就会提供已发布应用程序的列表。
我们需要他们的应用程序列表,以便我们可以获取每个 https://developers.google.com/android-publisher/api-ref/reviews/list
的packageName
确实,android-publisher
API 不提供此类功能。
作为解决方法,您可以使用 http://play.google.com/store/search?q=pub:publisher-name
URL 查询 Google Play 网络界面(其中 publisher-name 是一个参数),然后解析页面以获取程序包名称.
例如,要获取 Google 的所有应用,请使用以下查询:https://play.google.com/store/search?q=pub:Google+LLC。
另一种选择是使用非官方 Google Play API 之一,例如 this one(来自 Google 的第一个搜索结果)。