Ashvin777
Ashvin777

Reputation: 1482

Access other Android Apps Reviews

I am building an application in which I wanted to get the list of reviews, comments and ratings from Google Play Store of other Android apps.

Using Google Developer Play API I can get the reviews list for apps hosted by me but it struggling to find a way to get the reviews/comments list of others apps(not published by my account). Let me know if anyone had any idea about this requirement.

Upvotes: 0

Views: 148

Answers (1)

Tohir
Tohir

Reputation: 142

Get all reviews from any Google App.

https://still-plateau-10039.herokuapp.com/reviews?id=mytown.preschool

id={google-app-id}

This will return a json of

 [
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."
]

The service will return all the reviews on the app

Or simple host this locally Source code of the service can be found at https://github.com/tohir87/googleplay-reviews

Upvotes: 1

Related Questions