如何从API获取Yahoo Weather Backgrounds?

时间:2015-05-13 13:21:36

标签: javascript jquery json yahoo-api yahoo-weather-api

我有一个天气小工具,我需要动态背景。雅虎有天气API,但我无法找到与天气类型相关的背景图片。 https://weather.yahoo.com/这可能吗?

var url = 'http://query.yahooapis.com/v1/public/yql?q=select%20*%20from%20weather.forecast%20where%20location%3D%2248907%22&format=json'
            $.getJSON(url, function (data) {
                console.log(data)
            })

2 个答案:

答案 0 :(得分:3)

API不提供任何图像,但您可以使用大量数据来提供图像。例如,使用以下属性

condition":{"code":"34", ...  // here you can bind an image to the code

然后你有一个风对象

wind":{
  "chill":"55",       // thermometer?
  "direction":"0",     // use an image or a canvas to draw an arrow dynamically
  "speed":"0"
}, ...

和气氛对象

"atmosphere":{
  "humidity":"51",     // some drops?
  "pressure":"30.4",   // textual..
  "rising":"2",
  "visibility":"10"    // textual..
}, ...

等等。正如您所看到的,有很多方法可以说明这些数据,但这完全取决于您如何做到这一点。

答案 1 :(得分:1)

很抱歉,但没有API。 但您可以通过浏览器开发人员工具查看网络活动来访问他们的背景。

最佳解决方案是使用您自己的图像构建您自己的Api,

这是背景网址的示例:

https://s.yimg.com/os/mit/media/m/weather/images/fallbacks/lead/clear_n-e618500.jpg