我正在构建一个应用程序,我希望从其他Android应用的Google Play商店中获取评论,评论和评分列表。
使用Google Developer Play API我可以获取由我托管的应用的评论列表,但它很难找到获取其他应用的评论/评论列表的方法(不是由我的帐户发布)。如果有人对此要求有任何想法,请告诉我。
答案 0 :(得分:0)
从任何Google App获取所有评论。
https://still-plateau-10039.herokuapp.com/reviews?id=mytown.preschool
id={google-app-id}
这将返回
的json [
id: "id",
userName: "Sonal Zade",
userImage: "user-image-h96/photo.jpg",
date: "April 15, 2017",
url: "url",
score: 5,
title: "",
text: "I have fun to play your games but the problem is that these games."
]
该服务将返回应用上的所有评论
或者在本地简单托管 可以在https://github.com/tohir87/googleplay-reviews
找到该服务的源代码