我正在使用命令行访问《纽约时报》API,但遇到了问题。当我运行
http://api.nytimes.com/svc/search/v2/articlesearch.json?[q=obama]&api-key=(mykey)' 时,我得到
'http' is not recognized as an internal or external command, operable program, or batch file
任何帮助将不胜感激。
仅输入 URL 在 Linux 上不起作用。您必须使用
curl
。用于使用 curl
从 GET 请求中检索 JSON:
curl -i -H "Accept: application/json" -H "Content-Type: application/json" -X GET http://api.nytimes.com/svc/search/v2/articlesearch.json?q=obama&api-key=KEY