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 has weather forecast of just today and tomorrow.
In what way we can have more forecasts in the response?
Thanks,
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