Weather Forcasts from yahoo weather api

后端 未结 5 2098
北荒
北荒 2020-12-18 12:06

How to get 3,5 or 7 day forecasts from Yahoo Weather API instead of just today and tomorrow?

http://weather.yahooapis.com/forecastrss?w=location gives response which

5条回答
  •  轮回少年
    2020-12-18 12:55

    Limit parameter is working fine:

    select item.forecast from weather.forecast where woeid in 
        (select woeid from geo.places(1) where text="munic, de") and u='c' limit 3
    

    and URL:

    https://query.yahooapis.com/v1/public/yql?q=select%20item.forecast%20from%20weather.forecast%20where%20woeid%20in%20(select%20woeid%20from%20geo.places(1)%20where%20text%3D%22munic%2C%20de%22)%20and%20u%3D%27c%27%20limit%203&format=json
    

提交回复
热议问题