我想在Android上获得给出placeID的评论数量。 Google Places API用于支持此调用,但似乎不再包含在API中。有谁知道我怎么能得到这个值?
注意:我有地方评分,我需要的是评论总数。
提前谢谢。
答案 0 :(得分:0)
您可以使用 Google Place API 获取特定地点的评分,如下所示:
PlaceBufferResponse places = task.getResult();
Place myPlace = places.get(0);
Log.i(TAG, "Place found: " + myPlace.getName());
Log.i(TAG, "Place ratings found: " + myPlace.getRating());
的更多信息