获得了城市的编码,即可根据编码查询所属地区的天气情况,这里是查询当天的天气情况
接口路径:
/weather/today
请求方式:GET
请求参数:
参数名称 | 参数类型 | 是否必须 | 说明 |
code | string | 是 | 城市编码 |
返回参数:
参数名称 | 参数类型 | 是否必须 | 说明 |
code | int | 是 | 状态码,1为成功,其他失败 |
msg | string | 是 | 返回信息 |
data | object | 是 | 返回数组 |
.date | string | 是 | 查询日期,当天 |
.city | string | 是 | 城市名称 |
.city_en | string | 城市英文名 | |
.update_time | string | 信息最近更新时间 | |
.real_time_temp | 实时温度 | ||
.weather | 天气 | ||
.weather_en | 天气,英文 | ||
.weather_code | 天气编码 | ||
.weather_day_code | 白天/夜晚代号 d 白天, n夜晚 | ||
.air_pressure | 气压 | ||
.wind | 风力 | ||
.wind_direction | 风向 | ||
.humidity | 湿度 | ||
.max_temp | 最高温度 | ||
.min_temp | 最低温度 | ||
.sunrise | 日出时间 | ||
.sunset | 日落时间 | ||
.weather_day | 白天天气 | ||
.weather_night | 夜晚天气 | ||
.air_quality | 空气质量指数 | ||
.air_quality_tip | 空气质量指数提醒 | ||
.index | 指数部分 | ||
..dressing_index | 穿衣指数 | ||
...index | 指数 | ||
...tip | 指导 | ||
..comfort_index | 舒适度指数 | ||
...index | 指数 | ||
...tip | 指导 | ||
..fishing_index | 钓鱼指数 | ||
...index | 指数 | ||
...tip | 指导 | ||
..a_cold_index | 感冒指数 | ||
...index | 指数 | ||
...tip | 指导 | ||
..dry_index | 干燥指数 | ||
...index | 指数 | ||
...tip | 指导 | ||
..rowing_index | 划船指数 | ||
...index | 指数 | ||
...tip | 指导 | ||
..allergy_index | 过敏指数 | ||
...index | 指数 | ||
...tip | 指导 | ||
..movement_index | 过敏指数 | ||
...index | 指数 | ||
...tip | 指导 | ||
..air_pollution_index | 空气污染指数 | ||
.alarm_data | 天气预警数据,一般都为空 | ||
time | timestamp | 是 | 请求时间 |
返回样例:
{
"code": 1,
"msg": "success",
"data": {
"date": "20221107",
"city": "南京",
"city_en": "nanjing",
"update_time": "11:05",
"real_time_temp": "18",
"weather": "霾",
"weather_en": "haze",
"weather_code": "53",
"weather_day_code": "d",
"air_pressure": "1018",
"wind": "2级",
"wind_direction": "西风",
"humidity": "54%",
"max_temp": "22",
"min_temp": "10",
"sunrise": "06:26",
"sunset": "17:10",
"weather_day": "01",
"weather_night": "01",
"air_quality": "68",
"air_quality_tip": "良",
"index": {
"dressing_index": {
"index": "较舒适",
"tip": "建议穿薄外套或牛仔裤等服装。"
},
"comfort_index": {
"index": "舒适",
"tip": "白天温度宜人,风力不大。"
},
"fishing_index": {
"index": "较适宜",
"tip": "风稍大会对垂钓产生一定影响。"
},
"a_cold_index": {
"index": "少发",
"tip": "无明显降温,感冒机率较低。"
},
"dry_index": {
"index": "适宜",
"tip": "风速偏大,气温适宜,但体感温度会低一些,建议多使用保湿型护肤品涂抹皮肤,预防皮肤干燥。"
},
"rowing_index": {
"index": "较适宜",
"tip": "风稍大会对划船产生一定影响。"
},
"allergy_index": {
"index": "极不易发",
"tip": "无需担心过敏。"
},
"movement_index": {
"index": "较适宜",
"tip": "风力稍强,推荐您进行室内运动。"
},
"air_pollution_index": {
"index": "良",
"tip": "气象条件有利于空气污染物扩散。"
}
},
"alarm_data": []
},
"time": "2022-11-07 11:19:46"
}