描述

  • 天气API接口

接口版本

版本号 制定人 制定日期 版本描述
1.0 谢易成 2020-12-14 初始版本

IP地址

http://192.168.1.1

API列表

名字 描述
get_weather 获取天气信息
get_time 获取时间信息

1、get_weather

请求参数说明

参数名 类型 说明
weather_msg string 天气信息

调用示例

  1. ubus命令方式:
ubus call weather get_weather '{"weather":"datas[0]"}'
  1. wapi命令方式:
wapi 8ms '{"ver": "1.0", "module": "weather",  "api": "get_weather", "param": {"weather": "datas[0]"}}'

返回示例

{
        "city": "深圳",
        "datas[0].air": "良",
        "datas[0].date": "2021-01-04",
        "datas[0].wea": "阴",
        "datas[0].weaImg": "yin",
        "datas[0].weekDesc": "周一",
        "datas[0].wendu": "16~21°C",
        "datas[0].wet": "38"
}

返回参数说明

参数名 类型 说明
weather_msg string 天气信息

错误码

错误码 说明

2、get_time

请求参数说明

参数名 类型 说明
time_msg string 时间信息

调用示例

  1. ubus命令方式:
ubus call weather get_time '{"time":"time"}'
  1. wapi命令方式:
wapi 8ms '{"ver": "1.0", "module": "weather",  "api": "get_time", "param": {"get_time": "time"}}'

返回示例

{
        "year": 2021,
        "month": 1,
        "day": 4,
        "hour": 16,
        "minute": 29,
        "second": 34
}

返回参数说明

参数名 类型 说明
year int 年信息
month int 月信息
day int 日信息
hour int 时信息
minute int 分信息
second int 秒信息

错误码

错误码 说明
文档更新时间: 2021-04-07 15:00   作者:shuke