-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdoc.md
56 lines (46 loc) · 1.48 KB
/
doc.md
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
## 网易云 · 乐评 API 文档
### JSON 格式
请求地址:`https://api.comments.xmb.xyz/` 或
`https://api.comments.xmb.xyz/api.v1/front/comments`
请求方式:`GET`
请求参数:暂无
返回类型:JSON
返回参数:
| 参数名 | 含义 |
| ---------- | --- |
| song_id | 歌曲 ID |
| title | 歌曲名称 |
| images | 歌曲封面图片,已处理为 HTTPS 链接 |
| author | 歌曲作者 |
| album | 歌曲所属专辑 |
| description | 歌曲描述 |
| mp3_url | 歌曲资源链接,已处理为 HTTPS 链接 |
| pub_date | 歌曲发行时间 |
| comment_id | 评论 ID |
| comment_user_id | 评论所属用户 ID |
| comment_nickname | 评论所属用户名称 |
| comment_avatar_url | 评论所属用户头像链接,已处理为 HTTPS 链接 |
| comment_content | 评论正文 |
| comment_pub_date | 评论发表日期 |
### 示例:
```js
<script>
var xhr = new XMLHttpRequest();
xhr.open('get', 'https://api.comments.xmb.xyz/api.v1/front/comments');
xhr.onreadystatechange = function () {
if (xhr.readyState === 4) {
var data = JSON.parse(xhr.responseText);
var hotComments = document.getElementById('hotComments');
hotComments.innerText = data.comment_content;
}
}
xhr.send();
</script>
```
## 更新日志
- 2019/4/24 新增歌曲资源链接
- 2019/4/21 更新 JSON 文档第一版
## 链接
- [WangMao's Blog](https://blog.wangmao.me)
- [今日诗词](https://www.jinrishici.com/)
- [Hitokoto - 一言](https://hitokoto.cn/)