我已经开发了一个脚本来获取和显示谷歌评论使用谷歌地点api。它得到了5条评论,但不是最新的。
google places api返回的是5条随机评论还是最近5条评论?
谢谢
发布于 2013-03-31 21:26:00
如下所述:http://code.google.com/p/gmaps-api-issues/issues/detail?id=2477
“这是Google+本地网站上显示的前5位评论,我认为它们是按相关性/有帮助度排名的。不可能更改请求的评论集。”
发布于 2018-07-01 22:59:10
默认情况下,Places API只返回5,如果你申请GMB API,你管理验证位置,你可以访问账户上的评论,但这只在你获得API批准并通过业务认证时才起作用;或者,你总是可以复制/粘贴或使用第三方服务来获取,如Reviewsmaker;但没有其他方法可以通过Places API获得超过5的返回,Yelp也是如此,Yelp也限制你获取超过上限的数量。
发布于 2020-02-24 16:24:38
简单地说,您有一个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"}
https://stackoverflow.com/questions/15719205
复制相似问题