-
Notifications
You must be signed in to change notification settings - Fork 227
/
Copy pathtoview.json
41 lines (41 loc) · 1.2 KB
/
toview.json
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
{
"info": {
"list": {
"url": "https://api.bilibili.com/x/v2/history/toview",
"method": "GET",
"verify": true,
"comment": "获取稍后再看列表"
}
},
"operate": {
"add": {
"url": "https://api.bilibili.com/x/v2/history/toview/add",
"method": "POST",
"verify": true,
"data": {
"aid": "int: aid",
"csrf": "string: bili_jct"
},
"comment": "添加视频至稍后再看列表"
},
"del": {
"url": "https://api.bilibili.com/x/v2/history/toview/del",
"method": "POST",
"verify": true,
"data": {
"aid": "int: aid",
"viewed": "bool: 是否删除已观看的视频"
},
"comment": "删除稍后再看列表中的视频"
},
"clear": {
"url": "https://api.bilibili.com/x/v2/history/toview/clear",
"method": "POST",
"verify": true,
"data": {
"csrf": "string: bili_jct"
},
"comment": "清空稍后再看列表"
}
}
}