1

我开发了一个脚本来使用 google places api 获取和显示 google 评论。它获得了五条评论,但不是最新的。

google places api 会返回 5 条随机评论还是最新的 5 条评论?

谢谢

4

3 回答 3

2

Places API 默认仅返回 5,如果您申请 GMB API 并且您管理验证可以访问帐户评论的位置,但这仅在您获得 API 批准并且您对企业进行身份验证时才有效;或者,您可以随时复制/粘贴或使用第三方服务来获取 Reviewmaker 等;但是没有其他方法可以通过 Places API 返回超过 5 个,这与 Yelp 相同,Yelp 也限制您获取超过上限的数字。

于 2018-07-01T14:59:09.917 回答
1

如此处所述:http ://code.google.com/p/gmaps-api-issues/issues/detail?id=2477

“这是在 Google+ Local 上显示的前 5 条评论,我认为这些评论是按相关性/有用性排名的。无法更改所请求的评论集。”

于 2013-03-31T13:26:00.340 回答
0

只需您拥有一个始终从谷歌地图位置返回最新评论的 api。

https://maps.googleapis.com/maps/api/place/details/json?place_id={Your Place ID}&fields=name,rating,reviews&key={GOOGLE DEV KEY}

这是该 api 的响应。

{
  "html_attributions" : [],
  "result" : {
  "name" : "gathern app",
  "rating" : 5,
  "reviews" : [
     {
        "author_name" : "صالح وحيد Saleh Waheed",
        "author_url" : "https://www.google.com/maps/contrib/100946881376925963940/reviews",
        "language" : "en",
        "profile_photo_url" : "https://lh3.ggpht.com/-bgNhUmU_Ftg/AAAAAAAAAAI/AAAAAAAAAAA/-rLGfz7aAEk/s128-c0x00000000-cc-rp-mo-ba2/photo.jpg",
        "rating" : 5,
        "relative_time_description" : "in the last week",
        "text" : "Gathern is an online platform that helps people find vacation rentals and chalets in KSA.\n\nGreat team and great website.\n\nGathern.co",
        "time" : 1582015365
     },
     {
        "author_name" : "Hassan Raza",
        "author_url" : "https://www.google.com/maps/contrib/109666951306307815476/reviews",
        "language" : "en",
        "profile_photo_url" : "https://lh3.ggpht.com/-VrVSfhsRo28/AAAAAAAAAAI/AAAAAAAAAAA/9gJQWSdJ3TM/s128-c0x00000000-cc-rp-mo-ba3/photo.jpg",
        "rating" : 5,
        "relative_time_description" : "a week ago",
        "text" : "Great peoples and superb platform for booking online chalets.",
        "time" : 1581492666
     },
     {
        "author_name" : "Eman Alswailem",
        "author_url" : "https://www.google.com/maps/contrib/115734038039879616345/reviews",
        "language" : "ar",
        "profile_photo_url" : "https://lh4.ggpht.com/-xNiMOs2bD3A/AAAAAAAAAAI/AAAAAAAAAAA/tElDIT5zP78/s128-c0x00000000-cc-rp-mo/photo.jpg",
        "rating" : 5,
        "relative_time_description" : "2 months ago",
        "text" : "تطبيق ممتاز لحجز الشاليهات اون لاين",
        "time" : 1575659218
     },
     {
        "author_name" : "Hanan alnami",
        "author_url" : "https://www.google.com/maps/contrib/114513293972924581219/reviews",
        "language" : "ar",
        "profile_photo_url" : "https://lh6.ggpht.com/-BUEZWeWQhv4/AAAAAAAAAAI/AAAAAAAAAAA/7A8id3FGLQA/s128-c0x00000000-cc-rp-mo/photo.jpg",
        "rating" : 5,
        "relative_time_description" : "6 months ago",
        "text" : "تطبيق ممتاز دايم احجز منه شاليهات شكرا لكم",
        "time" : 1566223757
     }
  ]
},
"status" : "OK"

}

于 2020-02-24T08:24:37.540 回答