我想知道我是否可以使用 openweathermap api 调用一个请求来一次获取有关(今天和所有工作日)的数据!
我试过这个>>
它只提供今天的数据
然后我尝试预测
这也给了我一些工作日的数据。
有没有办法在一个请求中获得所有(今天和工作日)?
最佳答案
http://openweathermap.org 的 api 文档显示有一个“forecast16”api,记录在 http://openweathermap.org/forecast16 。
文档说你可以打电话
api.openweathermap.org/data/2.5/forecast/daily?q={城市名称},{国家代码}&cnt={cnt}
并且 {cnt} 是您请求的数据的天数(从 1 到 16)
所以,在你的情况下,
http://api.openweathermap.org/data/2.5/forecast/daily?q=london&units=metric&APPID=value&cnt=7
应该给你 7 天的数据。
关于java - openweathermap api 以获得今天和本周的其余时间?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/38557996/