油价查询服务-油价查询服务数据格式文档
类目type
key | 说明 | define |
---|---|---|
type | 类型编号 | 11091 |
搜索模式
1. 省份+油价
意图字段
key | 类型 | 示例 |
---|---|---|
province | string | 广东省 |
gps_country | string | 中国 |
gps_province | string | 广东省 |
gps_city | string | 广州市 |
gps_district | string | 海珠区 |
意图数据
{
"type": 11091,
"slot_list": [
{
"key": "province",
"value": "广东省"
},
{
"key": "gps_country",
"value": "中国"
},
{
"key": "gps_province",
"value": "广东省"
},
{
"key": "gps_city",
"value": "广州市"
},
{
"key": "gps_district",
"value": "海珠区"
}
],
"longitude": 113.319061279,
"latitude": 23.101486206,
"qi_score": 1
}
2. 城市+油价
意图字段
key | 类型 | 示例 |
---|---|---|
province | string | 广东省 |
city | string | 广州市 |
gps_country | string | 中国 |
gps_province | string | 广东省 |
gps_city | string | 广州市 |
gps_district | string | 海珠区 |
意图数据
{ "type": 11091, "slot_list": [ { "key": "province", "value": "广东省" }, { "key": "city", "value": "广州市" }, { "key": "gps_country", "value": "中国" }, { "key": "gps_province", "value": "广东省" }, { "key": "gps_city", "value": "广州市" }, { "key": "gps_district", "value": "海珠区" } ], "longitude": 113.319114685, "latitude": 23.101509094, "qi_score": 1 }
数据字段
key | 类型 | 含义 | 说明 |
---|---|---|---|
err_code | integer | 返回值 | 0代表正确,非0代表错误 请按如下规范返回错误码并且前端显示提示语: -1: 无结果 -2: 参数不对 -3: 系统错误 |
err_msg | string | 提示信息 | 针对于返回码的描述信息 |
next_change_time | string | 下轮调价时间 | 9月1日 24时起 |
more_desc | string | 查看更多文案 | 其它地区油价,点击查看详情 |
items | array | 结果列表 | |
items.title_left | string | 汽油品名 | 92#汽油: |
items.price_left | string | 左侧汽油价格 | 7.21 |
items.delta_left | string | 价格变化值 | +0.01 |
items.title_right | string | 右侧汽油名称 | 95#汽油: |
items.price_right | string | 右侧汽油价格 | |
items.delta_right | string | 右侧价格变化量 | |
items.delta_left@color | string | 价格升降状态 | delta_left字段的颜色; 可选值: 'ORANGE' // 其中枚举值:'GREEN': '#1AAD19','RED': '#FA5151' 'BLUE': '#509FC9','ORANGE': '#F5A623','BLACK': '#000000','DARK_GRAY': '#353535','GRAY': '#888888' |
items.delta_right@color | string | 右侧变化状态 | delta_right 字段的颜色; 可选值: 'ORANGE' // 其中枚举值:'GREEN': '#1AAD19','RED': '#FA5151' 'BLUE': '#509FC9','ORANGE': '#F5A623','BLACK': '#000000','DARK_GRAY': '#353535','GRAY': '#888888' |
jump_more | string | 查看更多路径 | |
req_location | string | 查询城市 | 北京市 |
jump_url | string | 点击widget跳转落地页路径 |
基于不同的搜索模式与自定义模板,开发者实际需要返回的数据字段为本文档所罗列的数据字段的子集。本文档仅做参考,开发者可在选择模板后,在微信公众平台下载相应的接口协议文档。详情见开发后台接口。