如何使用yahoo weather api在单个请求中获取多个城市的天气预报

时间:2016-11-11 10:03:09

标签: weather-api yahoo-weather-api

我正在从yahoo API获取天气信息,但是在单个请求中我只能获得单个地点。我想在单个请求中一次获得多个城市的信息。 请帮助我获得多个城市供稿。

1 个答案:

答案 0 :(得分:1)

使用他们提供的here网络测试平台,您可以测试不同的YQL查询。

YQL是一种类似SQL的语言,它支持ORIN等运算符。

我对你的问题的测试是这样的:

select * from weather.forecast where woeid in (select woeid from geo.places(1) where text in ("nome, ak", "chicago, il", "dallas, tx"))

这为3个城市带来了天气预报。