NBA查询服务数据格式文档
类目type
key | 说明 | define |
type | 类型编号 | 26 |
搜索模式
1. NBA赛程
搜索词示例: NBA赛程
意图字段
key | 类型 | 示例 |
data_type | string |
意图数据
{"type": 26, "slot_list": [{"key": "data_type"},{"value": "1"}]}
2. 球队+赛程
搜索词示例: 热火赛程
意图字段
key | 类型 | 示例 |
data_type | string | 2 |
team1 | string | 热火 |
意图数据
{"type":26,"slot_list":[{"key":"data_type","value":"2"},{"key":"team1","value":"热火"}]}
3. 球队vs球队赛程
搜索词示例: 热火对湖人赛程
意图字段
key | 类型 | 示例 |
data_type | string | 3 |
team1 | string | 热火 |
team2 | string | 湖人 |
意图数据
{"type":26,"slot_list":[{"key":"data_type","value":"3"},{"key":"team1","value":"热火"},{"key":"team2","value":"湖人"}]}
4. 排行榜
搜索词示例: NBA排行榜
意图字段
key | 类型 | 示例 |
data_type | string | 4 |
data_sub_type | number | 1 |
意图数据
{"type":26,"slot_list":[{"key":"data_type","value":"4"},{"key":"data_sub_type","value":"1"}]}
数据字段
key | 类型 | 含义 | 说明 |
err_code | integer | 返回值 | 0代表正确,非0代表错误 请按如下规范返回错误码并且前端显示提示语: -1: 无结果 -2: 参数不对 -3: 系统错误 |
err_msg | string | 提示信息 | 针对于返回码的描述信息 |
more_description | string | 底部查看更多提示 | 点击查看更多赛程信息 |
item_list | array | 赛程列表 | 赛程列表 |
item_list.time | string | 时间 | 10-29 09:30 |
item_list.match | string | 比赛名 | 奇才VS快船 |
item_list.score | string | 得分 | 104:136 |
item_list.state | string | 赛况 | 已结束 |
item_list.jump_url | string | 跳转路径 | pages/result/result |
title | string | 球队 | 热火 |
rank | string | 排名 | 西部排名第8 |
wl | string | 战绩 | 3胜2负 |
cover | string | 图片 | https://xxx |
基于不同的搜索模式与自定义模板,开发者实际需要返回的数据字段为本文档所罗列的数据字段的子集。本文档仅做参考,开发者可在选择模板后,在微信公众平台下载相应的接口协议文档。详情见开发后台接口。