饥人谷天气API(调用简单)
<p><strong>简要描述:</strong> </p>
<ul>
<li>饥人谷天气API</li>
</ul>
<p><strong>请求URL:</strong> </p>
<ul>
<li><code>http://api.jirengu.com/getWeather.php</code></li>
</ul>
<p><strong>请求方式:</strong></p>
<ul>
<li>GET </li>
</ul>
<p><strong>参数:</strong> </p>
<table>
<thead>
<tr>
<th style="text-align: left;">参数名</th>
<th style="text-align: left;">必选</th>
<th style="text-align: left;">类型</th>
<th>说明</th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align: left;">city</td>
<td style="text-align: left;">是</td>
<td style="text-align: left;">string</td>
<td>城市名,例如南京</td>
</tr>
</tbody>
</table>
<p><strong>请求示例</strong></p>
<ul>
<li>
<p><code>http://api.jirengu.com/getWeather.php?city=南京</code></p>
<p><strong>返回示例</strong></p>
</li>
</ul>
<pre><code> {
"error": 0,
"status": "success",
"date": "2018-10-07",
"results": [
{
"currentCity": "南京",
"pm25": "75",
"index": [
{
"des": "建议着长袖T恤、衬衫加单裤等服装。年老体弱者宜着针织长袖衬衫、马甲和长裤。",
"tipt": "穿衣指数",
"title": "穿衣",
"zs": "舒适"
},
{
"des": "较适宜洗车,未来一天无雨,风力较小,擦洗一新的汽车至少能保持一天。",
"tipt": "洗车指数",
"title": "洗车",
"zs": "较适宜"
},
{
"des": "各项气象条件适宜,无明显降温过程,发生感冒机率较低。",
"tipt": "感冒指数",
"title": "感冒",
"zs": "少发"
},
{
"des": "天气较好,但因风力稍强,户外可选择对风力要求不高的运动,推荐您进行室内运动。",
"tipt": "运动指数",
"title": "运动",
"zs": "较适宜"
},
{
"des": "紫外线强度较弱,建议出门前涂擦SPF在12-15之间、PA+的防晒护肤品。",
"tipt": "紫外线强度指数",
"title": "紫外线强度",
"zs": "弱"
}
],
"weather_data": [
{
"date": "周日 10月07日 (实时:20℃)",
"dayPictureUrl": "http://api.map.baidu.com/images/weather/day/duoyun.png",
"nightPictureUrl": "http://api.map.baidu.com/images/weather/night/duoyun.png",
"weather": "多云",
"wind": "东风3-4级",
"temperature": "25 ~ 17℃"
},
{
"date": "周一",
"dayPictureUrl": "http://api.map.baidu.com/images/weather/day/duoyun.png",
"nightPictureUrl": "http://api.map.baidu.com/images/weather/night/xiaoyu.png",
"weather": "多云转小雨",
"wind": "东风3-4级",
"temperature": "25 ~ 18℃"
},
{
"date": "周二",
"dayPictureUrl": "http://api.map.baidu.com/images/weather/day/xiaoyu.png",
"nightPictureUrl": "http://api.map.baidu.com/images/weather/night/yin.png",
"weather": "小雨转阴",
"wind": "西北风3-4级",
"temperature": "23 ~ 13℃"
},
{
"date": "周三",
"dayPictureUrl": "http://api.map.baidu.com/images/weather/day/duoyun.png",
"nightPictureUrl": "http://api.map.baidu.com/images/weather/night/qing.png",
"weather": "多云转晴",
"wind": "北风4-5级",
"temperature": "20 ~ 12℃"
}
]
}
]
}</code></pre>