是否有可能从谷歌地方api获得最新的五个谷歌评论?

时间:2013-03-30 13:44:35

标签: google-api google-places-api

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

google place api会返回5条随机评论或最新的5条评论?

由于

3 个答案:

答案 0 :(得分:1)

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

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

答案 1 :(得分:1)

Places API默认情况下仅返回5,如果您申请GMB API并管理验证位置,则可以访问该帐户上的评论,但这仅在您获得API批准并向企业进行身份验证时才有效;或者,您始终可以复制/粘贴或使用第三方服务来获取评论制作工具(例如Reviewsmaker);但是通过Places API不能获得超过5个返回值的其他方法,与Yelp相同,这也限制了您获取的值不超过上限。

答案 2 :(得分:0)

您只需拥有一个api,它将始终返回google地图位置的最新评论。

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"

}