接口地址: http://res.abeim.cn/api-music_163_record
返回格式: JSON/302重定向
请求方式: GET/POST
请求示例: http://res.abeim.cn/api-music_163_record?UserId=1529412369&t=week
请求参数说明:
名称 | 必填 | 类型 | 说明 |
---|---|---|---|
id | 必填 | String | 网易云音乐用户id |
t | 选填 | String | 听歌排行榜时间段 all:全部 week:最近一周 默认:all |
响应参数说明:
名称 | 类型 | 说明 |
---|---|---|
code | Int | 返回状态码 200:成功 |
msg | String | 返回提示信息 |
type | String | 排行榜时间段 |
data | Array | 返回解析数据 |
响应参数说明(data):
名称 | 类型 | 说明 |
---|---|---|
music_id | String | 音乐id |
music_nanme | String | 歌曲名称 |
author_id | String | 作者id |
author_name | String | 作者名称 |
album_id | String | 专辑id |
album_name | String | 专辑名称 |
返回示例(json):
{ "code": 200, "msg": "ok", "type": "all", "data": [{ "music_id": 3935139, "music_name": "Breath and Life", "author_id": "Audiomachine", "author_name": "Audiomachine", "album_id": 397985, "album_name": "The Platinum Series III: Eterna" }] }
错误码说明:
名称 | 类型 | 说明 |
---|---|---|
code | Int | 201:用户id为空 210:用户id错误或者没有听歌记录 |
id | String | 输入的用户id |
msg | String | 提示信息 |
代码示例:
暂无示例,等待添加更新日志:
暂无示例,等待添加