Google Play API用于提取评论和查找应用列表

时间:2017-06-04 20:31:17

标签: android google-play google-play-developer-api

我们正在构建一个工具,让用户oAuth进入他们的Google Play帐户,以便他们可以监控其应用的评论。

https://developers.google.com/android-publisher/api-ref/reviews

问题是,一旦用户已将其发布到自己的帐户中,我们就找不到任何提供已发布应用程序列表的特定API。

我们需要一个他们的应用列表,以便我们可以获得class Foo { constructor() { this.test = true; } bar = () => { return this; } } console.log(new Foo().bar.call({}).test); // true class Foo2 { constructor() { this.test = true; } bar() { return this; } } console.log(new Foo2().bar.call({}).test); // undefinedhttps://developers.google.com/android-publisher/api-ref/reviews/list

1 个答案:

答案 0 :(得分:1)

实际上,android-publisher API不提供此类功能。

作为一种解决方法,您可以使用http://play.google.com/store/search?q=pub:publisher-name URL(其中Publisher-name是参数)查询Google Play Web界面,然后解析页面以获取包名称。
例如,要获取所有Google的应用,请使用以下查询:https://play.google.com/store/search?q=pub:Google+LLC

另一种选择是使用一种非官方的Google Play API,例如this one(来自Google的第一个搜索结果)。