2017-02-22 31 views
0

我正在構建一個應用程序,其中我想從其他Android應用程序的Google Play商店獲取評論,評論和評分列表。訪問其他Android應用程序評論

使用Google Developer Play API我可以獲取由我託管的應用程序的評論列表,但它很難找到獲取其他應用程序的評論/評論列表(未由我的帳戶發佈)的方式。如果有人對此要求有任何想法,請告知我。

回答

0

獲取來自任何Google應用的所有評論。

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

id={google-app-id} 

這將返回的

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

的服務JSON將返回在應用程序的所有評論

或簡單的主機此服務的本地 源代碼可以在https://github.com/tohir87/googleplay-reviews

+0

這是基於網頁爬行嗎? – Ashvin777

+0

是的。網頁報廢 – Tohir

+0

好的謝謝,確實是來自所有國家商店的報廢,或者我們必須一個接一個地打電話給它? – Ashvin777

相關問題