5

我正在使用 yelp 2.0 Api,我想知道是否有办法检索类别和子类别的列表。我知道该列表可在此处获得http://www.yelp.com/developers/documentation/category_list但似乎没有办法检索它。我想有一个来源来检索它,这样它就不会在我的应用程序中硬编码,并且会保持最新。

4

2 回答 2

12

这是 json 格式的所有类别的链接:https ://raw.github.com/Yelp/yelp-api/master/category_lists/en/category.json

您可以通过编程方式下载它。页面的好处是它提供了 Yelp 本体中存在的类别。

[编辑] 现在你可以得到来自所有国家的所有类别的 json:

https://www.yelp.com/developers/documentation/v2/all_category_list/categories.json

坏消息,不是按国家分类的,都是

于 2012-07-27T01:23:46.747 回答
1

我知道你不会喜欢它,但我建议不要使用来自 github 的 json 而是解析这个 html 页面

截至从接受的答案编写 json 时,已有 11 个月大。它缺少许多类别。仅举几例:

gift shops
shanghainese
cantonese
food trucks
beer
wine & spirits
bubble tea
puerto rican
resorts

另请注意,此 html 列表中的类别、git hub 中的 json 和每个企业的网页上使用的关于 word. 在某些情况下它是wine & spirits,而在其他情况下它是wine and spirits。小心它。

PS。我(还)不是 Scala 大师,但这我解析 HTML 的方式

于 2013-04-17T20:19:02.680 回答