-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fix(video/collection.md): unclosed xml tags * feat(video/report.md): uuid not really random * feat: b23.tv short link * feat: login/moral/exp log * feat: v_voucher * feat: upload video cover & post * feat(creativecenter/upload.md): upload octet-stream * feat(creativecenter/upload.md): update some notes * feat(clientinfo/ip.md): another from live * feat: live web heartbeat * feat: update popular series & precious * fix(creativecenter/upload.md): mistakes in example * feat: merge duplicate fav info * feat(README.md): missing link to webmask * feat(search/hot.md): word_type * feat(login/login_action): recovery old api * feat(video/collection.md): series operation * feat: video season operation * feat: add & mod some links * feat(search/suggest.md): up to date * feat: web home header image * feat(misc/sign/bili_ticket.md): demo for nodejs * feat(creativecenter/upload.md): x-upos-auth validity period * feat: add referer & buvid3 to request header * feat: customer service message heartbeat & upload * feat(customerservice/msg.md): upload code 1200201 * feat(video/report.md): click/web/h5 * feat(video/report.md): view count desc * feat: laser2 * feat: wbi_key in bili_ticket * fix: typo & unclosed XML tags * feat(misc/sign/v_voucher): cookie x-bili-gaia-vtoken * feat(search/hot.md): square * feat(video/status_number.md): fold archive_stat/stat * feat(fav/info.md): resource/infos invalid type 21 * feat: /x/activity/subject/info * feat: lottery * feat(docs/misc/b23.tv): remove some unnecessary fields * feat(creativecenter/upload.md): types/predict * fix(video/collection.md): invalid end tag * feat: app version upgrade * feat(creativecenter/upload.md): tag/recommend #528 * feat(user/status_number.md): navnum * feat: /x/activity/page/list * feat(comment/list.md): desc about pagination_str * feat(comment/list.md): update example * feat(dynamic/all.md): #1082 * fix(comment/list.md): -352 not -412 * feat: #700 * feat(video/video_stream.md): #606 & cv949156 * feat(message/private_msg.md): single_unread freq * feat: getUserWallet * fix: broken form * feat(Layout.vue): copyright to 2024 * feat: /x/topic/pub/rcmd/search * feat: #425 * feat(misc/time_stamp.md): rtc/getTimestamp * fix(misc/time_stamp.md): missing end tag * feat: #745 * feat(dynamic/all.md): update feed/all * feat(danmaku/action.md): #220 * feat(live/info.md): gethistory from cv8186413 * fix(danmaku/action.md): missing end tag
- Loading branch information
Showing
46 changed files
with
18,134 additions
and
7,852 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,91 @@ | ||
# 获取最新 APP 版本 | ||
|
||
## 版本升级 | ||
|
||
> https://app.bilibili.com/x/v2/version/fawkes/upgrade | ||
*请求方式: GET* | ||
|
||
**URL参数:** | ||
|
||
| 参数名 | 类型 | 内容 | 必要性 | 备注 | | ||
| - | - | - | - | - | | ||
| appkey | str | APP 密钥 | 不必要 | | | ||
| build | int | 当前 APP 版本号 | 必要 | 将会影响是否有新版本 | | ||
| mobi_app | str | 目标客户端类型 | 必要 | 如 `android` | | ||
| nt | str | 任意非空串 | 必要 | 默认为 `1` | | ||
| ov | str | 任意非空串 | 必要 | 默认为 `22` | | ||
| platform | str | 设备平台 | 必要 | 任意非空串即可, 如 `android` | | ||
| sn | int | 设备序列号? | 必要 | 任意数字即可, 如 `4462369` | | ||
| vn | str | 当前版本号 | 必要 | 任意非空串即可, 如 `6.13.0` | | ||
|
||
**JSON回复:** | ||
|
||
根对象: | ||
|
||
| 字段 | 类型 | 内容 | 备注 | | ||
| - | - | - | - | | ||
| code | int | 返回值 | 0: 成功<br />-304: 木有改动<br />-400: 请求异常 | | ||
| message | str | 错误信息 | 默认为 `0` | | ||
| ttl | int | 1 | | | ||
| data | obj | 信息本体 | | | ||
|
||
`data` 对象: | ||
|
||
| 字段 | 类型 | 内容 | 备注 | | ||
| - | - | - | - | | ||
| title | str | 标题 | | | ||
| content | str | 内容 | | | ||
| version | str | 最新版本号 | | | ||
| version_code | int | 最新版本号 | build | | ||
| url | str | 下载地址 | | | ||
| size | int | 大小 | 单位字节 | | ||
| md5 | str | MD5 值 | | | ||
| silent | int | 是否静默安装? | | | ||
| upgrade_type | int | 升级类型? | | | ||
| cycle | int | 升级周期? | | | ||
| policy | int | 升级策略? | | | ||
| policy_url | str | 升级策略链接? | | | ||
| ptime | int | 发布时间 | | | ||
|
||
**示例:** | ||
|
||
```curl | ||
curl -G 'https://app.bilibili.com/x/v2/version/fawkes/upgrade' \ | ||
--url-query 'build=1145141' \ | ||
--url-query 'channel=apt' \ | ||
--url-query 'mobi_app=android' \ | ||
--url-query 'nt=awa' \ | ||
--url-query 'ov=qwq' \ | ||
--url-query 'platform=archlinux' \ | ||
--url-query 'sn=919810' \ | ||
--url-query 'vn=!!!' | ||
``` | ||
|
||
<details> | ||
<summary>查看响应示例:</summary> | ||
|
||
```json | ||
{ | ||
"code": 0, | ||
"message": "0", | ||
"ttl": 1, | ||
"data": { | ||
"title": "升级提醒", | ||
"content": "-修复了一些bug,并优化了一些搜索和播放体验~\n-让我们举起双手,把力量借给备考的小伙伴们!", | ||
"version": "7.81.0", | ||
"version_code": 7810200, | ||
"url": "https://dl.hdslb.com/mobile/pack/android/15013586/iBiliPlayer-apinkRelease-7.81.0-b15013586.apk", | ||
"size": 138723520, | ||
"md5": "60f83fb828bc05aefdac67504ba72ea9", | ||
"silent": 0, | ||
"upgrade_type": 1, | ||
"cycle": 4, | ||
"policy": 0, | ||
"policy_url": "", | ||
"ptime": 1717554395 | ||
} | ||
} | ||
``` | ||
|
||
</details> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,93 @@ | ||
# 活动主题信息 | ||
|
||
## 主题信息 | ||
|
||
> https://api.bilibili.com/x/activity/subject/info | ||
*请求方式: GET* | ||
|
||
**URL参数:** | ||
|
||
| 参数名 | 类型 | 内容 | 必要性 | 备注 | | ||
| - | - | - | - | - | - | - | | ||
| sid | num | 活动 id | 必要 | | | ||
| bvid | str | 来源视频 bvid | 非必要 | | | ||
|
||
**JSON回复:** | ||
|
||
根对象: | ||
|
||
| 字段 | 类型 | 内容 | 备注 | | ||
| - | - | - | - | | ||
| code | num | 返回值 | 0: 成功<br />-400: 请求错误 | | ||
| message | str | 错误信息 | 默认为 0 | | ||
| ttl | num | 1 | | | ||
| data | obj | 数据本体 | | | ||
|
||
`data` 对象: | ||
|
||
| 字段 | 类型 | 内容 | 备注 | | ||
| - | - | - | - | | ||
| id | num | 活动 id | | | ||
| oid | num | 0 | | | ||
| type | num | 13 | | | ||
| state | num | 1 | | | ||
| stime | num | 开始时间 | UNIX 秒级时间戳 | | ||
| etime | num | 结束时间 | UNIX 秒级时间戳 | | ||
| ctime | num | 创建时间 | UNIX 秒级时间戳 | | ||
| mtime | num | 修改时间 | UNIX 秒级时间戳 | | ||
| name | str | 活动名称 | | | ||
| act_url | str | 活动链接 | | | ||
| lstime | num | ? | 作用尚不明确 | | ||
| letime | num | ? | 作用尚不明确 | | ||
| cover | str | 封面图片 | | | ||
| dic | str | 简介 | | | ||
| h5_cover | str | H5 封面 | | | ||
| android_url | str | Android 端活动链接 | | | ||
| ios_url | str | iOS 端活动链接 | | | ||
| child_sids | str | 子活动 id? | | | ||
| calendar | str | 日历? | 空 或 `{}`? | | ||
| lid | num | ? | 仅在传入 bvid 时存在 | | ||
|
||
**示例:** | ||
|
||
```shell | ||
curl -G --url 'https://api.bilibili.com/x/activity/subject/info' \ | ||
--url-query 'sid=4017552' \ | ||
--url-query 'bvid=BV1mKY4e8ELy' | ||
``` | ||
|
||
<details> | ||
<summary>查看响应示例:</summary> | ||
|
||
```json | ||
{ | ||
"code": 0, | ||
"message": "0", | ||
"ttl": 1, | ||
"data": { | ||
"id": 4017552, | ||
"oid": 0, | ||
"type": 13, | ||
"state": 1, | ||
"stime": 1720540800, | ||
"etime": 1728575999, | ||
"ctime": 1720439769, | ||
"mtime": 1720591285, | ||
"name": "科技猎手2024第2季", | ||
"act_url": "https://www.bilibili.com/blackboard/era/kejilieshou2PC.html", | ||
"lstime": 1720540800, | ||
"letime": 1728575999, | ||
"cover": "https://i0.hdslb.com/bfs/activity-plat/static/98bc38873cc71e154019070975cd20a0/fLOEOStVUV.jpg", | ||
"dic": "科技猎手召集中!投稿赢奖金>>", | ||
"h5_cover": "https://i0.hdslb.com/bfs/activity-plat/static/98bc38873cc71e154019070975cd20a0/PTIFsXkV0o.jpg", | ||
"android_url": "https://www.bilibili.com/blackboard/era/kejilieshou2H5.html", | ||
"ios_url": "https://www.bilibili.com/blackboard/era/kejilieshou2H5.html", | ||
"child_sids": "", | ||
"calendar": "", | ||
"lid": 294258214 | ||
} | ||
} | ||
``` | ||
|
||
</details> |
Oops, something went wrong.