我想在一次api通话中获取一个或多个地点的天气信息?这可以在http://api.worldweatheronline.com/free/v1/weather.ashx
中实现http://api.worldweatheronline.com/premium/v1/weather.ashx?key=[APIKey]&q=London&format=json&num_of_days=5 这将返回伦敦城市的结果 但是当我将数据作为逗号分隔的值放置时 http://api.worldweatheronline.com/premium/v1/weather.ashx?key=[APIKey]&q=London,India&format=json&num_of_days=5
然后它没有为伦敦和印度提供json,坚果提供与上述伦敦城市相同的json。
有人可以告诉我api电话,还是可以通过一次通话获取所有城市的数据?
由于
答案 0 :(得分:0)
文档建议您只能在请求中定义单个位置;
https://developer.worldweatheronline.com/api/docs/local-city-town-weather-api.aspx#qparameter
基于此,您需要为您要检查的每个位置提交请求。