如何从 Google Plus 企业列表中提取类别?

How to extract category from Google Plus listing of businesses?

例如, 这个 link 是 Google 的 Tesco Extra 附加资料, https://plus.google.com/112519049895518094921/about , 其类别为超市。

我想在不抓取网站的情况下获取商家信息的类别。 是否有 Google 提供的 API 根据 id 或其他内容输出类别。我试过使用 Google 地图和地点 API,但没用。我将使用 Python.

您可以使用 Places API for this. All you need to do is specify business type.

对于您的情况,您需要在请求中添加 type=grocery_or_supermarket URL

categories supported by the Places API 的列表中,企业列表是一个相当广泛的类型。请在列表中选择业务类型时更具体,您会在那里找到很多选项。

API 请求应如下所示:

https://maps.googleapis.com/maps/api/place/radarsearch/json?location=51.503186,-0.126446&radius=5000&types=establishment&key=AddYourOwnKeyHere

关于 Python 上的 Places API 具体教程,请点击以下 Link