gpt4 book ai didi

python - NOAA Weather REST API 在使用 curl 请求时导致错误

转载 作者:行者123 更新时间:2023-11-28 18:38:33 25 4
gpt4 key购买 nike

我正在尝试使用 NOAA 的气候数据在线 REST Web 服务 (http://www.ncdc.noaa.gov/cdo-web/webservices/v2#data) 编写一个 python 程序。但是,我在请求响应中遇到了错误。当尝试从命令行使用 curl 请求时,我输入:

curl -H "token:<MYTOKEN>" http://www.ncdc.noaa.gov/cdo-web/api/v2/data?datasetid=GHCND&locationid=ZIP:22405&startdate=1999-10-05&enddate=1999-10-25

它返回这个响应:

[1] 24322
[2] 24323
[3] 24324
phil@philUbu:~$ <?xml version="1.0" encoding="UTF-8" standalone="yes"?><response><statusCode>400</statusCode><userMessage>There was an error with the request.</userMessage><developerMessage>Required parameter 'startdate' is missing.</developerMessage></response>
[1] Done curl -H "token:..." http://www.ncdc.noaa.gov/cdo-web/api/v2/data?datasetid=GHCND
[2]- Done locationid=ZIP:22405
[3]+ Done startdate=1999-10-05

出于某种原因,它认为我遗漏了开始日期,但我已经包含了它,而且根据文档,它的格式是正确的。有人知道问题出在哪里吗?

最佳答案

url 中的 & 符号可能正在被您的 shell 解析。在它周围加上单引号:

 curl -H "token:<MYTOKEN>" 'http://www.ncdc.noaa.gov/cdo-web/api/v2/data?datasetid=GHCND&locationid=ZIP:22405&startdate=1999-10-05&enddate=1999-10-25'

关于python - NOAA Weather REST API 在使用 curl 请求时导致错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29927841/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com