-
Notifications
You must be signed in to change notification settings - Fork 3.6k
Expand file tree
/
Copy pathconfig.example.json
More file actions
29 lines (29 loc) · 1.01 KB
/
config.example.json
File metadata and controls
29 lines (29 loc) · 1.01 KB
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
{
"cache_time": 7200,
"api_site": {
"example_source": {
"api": "https://your-video-api.com/api.php/provide/vod",
"name": "示例视频源",
"detail": "https://your-video-api.com/api.php/provide/vod/?ac=detail&ids={ids}",
"is_adult": false
},
"another_example": {
"api": "https://another-api.com/api.php/provide/vod",
"name": "另一个示例源",
"detail": "https://another-api.com/api.php/provide/vod/?ac=detail&ids={ids}",
"is_adult": false
},
"adult_example": {
"api": "https://adult-content-api.com/api.php/provide/vod",
"name": "成人内容源示例",
"detail": "https://adult-content-api.com/api.php/provide/vod/?ac=detail&ids={ids}",
"is_adult": true
},
"test_adult_source": {
"api": "https://test-adult-api.com/api.php/provide/vod",
"name": "测试成人源(用于验证过滤)",
"detail": "https://test-adult-api.com/api.php/provide/vod/?ac=detail&ids={ids}",
"is_adult": true
}
}
}