使用Yelp API使用Python脚本按类别搜索餐馆

时间:2014-06-08 17:53:32

标签: python yelp

我想按类别搜索Yelp API的餐馆。但是,我使用的关键字给我一个无效的错误。这就是我的意思:

使用来自https://github.com/Yelp/yelp-api/tree/master/v2/python

的Python代码(search.py​​)

我有以下查询:

python search.py --consumer_key=XXX --consumer_secret=XXXX \
--token=XXX --token_secret=XXX --location="sf" --term="restaurants" --category='Indian'

我收到以下错误:

{
  "error": {
    "field": "category_filter", 
    "id": "INVALID_PARAMETER", 
    "text": "One or more parameters are invalid in request"
  }
}

你能告诉我类别的正确查询吗?请注意,当我删除--category关键字时,查询会起作用。

1 个答案:

答案 0 :(得分:1)