私はアプリを開発していますが、含めたい機能の 1 つは、ユーザーの位置を取得して WOEID 値に変換し、Yahoo 天気 RSS フィードから天気データを取得できるようにすることです。WOEID 値の要件を記載したドキュメントは次のとおりです: http://developer.yahoo.com/weather/
質問する
1879 次
1 に答える
1
WOEID は、Yahoo! プレイスファインダー API . 最初に API キーをリクエストする必要があります。次に、次のようにリクエストを送信できます。
http://where.yahooapis.com/geocode?q=[search query]&appid=[yourappidhere]
これを応答として取得します。
<ResultSet xmlns:ns1="http://www.yahooapis.com/v1/base.rng" version="2.0" xml:lang="en-US">
<Error>0</Error>
<ErrorMessage>No error</ErrorMessage>
<Locale>en-US</Locale>
<Found>1</Found>
<Quality>85</Quality>
<Result>
<quality>85</quality>
<latitude>38.898708</latitude>
<longitude>-77.036369</longitude>
<offsetlat>38.89719</offsetlat>
<offsetlon>-77.036537</offsetlon>
<radius>400</radius>
<name/>
<line1>1600 Pennsylvania Ave NW</line1>
<line2>Washington, DC 20500-0005</line2>
<line3/>
<line4>United States</line4>
<house>1600</house>
<street>Pennsylvania Ave NW</street>
<xstreet/>
<unittype/>
<unit/>
<postal>20500-0005</postal>
<neighborhood/>
<city>Washington</city>
<county>District of Columbia</county>
<state>District of Columbia</state>
<country>United States</country>
<countrycode>US</countrycode>
<statecode>DC</statecode>
<countycode>DC</countycode>
<uzip>20500</uzip>
<hash>4216F67AA1A143E9</hash>
<woeid>12766118</woeid> // This is what you need
<woetype>11</woetype>
</Result>
</ResultSet>
タグの応答を解析できます<woeid>
。
編集:
EditText があり、彼の入力から取得した都市に基づいて天気を取得したい場合は、次のようにする必要があります。
String searchQuery = Uri.encode(myEditText.getText().toString());
これで、検索クエリができました。たとえば、ユーザーが次のように入力した場合:
ハンブルグ ドイツ
次に、これは次のように変換されます。
ハンブルク_ドイツ
于 2013-01-14T19:49:30.070 に答える