26

我正在做一个应用程序,我使用 google places API 提取 google 评论。当我在“ https://developers.google.com/maps/documentation/javascript/places ”中阅读与之相关的文档时,我发现我只能获得 5 条热门评论。是否有任何选项可以获得更多评论。

4

5 回答 5

19

要使用 Google API 访问超过 5 条评论,您必须从 Google 购买高级数据访问权限。该高级计划将授予您访问各种额外数据点的权限,您必须花一大笔钱。

如果您是想要检索所有评论的企业主,您可以这样做,但首先您必须通过 MyBusiness API 进行验证,更多信息请点击此处:https ://developers.google.com/my-business /

于 2017-09-15T18:59:53.067 回答
17

有一个功能请求:问题 7630:包含超过 5 条评论的响应——我建议您“加星”它以接收更新。

于 2016-09-19T14:49:34.450 回答
1

不幸的是,除非您在按照 Tekill 所说的经过验证后成为企业主,否则无法在场所 API 中获得超过 5 条评论。但看起来有一些外部服务可以获得所有评论。我的猜测是他们直接从谷歌地图上抓取它们:其中一些服务是WextractorReviewShakeAllReviews

于 2019-09-29T19:55:43.793 回答
0

除了@miguev 的回答之外,如果不使用高级 API(据我与之交谈过的谷歌地图人员所说),目前无法获得超过 5 条顶级评论,而且价格昂贵。

于 2017-02-21T12:58:03.613 回答
0

或者,您可以使用 SerpApi 等第三方解决方案来抓取任何地方的所有评论。这是一个免费试用的付费 API。

每页包含 10 个结果。要实现分页,只需使用start定义结果偏移量的参数(例如,0(默认)是结果的第一页,10是结果的第二页,20是结果的第三页等)

示例 python 代码(也可在其他库中获得):

from serpapi import GoogleSearch

params = {
  "engine": "google_maps_reviews",
  "place_id": "0x89c259a61c75684f:0x79d31adb123348d2",
  "api_key": "SECRET_API_KEY"
}

search = GoogleSearch(params)
results = search.get_dict()
reviews = results['reviews']

示例输出:

"reviews": [
  {
    "user": {
      "name": "Waylon Bilbrey",
      "link": "https://www.google.com/maps/contrib/107691056156160235121?hl=en-US&sa=X&ved=2ahUKEwiUituIlpTvAhVYCc0KHbvTCrgQvvQBegQIARAx",
      "thumbnail": "https://lh3.googleusercontent.com/a-/AOh14GjOj6Wjfk1kSYjhvH7WIBNMdl4nPj6FvUhvYcR6=s40-c0x00000000-cc-rp",
      "reviews": 1
    },
    "rating": 4,
    "date": "a week ago",
    "snippet": "I've been here multiple times. The coffee itself is just average to me. The service is good (the people working are nice). The aesthetic is obviously what brings the place some fame. A little overpriced (even for NY). A very small cup for $6 where I feel like the price comes from the top rainbow foam decor , when I'm going to cover it anyways. If it's for an insta pic then it may be worth it?"
  },
  {
    "user": {
      "name": "Amber Grace Sale",
      "link": "https://www.google.com/maps/contrib/106390058588469541899?hl=en-US&sa=X&ved=2ahUKEwiUituIlpTvAhVYCc0KHbvTCrgQvvQBegQIARA7",
      "thumbnail": "https://lh3.googleusercontent.com/a-/AOh14Gj84nHu_9V_0V4yRbZcr-8ZTYAHua6gUBP8fC7W=s40-c0x00000000-cc-rp-ba3",
      "local_guide": true,
      "reviews": 33,
      "photos": 17
    },
    "rating": 5,
    "date": "2 years ago",
    "snippet": "They really take pride in their espresso roast here and the staff is extremely knowledgeable on the subject. It’s also a GREAT place to do work although a table is no guarantee; you might have to wait for a bit. My almond milk cappuccino was very acidic at the end which wasn’t expected but I could still tell the bean was high quality. Their larger lattés they put in a tall glass cup which looks really really cool. Would definitely go again.",
    "likes": 2,
    "images": [
      "https://lh5.googleusercontent.com/p/AF1QipMup24_dHrWtNN4ZD70EPsiRMf_tykcUkPw6A1H=w100-h100-p-n-k-no"
    ]
  },
  {
    "user": {
      "name": "Kelvin Petar",
      "link": "https://www.google.com/maps/contrib/100859090874785206875?hl=en-US&sa=X&ved=2ahUKEwiUituIlpTvAhVYCc0KHbvTCrgQvvQBegQIARBG",
      "thumbnail": "https://lh3.googleusercontent.com/a-/AOh14GhdIvUDamzfPqbYIpwhnGJV2XWSi77iVXfEsiKS=s40-c0x00000000-cc-rp",
      "reviews": 3
    },
    "rating": 4,
    "date": "3 months ago",
    "snippet": "Stumptown Cafe is the perfect place to work or catch up with friends. Never too loud, never too dead. Their lattes and deliciously addicting and the toasts are tasty as well. Wifi is always fast, which is a huge plus! The staff are the friendliest, I highly recommend this place!"
  },
  ...
]

您可以查看文档以获取更多详细信息。

免责声明:我在 SerpApi 工作。

于 2021-03-08T11:17:49.343 回答