请求头
Content-Type:application/x-www-form-urlencoded
请求参数
```
{
city: "北京"//城市
}
```
成功响应
```
{
"code": 0,
"data": {
"realtime": {
"wid": "01",
"temperature": "33",
"direct": "东南风",
"aqi": "51",
"humidity": "52",
"power": "4级",
"info": "多云"
},
"city": "福州",
"future": [{
"date": "2020-09-03",
"wid": {
"night": "01",
"day": "01"
},
"temperature": "25/34℃",
"weather": "多云",
"direct": "东风转持续无风向"
}, {
"date": "2020-09-04",
"wid": {
"night": "01",
"day": "01"
},
"temperature": "25/33℃",
"weather": "多云",
"direct": "持续无风向"
}, {
"date": "2020-09-05",
"wid": {
"night": "00",
"day": "07"
},
"temperature": "23/29℃",
"weather": "小雨转晴",
"direct": "持续无风向"
}, {
"date": "2020-09-06",
"wid": {
"night": "00",
"day": "00"
},
"temperature": "23/34℃",
"weather": "晴",
"direct": "持续无风向"
}, {
"date": "2020-09-07",
"wid": {
"night": "01",
"day": "00"
},
"temperature": "25/34℃",
"weather": "晴转多云",
"direct": "持续无风向"
}]
},
"message": "天气查询成功",
"status": "SUCCESS"
}
```