我在查询纽约时报地理API时遇到了一些问题,我想知道是否有人可以让我知道我做错了什么。我想查询来自纬度/长位置特定距离的文章或查询边界框。
如果我在浏览器栏中输入查询URI,那么:
http://api.nytimes.com/svc/semantic/v2/geocodes/query.json?nearby=38.920833,-94.622222&api-key=MY_KEY
我明白了:
{
"status": "ERROR",
"copyright": "Copyright (c) 2015 The New York Times Company. All Rights Reserved.",
"errors": ["global name \u0027lat\u0027 is not defined"],
"results": []
}
如果我使用API Builder,无论是否提供过滤器,我都会得到以下信息。
{
"status": "ERROR",
"copyright": "Copyright (c) 2015 The New York Times Company. All Rights Reserved.",
"errors": [
"Specify at least one filter"
],
"results": []
}
感谢您提供的任何帮助!