Questions tagged [yahoo-weather-api]

Yahoo! Weather RSS Feed enables you to get up-to-date weather information for your location.

Yahoo! Weather RSS Feed enables you to get up-to-date weather information for your location. You can use the data into your own web site or client application. The Weather RSS feed is a dynamically-generated feed based on WOEID.

Provides options to choose between Fahrenheit or Celsius degrees units and option to get up to 10 days forecasts in the feed.

Useful links

Related tags

164 questions
1
vote
2 answers

Read NEW "query.yahooapis.com" weather XML

I used to use the below to code to retrieve current temperature. But it does not work anymore. Set objXML = CreateObject("Microsoft.XMLDOM") objXML.async = "false" objXML.setProperty "ServerHTTPRequest",…
1
vote
0 answers

Yahoo Weather API Working over HTTP but not HTTPS?

So I have a website where I want to display the weather. The code I have (shown below) works just fine when I have the $base_url variable set as the following: $base_url = "http://query.yahooapis.com/v1/public/yql"; But whenever I switch it over to…
SDCore
  • 41
  • 7
1
vote
0 answers

yahoo weather API PHP authorization

In yahoo developer guide is example how to retrieve some info about weather $BASE_URL = "http://query.yahooapis.com/v1/public/yql"; $yql_query = 'select wind from weather.forecast where woeid in (select woeid from geo.places(1) where…
Wizard
  • 10,985
  • 38
  • 91
  • 165
1
vote
0 answers

How to create a Rest Query for Yahoo Weather

I'm coding in Python 3.4 and trying to create a Rest Query to access Yahoo Weather Data. I've created a Client ID and Secret for Yahoo's YQL, but I'm not sure how to proceed. Thanks in advance for your help. My Code looks as follows: import…
dromalpalli
  • 117
  • 2
  • 10
1
vote
2 answers

How to get the tag "" from Yahoo Weather RSS in PHP?

load('http://weather.yahooapis.com/forecastrss?p=VEXX0024&u=c'); $channel = $doc->getElementsByTagName("channel"); foreach($channel as $chnl) { $item =…
DomingoSL
  • 14,920
  • 24
  • 99
  • 173
1
vote
0 answers

I got unparseable date BST exception

I called Yahoo weather api and got a unparseable date BST exception. service.refreshWeather("London, United Kingdom"); This is the location that I want to get weather information. public void refreshWeather(String location) { new…
Frank Wang
  • 21
  • 1
1
vote
2 answers

yahoo weather API YQL query update frequency

select * from weather.forecast where woeid in (SELECT woeid FROM geo.placefinder WHERE text="30.7063633,76.7047791" and gflags="R") I am using the above YQL to fetch the weather conditions for some lat, lng to show in my iOS app. The response has …
nr5
  • 4,228
  • 8
  • 42
  • 82
1
vote
1 answer

Download online XML file using cron

I am very new using cron jobs, and I was wondering if there was a way to save this XML file 'http://xml.weather.yahoo.com/forecastrss?p=75039' and save it to a folder in my hosting, somewhere like '/urban/test-page/'I have no idea if this is even…
Riquelmy Melara
  • 849
  • 2
  • 11
  • 28
1
vote
2 answers

Using Yahoo Weather API and the link to the "Full Forecast" no longer works

I am using the jQuery plugin jquery.simpleweather to query for Yahoo weather for a specific zip code and I get the response back in JSON format. One of the keys returned is called "link" which provides a link to the "Full Forecast". This used to…
Erich H.
  • 467
  • 1
  • 9
  • 28
1
vote
1 answer

C# with yahoo weather api

My intention is to develop a C# form application that retrieves weather data from yahoo weather api. I need the program to get weather data from yahoo and retrieves in the respective text input. The code is as follows.. using System; using…
senye
  • 175
  • 2
  • 15
1
vote
1 answer

Spring RestTemplete - Could not map XML to Object

I'm new to Spring and I'm using RestTemplete to map the response from Yahoo Weather API to POJO objects. All I want is the "yweather:forecast" under "item", but for some reason it could not be mapped to the class I created, so does…
YueQi Li
  • 303
  • 4
  • 15
1
vote
1 answer

Get weather from Yahoo with jQuery

I'm using the Google API to get a user's location on this site. How would I go about getting the weather for that user from Yahoo or somewhere? UPDATE: Ok so I'm going with Yahoo, but I've never done an HTTP GET request before. Im using jQuery and…
Chris Armstrong
  • 3,585
  • 12
  • 42
  • 47
1
vote
1 answer

Find out if Yahoo Weather data exist from where.yahooapis response

I am creating a weather page in PHP. The user enters a city/place name in a search form and I search for his input in where.yahooapis to find the 5 top relative woeids. (i.e. http://…
vagavan
  • 625
  • 5
  • 8
1
vote
1 answer

Yahoo Weather API 3 days Forecast with humidity value

I am building a web app, which uses Yahoo Weather API to provide weather information, based on a ZIP code, provided by the users. I know that in order to obtain this data for certain number of days I have to add it as a parameter in my request, like…
Nat Naydenova
  • 771
  • 2
  • 12
  • 30
1
vote
3 answers

jquery simpleweather not recognized

I want to show weather on my web site using simpleweatherjs, but it is not working for me. Can somebody tell me what I'm doing wrong? Page is blank. If I, for example before line $.simpleWeather({...}); put $("#weather").html("test"), then this…
repincln
  • 2,029
  • 5
  • 24
  • 34