Wie man Yahoo woeid durch die Position?

//Get woeid by lati/long
            HttpGet hg = new HttpGet(
                        "http://where.yahooapis.com/geocode?location=" + latlon + "&flags=J&gflags=R)");
            HttpClient hc = new DefaultHttpClient();
            HttpResponse weatherHR = hc.execute(hg);

            if (weatherHR.getStatusLine().getStatusCode() != HttpStatus.SC_OK) {
                if (DEBUG)
                    Utils.log("", "Location != HttpStatus.SC_OK");
                return null;
            }

Habe ich diese API und es funktioniert ok vor, aber Es wieder ein Fehler seit heute, das Ereignis HttpStatus.SC_OK ist nicht OK. Hat diese API geschlossen worden? Danke.

InformationsquelleAutor herbertD | 2013-04-03
Schreibe einen Kommentar