通过命令行使用纽约时报 API

问题描述 投票:0回答:1

我正在使用命令行访问《纽约时报》API,但遇到了问题。当我运行

http://api.nytimes.com/svc/search/v2/articlesearch.json?[q=obama]&api-key=(my
key)' 时,我得到 'http' is not recognized as an internal or external command, operable program, or batch file

任何帮助将不胜感激。

api command-line text-analysis
1个回答
2
投票

仅输入 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
© www.soinside.com 2019 - 2024. All rights reserved.