openweathermap api获取TODAY和周末的其余时间?

时间:2016-07-24 23:51:30

标签: java android openweathermap

我想知道我是否可以使用openweathermap api在一个请求中调用以立即获取有关(今天和所有工作日)的数据! 我试过这个>>

  

http://api.openweathermap.org/data/2.5/weather?q=london&units=metric&APPID=value

它只提供今天的数据

然后我尝试了预测

  

http://api.openweathermap.org/data/2.5/forecast/?q=london%2&cnt=7&units=metric&APPID=value

这也给了我一些工作日的数据。

有没有办法在一个请求中获得所有(今天和工作日)?

2 个答案:

答案 0 :(得分:2)

http://openweathermap.org处的api文档显示,http://openweathermap.org/forecast16记录了“forecast16”api。

文档说你可以打电话

api.openweathermap.org/data/2.5/forecast/daily?q= {city name},{country code}& cnt = {cnt}

并且{cnt}是您要求的一天数量的数据(从1到16)

所以,在你的情况下,

http://api.openweathermap.org/data/2.5/forecast/daily?q=london&units=metric&APPID=value&cnt=7

应该给你7天的数据。

答案 1 :(得分:0)

16天天气预报在任何位置或城市均可用。天气预报包括每日天气,并以JSON或XML格式提供。仅适用于所有付费帐户。

https://openweathermap.org/forecast16