添加若干评论区明细 表情包明细 等等

This commit is contained in:
SocialSisterYi
2020-06-21 13:16:31 +08:00
parent 70e2afd3ed
commit e0d5830da7
12 changed files with 7175 additions and 126 deletions

38
other/time_stamp.md Normal file
View File

@@ -0,0 +1,38 @@
# 获取当前时间戳
> http://api.bilibili.com/x/report/click/now
*方式GET*
**json回复**
根对象:
| 字段 | 类型 | 内容 | 备注 |
| ------- | ---- | -------- | ------------ |
| code | num | 返回值 | 0成功 |
| message | str | 错误信息 | 默认为0 |
| ttl | num | 1 | 作用尚不明确 |
| data | obj | 信息本体 | |
`data`对象:
| 字段 | 类型 | 内容 | 备注 |
| ---- | ---- | ------------ | ---- |
| now | num | 当前的时间戳 | |
**示例:**
http://api.bilibili.com/x/report/click/now
```json
{
"code": 0,
"message": "0",
"ttl": 1,
"data": {
"now": 1592666471
}
}
```