我正在使用带有 R 的 httr 包的 Zomato API 来获取 JSON 格式的餐厅数据。当我使用以下代码块调用 Zomato API 时,我得到了一些记录,并且 GET() 调用似乎工作正常。
require(httr)
URL <- 'https://developers.zomato.com/api/v2.1/search?'
request <- GET(URL,
add_headers(User_key="#######_MY_API_KEY##############"),
query=list(entity_id = '94753',
entity_type = 'zone'))
content(request)
在下一个代码块中,我对代码进行了一次修改以进行文本搜索。此 API 调用返回 0 条记录,但它应该返回 2 - 我知道这一点,因为 Zomato 在https://developers.zomato.com/documentation有一个 API 测试工具,它允许您(除其他外)输入您的 API 密钥和一些属性值来生成 API 调用,并查看返回的记录。
我不明白为什么以下 GET() 返回 0 条记录。建议?
request <- GET(URL,
add_headers(User_key="#######_MY_API_KEY##############"),
query=list(entity_id = '94753',
entity_type = 'zone',
q = 'border')) #added parameter and value
content(request)