i searched a while but found nothing, thats simular to my problem.
i\'m trying to use the YAHOO Weather API, for example: http://weather.yahooapis.com/forecastrss?w=
The former Yahoo Weather API has became deprecated. The new Yahoo Weather API requires a query string to get weather.
Use the following query string to get weather data by latitude and longitude -
"https://query.yahooapis.com/v1/public/yql?q=select * from weather.forecast where woeid in (select woeid from geo.places(1) where text=\"(" + latitude + "," + longitude + ")\")&format=json"
Eg - https://query.yahooapis.com/v1/public/yql?q=select%20*%20from%20weather.forecast%20where%20woeid%20in%20(select%20woeid%20from%20geo.places(1)%20where%20text%3D%22(31.63%2C74.87)%22)&format=json