-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathm.json
53 lines (53 loc) · 1.1 KB
/
m.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
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "自定义源",
"type": 3,
"searchable": 1,
"quickSearch": 0,
"filterable": 0,
"ext": {
"ua": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.3"
},
"class": [
{
"type_id": "1",
"type_name": "电影"
},
{
"type_id": "2",
"type_name": "电视剧"
}
],
"filter": {},
"homeContent": {
"url": "https://api.example.com/home",
"method": "GET"
},
"categoryContent": {
"url": "https://api.example.com/category?type={type_id}&pg={pg}",
"method": "GET",
"header": {
"User-Agent": "{ua}"
}
},
"detailContent": {
"url": "https://api.example.com/detail?vod_id={vod_id}",
"method": "GET",
"header": {
"User-Agent": "{ua}"
}
},
"searchContent": {
"url": "https://api.example.com/search?query={wd}",
"method": "GET",
"header": {
"User-Agent": "{ua}"
}
},
"playContent": {
"url": "https://api.example.com/play?vod_id={vod_id}",
"method": "GET",
"header": {
"User-Agent": "{ua}"
}
}
}