天气查询
GET
/v3/weather/weatherInfo请求参数
Query 参数
extensions
string
可选
气象类型 可选值:base/all base:返回实况天气 all:返回预报天气
output
string
可选
返回格式 可选值:JSON,XML
示例代码
返回响应
成功(200)
HTTP 状态码: 200
内容格式: JSONapplication/json
数据结构
status
string
可选
返回状态 值为0或1 1:成功;0:失败
count
string
返回结果总数目
info
string
返回的状态信息
infocode
string
可选
返回状态说明,10000代表正确
lives
array [object {10}]
可选
实况天气数据信息
province
string
省份名
city
string
城市名
adcode
string
区域编码
weather
string
可选
天气现象(汉字描述)
temperature
string
可选
实时气温,单位:摄氏度
winddirection
string
风向描述
windpower
string
风力级别,单位:级
humidity
string
空气湿度
reporttime
string
数据发布的时间
forecast
object
预报天气信息数据
示例成功示例
{
"status": "1",
"count": "1",
"info": "OK",
"infocode": "10000",
"lives": [
{
"province": "北京",
"city": "东城区",
"adcode": "110101",
"weather": "阴",
"temperature": "8",
"winddirection": "南",
"windpower": "≤3",
"humidity": "20",
"reporttime": "2022-03-22 16:10:59"
}
]
}
最后修改时间: 3 年前