-1

I want to create a software (with Java SE and JSON) to display information about Yahoo's forecast. I get the information here (JSON format):

Are there guides, articles, blogs, ... with example for my software?

I see the Yahoo Centre but is deprecrate (from 2007) and I can't find a valid guide!

Thanks! :-)

dsolimano
  • 8,870
  • 3
  • 48
  • 63
InfoDevelop
  • 13
  • 1
  • 6

1 Answers1

0

I don't know if you will be able to find detailed API documentation or step-by-step tutorial specifically for Yahoo Weather. A good place to start is the YQL Console. Notice there is a weather category with a weather.forecast API test tool.

If you look closely at the URL you posted and the queries in the YQL test tool, they rely on something a woeid (where-on-earth identifier) parameter. You can utilize the Yahoo WOEID Lookup to determine the identifier of a particular location, to be input into your query. Hope that will help get you started. Good luck!

ivan.sim
  • 8,972
  • 8
  • 47
  • 63
  • Thanks isim :-) I want to study a simple step-by-step tutorial. I already know YQL (and its power). Have you got an idea? Bye! – InfoDevelop Aug 26 '14 at 22:18