-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpost_cli_resp.schema.json
More file actions
96 lines (96 loc) · 2.83 KB
/
Copy pathpost_cli_resp.schema.json
File metadata and controls
96 lines (96 loc) · 2.83 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
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"title": "抖音博主作品获取 - API出参",
"description": "抖音实时获取博主作品, API出参Schema详解",
"properties": {
"aweme_id": {
"type": "string",
"description": "抖音视频ID"
},
"desc": {
"type": "string",
"description": "抖音视频描述"
},
"caption": {
"type": "string",
"description": "抖音视频描述"
},
"create_time": {
"type": "number",
"description": "抖音视频创建时间戳"
},
"music_title": {
"type": "string",
"description": "抖音视频音乐标题"
},
"music_author": {
"type": "string",
"description": "抖音视频音乐作者"
},
"music_duration": {
"type": "number",
"description": "抖音视频音乐时长"
},
"music_play_url": {
"type": "string",
"description": "抖音视频音乐播放URL"
},
"video_url": {
"type": "array",
"description": "视频播放地址、视频下载地址",
"items": {
"type": "string",
"description": "视频播放地址、视频下载地址"
}
},
"video_cover": {
"type": "string",
"description": "抖音视频封面URL"
},
"video_duration": {
"type": "number",
"description": "抖音视频时长"
},
"recommend_count": {
"type": "number",
"description": "交互界面未显示字段"
},
"comment_count": {
"type": "number",
"description": "抖音视频评论数"
},
"digg_count": {
"type": "number",
"description": "抖音视频点赞数"
},
"share_count": {
"type": "number",
"description": "抖音视频分享数"
},
"collect_count": {
"type": "number",
"description": "抖音视频收藏数"
},
"tags": {
"type": "array",
"description": "抖音视频标签",
"items": {
"type": "string",
"description": "抖音视频标签"
}
},
"suggest_words": {
"type": "array",
"description": "抖音小蓝词",
"items": {
"type": "string",
"description": "抖音小蓝词, 评论框顶端显示的建议词"
}
},
"share_url": {
"type": "string",
"description": "抖音视频分享URL"
}
}
}