-
Notifications
You must be signed in to change notification settings - Fork 76
Bilibili API 视频tag信息
shuangluoxss edited this page Apr 8, 2018
·
3 revisions
https://api.bilibili.com/x/tag/archive/tags?aid={aid}
输入: video_id => 视频的av号
输出: JSON格式如下`
"data": [
{
"tag_id": "tag编号",
"tag_name": "tag名称",
"cover": "tag封面",
"content": "tag描述",
"type": "未知",
"state": "未知",
"ctime": "tag创建时间(unixtime)",
"count": {
"view": 0,
"use": 0,
"atten": 0
},
"is_atten": 0,
"likes": 0,
"hates": 0,
"attribute": 0,
"liked": 0,
"hated": 0
},
...
]