diff --git a/03_卡木(木)/木叶_视频内容/B站发布/脚本/bilibili_publish.py b/03_卡木(木)/木叶_视频内容/B站发布/脚本/bilibili_publish.py index b5832642..785cc76f 100644 --- a/03_卡木(木)/木叶_视频内容/B站发布/脚本/bilibili_publish.py +++ b/03_卡木(木)/木叶_视频内容/B站发布/脚本/bilibili_publish.py @@ -313,9 +313,15 @@ async def publish_one(video_path: str, title: str, idx: int = 1, total: int = 1, async def main(): - if not COOKIE_FILE.exists(): - print("[✗] Cookie 不存在,请先运行 bilibili_login.py") + from cookie_manager import check_cookie_valid + + print("=== 账号预检 ===", flush=True) + ok, info = check_cookie_valid("B站") + print(f" B站: {info}", flush=True) + if not ok: + print("[✗] 账号预检不通过,终止发布", flush=True) return 1 + print() videos = sorted(VIDEO_DIR.glob("*.mp4")) if not videos: diff --git a/03_卡木(木)/木叶_视频内容/多平台分发/SKILL.md b/03_卡木(木)/木叶_视频内容/多平台分发/SKILL.md index 97199418..b40bae25 100644 --- a/03_卡木(木)/木叶_视频内容/多平台分发/SKILL.md +++ b/03_卡木(木)/木叶_视频内容/多平台分发/SKILL.md @@ -7,11 +7,11 @@ description: > triggers: 多平台分发、一键分发、全平台发布、批量分发、视频分发 owner: 木叶 group: 木 -version: "3.0" +version: "3.1" updated: "2026-03-10" --- -# 多平台分发 Skill(v3.0) +# 多平台分发 Skill(v3.1) > **核心能力**:一条命令将成片目录下的所有视频同时发布到 5 个主流平台。 > **平台覆盖**:抖音、B站、视频号、小红书、快手。 @@ -24,11 +24,11 @@ updated: "2026-03-10" | 平台 | 实现方式 | 定时发布 | Cookie 有效期 | 119 场实测 | |------|----------|----------|---------------|------------| -| **抖音** | 纯 API(VOD + bd-ticket-guard) | API timing_ts | ~2-4h | Cookie 过期需重新登录 | -| **B站** | bilibili-api-python API 优先 → Playwright 兜底 | API dtime | ~6 个月 | 13/13 成功 | -| **视频号** | Playwright headless 自动化 | UI 定时(降级立即) | ~12 个月 | 13/13 成功 | -| **小红书** | Playwright headless 自动化 | UI 定时(降级立即) | ~12 个月 | 14/14 成功 | -| **快手** | Playwright headless 自动化 | UI 定时成功 | ~21 天 | 12/12 成功(含重试) | +| **抖音** | 纯 API(VOD + bd-ticket-guard) | API timing_ts | ~2-4h | 账号封禁,预检拦截 | +| **B站** | bilibili-api-python API 优先 → Playwright 兜底 | API dtime | ~6 个月 | 15/15 成功 | +| **视频号** | Playwright headless 自动化 | UI 定时(降级立即) | ~24-48h | 15/15 成功 | +| **小红书** | Playwright headless v2 自动化 | UI 定时(降级立即) | ~1-3 天 | 15/15 成功(修复后) | +| **快手** | Playwright headless 自动化 | UI 定时成功 | ~7-30 天 | 15/15 成功(含重试) | --- @@ -199,7 +199,8 @@ info = get_video_info("/path/to/video.mp4") | `脚本/schedule_helper.py` | Playwright 定时发布 UI 交互辅助 | | `脚本/publish_result.py` | 统一 PublishResult + 日志 + 去重 | | `脚本/title_generator.py` | 智能标题(字典优先 → 文件名自动) | -| `脚本/cookie_manager.py` | Cookie 统一管理(有效期检查、防重复) | +| `脚本/cookie_manager.py` | Cookie 统一管理(有效期检查、API 预检 5 平台) | +| `脚本/content_filter.py` | 敏感词/风控词过滤(政治、金融、医疗、平台词,70+ 替换映射) | | `脚本/video_utils.py` | 视频处理(封面提取、元数据) | --- @@ -232,6 +233,44 @@ info = get_video_info("/path/to/video.mp4") - **影响**:视频号/小红书/快手 三路 Playwright 并行,部分上传时间从 2s 涨到 5s - **建议**:服务器部署时限制并发数(如最多 3 个 Playwright 同时) +### 10.6 小红书发布按钮点击不生效(119场) +- **现象**:脚本日志声称 15/15 成功,实际只有 4 条到达平台 +- **根因**:初版 `pub.click(force=True)` 失败率高达 ~70%,且成功判定逻辑过于宽松(默认 status="reviewing") +- **修复**: + 1. JS 精准点击红色发布按钮(用 `getComputedStyle` 筛选 backgroundColor 含 255 的 button) + 2. Playwright `force-click` 兜底 + 3. 处理二次确认弹窗 + 4. 未检测到明确成功信号时,跳转到笔记管理页二次验证 + 5. 连续 3 次失败自动熔断(防封号) +- **成功率**:修复后 10/10(100%) + +### 10.7 小红书假成功日志污染去重(119场) +- **现象**:publish_log.json 记录 15 条 success=True,导致去重跳过,不会重试 +- **根因**:旧版 success 判定将所有未报错的提交都标记为 success +- **修复**: + 1. 清理 publish_log.json 中的虚假记录 + 2. 只有明确的成功信号(页面重置、URL 跳转、"发布成功"文本)才标记 success=True + 3. 不确定时走笔记管理页验证 + +### 10.8 视频号描述写入空白(119场) +- **现象**:所有视频发布后描述为空,视频号使用 Wujie 微前端框架 +- **根因**:`.input-editor` 在 Shadow DOM 内,常规 `.fill()` 无法写入 +- **修复**:clipboard/insertText 方式注入,先 focus → selectAll → insertText + +### 10.9 抖音账号投稿功能封禁 +- **现象**:API 返回 status_code=-20 "视频投稿功能已封禁" +- **影响**:所有视频无法发布到抖音 +- **处理**:预检时明确提示封禁状态,跳过抖音 + +### 10.10 账号预检机制(v3.1 新增) +- **所有平台发布前统一调用 `cookie_manager.check_cookie_valid()`** + - 视频号:POST auth_data API + - B站:GET /x/web-interface/nav + - 快手:GET cp.kuaishou.com/rest/pc/user/myInfo + - 小红书:GET creator.xiaohongshu.com/api/galaxy/user/info + - 抖音:GET /web/api/media/user_info/ +- 预检不通过则终止发布,避免浪费时间上传后才发现 Cookie 过期 + --- ## 十一、万推(Web 版视频分发系统) diff --git a/03_卡木(木)/木叶_视频内容/多平台分发/cookies/B站_cookies.json b/03_卡木(木)/木叶_视频内容/多平台分发/cookies/B站_cookies.json new file mode 100644 index 00000000..1a285d9d --- /dev/null +++ b/03_卡木(木)/木叶_视频内容/多平台分发/cookies/B站_cookies.json @@ -0,0 +1,565 @@ +{ + "cookies": [ + { + "name": "buvid3", + "value": "2E77FCDE-C111-16B8-ECBB-DB7FB1DC594747695infoc", + "domain": ".bilibili.com", + "path": "/", + "expires": 1807677247.720636, + "httpOnly": false, + "secure": false, + "sameSite": "Lax" + }, + { + "name": "b_nut", + "value": "1773117247", + "domain": ".bilibili.com", + "path": "/", + "expires": 1804653247.721108, + "httpOnly": false, + "secure": false, + "sameSite": "Lax" + }, + { + "name": "buvid4", + "value": "97FC1DCB-1CE7-171D-8FC5-6D3938F3316549906-026031012-x7jLLSVo9Owdvpqf4iDOqQ%3D%3D", + "domain": ".bilibili.com", + "path": "/", + "expires": 1807677332.894572, + "httpOnly": false, + "secure": false, + "sameSite": "Lax" + }, + { + "name": "buvid_fp", + "value": "bf75ac3f46efb8f44240931f89ed1082", + "domain": ".bilibili.com", + "path": "/", + "expires": 1804653252, + "httpOnly": false, + "secure": false, + "sameSite": "Lax" + }, + { + "name": "_uuid", + "value": "D16E8992-80F9-D265-5539-0FCE9601158B65699infoc", + "domain": ".bilibili.com", + "path": "/", + "expires": 1804653265, + "httpOnly": false, + "secure": false, + "sameSite": "Lax" + }, + { + "name": "SESSDATA", + "value": "ae7c92a9%2C1788669289%2C35b97%2A31CjAhwy_opBNm8FaphnzJfx-81VCu0LXxZWaUah2-JPLb75Uz1tb8z7vKGjwgwAcT4w0SVnBMX0oxU2pzcE5PMzRYOXh6cmQ5MDVtX21HVnJ5WERxam9GZ21TTXNMeUM0VDFla3lGVzdyd29ObTVTWmloeTQ4aUxnNzVYdXhaZmR2dnNCNFEwYTVRIIEC", + "domain": ".bilibili.com", + "path": "/", + "expires": 1788669289.196352, + "httpOnly": true, + "secure": true, + "sameSite": "None" + }, + { + "name": "bili_jct", + "value": "25969c7d70da5f0e9dd943f026d9efa8", + "domain": ".bilibili.com", + "path": "/", + "expires": 1788669289.196459, + "httpOnly": false, + "secure": true, + "sameSite": "None" + }, + { + "name": "DedeUserID", + "value": "319358290", + "domain": ".bilibili.com", + "path": "/", + "expires": 1788669289.196472, + "httpOnly": false, + "secure": true, + "sameSite": "None" + }, + { + "name": "DedeUserID__ckMd5", + "value": "ba41ca41deee5d92", + "domain": ".bilibili.com", + "path": "/", + "expires": 1788669289.196491, + "httpOnly": false, + "secure": true, + "sameSite": "None" + }, + { + "name": "theme-tip-show", + "value": "SHOWED", + "domain": ".bilibili.com", + "path": "/", + "expires": 1804653292, + "httpOnly": false, + "secure": false, + "sameSite": "Lax" + }, + { + "name": "bili_ticket", + "value": "eyJhbGciOiJIUzI1NiIsImtpZCI6InMwMyIsInR5cCI6IkpXVCJ9.eyJleHAiOjE3NzMzNzY0OTAsImlhdCI6MTc3MzExNzIzMCwicGx0IjotMX0.fIfxieM1sZNGT9hznjOepr70J7fZ-I6RLtG3qV905UY", + "domain": ".bilibili.com", + "path": "/", + "expires": 1773376490, + "httpOnly": false, + "secure": false, + "sameSite": "Lax" + }, + { + "name": "bili_ticket_expires", + "value": "1773376430", + "domain": ".bilibili.com", + "path": "/", + "expires": 1773376490, + "httpOnly": false, + "secure": false, + "sameSite": "Lax" + }, + { + "name": "SESSDATA", + "value": "ae7c92a9%2C1788669289%2C35b97%2A31CjAhwy_opBNm8FaphnzJfx-81VCu0LXxZWaUah2-JPLb75Uz1tb8z7vKGjwgwAcT4w0SVnBMX0oxU2pzcE5PMzRYOXh6cmQ5MDVtX21HVnJ5WERxam9GZ21TTXNMeUM0VDFla3lGVzdyd29ObTVTWmloeTQ4aUxnNzVYdXhaZmR2dnNCNFEwYTVRIIEC", + "domain": ".biligame.com", + "path": "/", + "expires": 1788669289.481855, + "httpOnly": true, + "secure": true, + "sameSite": "None" + }, + { + "name": "bili_jct", + "value": "25969c7d70da5f0e9dd943f026d9efa8", + "domain": ".biligame.com", + "path": "/", + "expires": 1788669289.481897, + "httpOnly": false, + "secure": true, + "sameSite": "None" + }, + { + "name": "DedeUserID", + "value": "319358290", + "domain": ".biligame.com", + "path": "/", + "expires": 1788669289.481913, + "httpOnly": false, + "secure": true, + "sameSite": "None" + }, + { + "name": "DedeUserID__ckMd5", + "value": "ba41ca41deee5d92", + "domain": ".biligame.com", + "path": "/", + "expires": 1788669289.481924, + "httpOnly": false, + "secure": true, + "sameSite": "None" + }, + { + "name": "sid", + "value": "7ovr4pel", + "domain": ".biligame.com", + "path": "/", + "expires": 1788669289.481934, + "httpOnly": false, + "secure": true, + "sameSite": "None" + }, + { + "name": "SESSDATA", + "value": "ae7c92a9%2C1788669289%2C35b97%2A31CjAhwy_opBNm8FaphnzJfx-81VCu0LXxZWaUah2-JPLb75Uz1tb8z7vKGjwgwAcT4w0SVnBMX0oxU2pzcE5PMzRYOXh6cmQ5MDVtX21HVnJ5WERxam9GZ21TTXNMeUM0VDFla3lGVzdyd29ObTVTWmloeTQ4aUxnNzVYdXhaZmR2dnNCNFEwYTVRIIEC", + "domain": ".bilibili.cn", + "path": "/", + "expires": 1788669289.821903, + "httpOnly": true, + "secure": true, + "sameSite": "None" + }, + { + "name": "bili_jct", + "value": "25969c7d70da5f0e9dd943f026d9efa8", + "domain": ".bilibili.cn", + "path": "/", + "expires": 1788669289.821969, + "httpOnly": false, + "secure": true, + "sameSite": "None" + }, + { + "name": "DedeUserID", + "value": "319358290", + "domain": ".bilibili.cn", + "path": "/", + "expires": 1788669289.822001, + "httpOnly": false, + "secure": true, + "sameSite": "None" + }, + { + "name": "DedeUserID__ckMd5", + "value": "ba41ca41deee5d92", + "domain": ".bilibili.cn", + "path": "/", + "expires": 1788669289.822013, + "httpOnly": false, + "secure": true, + "sameSite": "None" + }, + { + "name": "sid", + "value": "hiubjcod", + "domain": ".bilibili.cn", + "path": "/", + "expires": 1788669289.822023, + "httpOnly": false, + "secure": true, + "sameSite": "None" + }, + { + "name": "SESSDATA", + "value": "ae7c92a9%2C1788669289%2C35b97%2A31CjAhwy_opBNm8FaphnzJfx-81VCu0LXxZWaUah2-JPLb75Uz1tb8z7vKGjwgwAcT4w0SVnBMX0oxU2pzcE5PMzRYOXh6cmQ5MDVtX21HVnJ5WERxam9GZ21TTXNMeUM0VDFla3lGVzdyd29ObTVTWmloeTQ4aUxnNzVYdXhaZmR2dnNCNFEwYTVRIIEC", + "domain": ".huasheng.cn", + "path": "/", + "expires": 1788669289.001036, + "httpOnly": true, + "secure": true, + "sameSite": "None" + }, + { + "name": "bili_jct", + "value": "25969c7d70da5f0e9dd943f026d9efa8", + "domain": ".huasheng.cn", + "path": "/", + "expires": 1788669289.001077, + "httpOnly": false, + "secure": true, + "sameSite": "None" + }, + { + "name": "DedeUserID", + "value": "319358290", + "domain": ".huasheng.cn", + "path": "/", + "expires": 1788669289.00109, + "httpOnly": false, + "secure": true, + "sameSite": "None" + }, + { + "name": "DedeUserID__ckMd5", + "value": "ba41ca41deee5d92", + "domain": ".huasheng.cn", + "path": "/", + "expires": 1788669289.001101, + "httpOnly": false, + "secure": true, + "sameSite": "None" + }, + { + "name": "sid", + "value": "g2182h17", + "domain": ".huasheng.cn", + "path": "/", + "expires": 1788669289.00111, + "httpOnly": false, + "secure": true, + "sameSite": "None" + }, + { + "name": "bmg_af_switch", + "value": "1", + "domain": "www.bilibili.com", + "path": "/", + "expires": -1, + "httpOnly": false, + "secure": false, + "sameSite": "Lax" + }, + { + "name": "bmg_src_def_domain", + "value": "i0.hdslb.com", + "domain": "www.bilibili.com", + "path": "/", + "expires": -1, + "httpOnly": false, + "secure": false, + "sameSite": "Lax" + }, + { + "name": "home_feed_column", + "value": "4", + "domain": ".bilibili.com", + "path": "/", + "expires": 1804653292, + "httpOnly": false, + "secure": false, + "sameSite": "Lax" + }, + { + "name": "browser_resolution", + "value": "1280-720", + "domain": ".bilibili.com", + "path": "/", + "expires": 1804653292, + "httpOnly": false, + "secure": false, + "sameSite": "Lax" + }, + { + "name": "CURRENT_FNVAL", + "value": "2000", + "domain": ".bilibili.com", + "path": "/", + "expires": 1804653294, + "httpOnly": false, + "secure": false, + "sameSite": "Lax" + }, + { + "name": "sid", + "value": "8ert6to3", + "domain": ".bilibili.com", + "path": "/", + "expires": -1, + "httpOnly": false, + "secure": false, + "sameSite": "Lax" + }, + { + "name": "captcha_v4_user", + "value": "8127f0df169e4313b5bca385fc1a73b7", + "domain": "gcaptcha4.geetest.com", + "path": "/", + "expires": 1804657458.998138, + "httpOnly": false, + "secure": true, + "sameSite": "None" + }, + { + "name": "b_lsid", + "value": "782DEC0A_19CD69D0510", + "domain": ".bilibili.com", + "path": "/", + "expires": -1, + "httpOnly": false, + "secure": false, + "sameSite": "Lax" + } + ], + "origins": [ + { + "origin": "https://member.bilibili.com", + "localStorage": [ + { + "name": "BILI_MIRROR_REPORT_POOL", + "value": "{}" + }, + { + "name": "KV_CONFIG_SDK", + "value": "{\"333.1374_0\":{\"timestamp\":1773121454629,\"lastUsed\":1773126959537,\"value\":{\"member_entry.grey\":\"100\",\"member_entry.whitelist\":\"[\\\"18089045\\\",\\\"298768693\\\",\\\"395919056\\\",\\\"24077598\\\",\\\"20304067\\\",\\\"1467356099\\\",\\\"546449\\\",\\\"57851628\\\",\\\"4060255\\\",\\\"50505437\\\",\\\"252665131\\\",\\\"67297352\\\",\\\"390125952\\\",\\\"397156889\\\",\\\"324187912\\\",\\\"34876741\\\",\\\"7980322\\\",\\\"31883108\\\",\\\"11286653\\\",\\\"7281407\\\",\\\"5904415\\\",\\\"16172174\\\",\\\"33138569\\\",\\\"13858812\\\",\\\"33889754\\\",\\\"503549473\\\",\\\"95952357\\\",\\\"100000000000000\\\",\\\"27265812\\\",\\\"66553325\\\",\\\"89638142\\\",\\\"382104462\\\",\\\"14139334\\\",\\\"413413328\\\",\\\"619787531\\\",\\\"5106293\\\",\\\"317803764\\\",\\\"2135653644\\\",\\\"319530015\\\",\\\"30702379\\\",\\\"11877118\\\",\\\"1119093829\\\",\\\"30898335\\\",\\\"457406570\\\",\\\"25619947\\\",\\\"523583563\\\",\\\"76496837\\\",\\\"434640590\\\",\\\"19321730\\\",\\\"497593056\\\",\\\"1885948433\\\",\\\"12050465\\\",\\\"1703488\\\",\\\"18503799\\\",\\\"24964427\\\",\\\"48264\\\",\\\"414904826\\\",\\\"364475176\\\",\\\"526219402\\\",\\\"284226\\\",\\\"5617152\\\",\\\"11967160\\\",\\\"14696534\\\",\\\"16247093\\\",\\\"7013414\\\",\\\"50763\\\",\\\"274387387\\\",\\\"3109488\\\",\\\"13115065\\\",\\\"253657\\\",\\\"1354536\\\",\\\"7113876\\\",\\\"5010534\\\",\\\"231930230\\\",\\\"1848610\\\",\\\"7307579\\\",\\\"6424021\\\",\\\"104394962\\\",\\\"397305048\\\",\\\"24689993\\\",\\\"3001670\\\",\\\"13583030\\\",\\\"15996107\\\",\\\"75062721\\\",\\\"49079392\\\",\\\"22725450\\\",\\\"11036038\\\",\\\"919468\\\",\\\"410515103\\\",\\\"2179639\\\",\\\"52428901\\\",\\\"252665131\\\",\\\"397156889\\\",\\\"448562748\\\",\\\"5904415\\\",\\\"66553325\\\",\\\"89638142\\\",\\\"413413328\\\",\\\"11286653\\\",\\\"7281407\\\",\\\"14135892\\\",\\\"26087756\\\"]\"},\"versionId\":\"1720670144754\",\"appVersionId\":\"30275\",\"nscode\":0,\"appKey\":\"333.1374\",\"expires\":2592000000},\"333.1333_0\":{\"timestamp\":1773121454755,\"lastUsed\":1773126960601,\"value\":{\"bilimirror.minilogin\":\"{\\\"buvid\\\":[\\\"B6771AA6-7CCD-4EF2-BA5B-1FDE9A25F49A49120infoc\\\",\\\"D025573B-8686-0D9D-48DB-0C84BBB5544A45226infoc\\\",\\\"9BD89CEC-4C19-E243-63B3-9A69417B70A458220infoc\\\",\\\"4AD0D8C7-D936-FB67-4C33-7A13C004E84478537infoc\\\",\\\"84AF2B23-9DC9-0717-A474-BCB7A866198994970infoc\\\",\\\"F4373CB5-E491-2C2A-0541-2FFFC3DF2FCC71448infoc\\\"],\\\"rate\\\":0}\",\"bilimirror.toplist\":\"{\\\"playLogUmd\\\":\\\"https://s1.hdslb.com/bfs/static/log-manipulator@0.2.1/index.js\\\",\\\"trackGray\\\":0,\\\"trackGrayV2\\\":1,\\\"resourceStats\\\":{\\\"enabled\\\":true,\\\"sampleRate\\\":0,\\\"rules\\\":[{\\\"key\\\":\\\"333.1007.main.home-page\\\",\\\"sampleRate\\\":5}]}}\",\"bilimirror.whitelist\":\"{\\\"white\\\":{\\\"rejection\\\":[\\\"extension\\\",\\\"maximum\\\",\\\"SVGIconNext\\\"],\\\"error\\\":[\\\"extension\\\",\\\"SVGIconNext\\\"],\\\"resource\\\":[\\\"extension\\\",\\\"localhost\\\"]},\\\"retry\\\":[],\\\"performance\\\":1,\\\"techpv\\\":5,\\\"poll\\\":5,\\\"userLog\\\":[],\\\"track\\\":{\\\"mid\\\":[],\\\"buvid\\\":[]},\\\"trackGrayV2\\\":1}\"},\"versionId\":\"1772162031366\",\"appVersionId\":\"37253\",\"nscode\":0,\"appKey\":\"333.1333\",\"expires\":2592000000},\"333.885_0\":{\"timestamp\":1773121454817,\"lastUsed\":1773126960671,\"value\":{\"bilimirror.whitelist\":\"{\\\"errorLevels\\\":{\\\"jsError\\\":[{\\\"conditions\\\":[{\\\"field\\\":\\\"href\\\",\\\"operator\\\":\\\"contains\\\",\\\"value\\\":\\\"http\\\"}],\\\"level\\\":\\\"record\\\"}],\\\"resourceError\\\":[{\\\"conditions\\\":[{\\\"field\\\":\\\"message\\\",\\\"operator\\\":\\\"contains\\\",\\\"value\\\":\\\"bfs\\\"}],\\\"level\\\":\\\"record\\\"}],\\\"rejectionError\\\":[{\\\"conditions\\\":[{\\\"field\\\":\\\"href\\\",\\\"operator\\\":\\\"contains\\\",\\\"value\\\":\\\"http\\\"}],\\\"level\\\":\\\"record\\\"}],\\\"apiError\\\":[{\\\"conditions\\\":[{\\\"field\\\":\\\"href\\\",\\\"operator\\\":\\\"contains\\\",\\\"value\\\":\\\"http\\\"}],\\\"level\\\":\\\"record\\\"},{\\\"conditions\\\":[{\\\"field\\\":\\\"api\\\",\\\"operator\\\":\\\"=\\\",\\\"value\\\":\\\"\\\"}],\\\"level\\\":\\\"record\\\"}]},\\\"microAppError\\\":{\\\"jsError\\\":[{\\\"condition\\\":[{\\\"field\\\":\\\"href\\\",\\\"operator\\\":\\\"contains\\\",\\\"value\\\":\\\"/platform/upload/video/frame\\\"}],\\\"origin\\\":\\\"member\\\",\\\"module\\\":\\\"videoup\\\"},{\\\"condition\\\":[{\\\"field\\\":\\\"href\\\",\\\"operator\\\":\\\"contains\\\",\\\"value\\\":\\\"/platform/upload/video/interactive\\\"}],\\\"origin\\\":\\\"member\\\",\\\"module\\\":\\\"videoup-interactive\\\"},{\\\"condition\\\":[{\\\"field\\\":\\\"href\\\",\\\"operator\\\":\\\"contains\\\",\\\"value\\\":\\\"/platform/upload-manager/mooc-creator\\\"}],\\\"origin\\\":\\\"member\\\",\\\"module\\\":\\\"mooc-creator\\\"},{\\\"condition\\\":[{\\\"field\\\":\\\"href\\\",\\\"operator\\\":\\\"contains\\\",\\\"value\\\":\\\"/platform/upload/playlet\\\"}],\\\"origin\\\":\\\"member\\\",\\\"module\\\":\\\"videoup-playlet\\\"},{\\\"condition\\\":[{\\\"field\\\":\\\"href\\\",\\\"operator\\\":\\\"contains\\\",\\\"value\\\":\\\"/platform/upload-manager/archive-process\\\"}],\\\"origin\\\":\\\"member\\\",\\\"module\\\":\\\"archive-process\\\"},{\\\"condition\\\":[{\\\"field\\\":\\\"href\\\",\\\"operator\\\":\\\"contains\\\",\\\"value\\\":\\\"/platform/data\\\"}],\\\"origin\\\":\\\"member\\\",\\\"module\\\":\\\"data-center-web\\\"},{\\\"condition\\\":[{\\\"field\\\":\\\"href\\\",\\\"operator\\\":\\\"contains\\\",\\\"value\\\":\\\"/platform/my-rights/create-protect\\\"}],\\\"origin\\\":\\\"member\\\",\\\"module\\\":\\\"copyright-protect\\\"},{\\\"condition\\\":[{\\\"field\\\":\\\"href\\\",\\\"operator\\\":\\\"contains\\\",\\\"value\\\":\\\"/platform/convention\\\"}],\\\"origin\\\":\\\"member\\\",\\\"module\\\":\\\"convention\\\"},{\\\"condition\\\":[{\\\"field\\\":\\\"href\\\",\\\"operator\\\":\\\"contains\\\",\\\"value\\\":\\\"/platform/allowance/template-incentive\\\"}],\\\"origin\\\":\\\"member\\\",\\\"module\\\":\\\"template-incentive\\\"},{\\\"condition\\\":[{\\\"field\\\":\\\"href\\\",\\\"operator\\\":\\\"contains\\\",\\\"value\\\":\\\"/platform/allowance/clue-up\\\"}],\\\"origin\\\":\\\"member\\\",\\\"module\\\":\\\"clue-up\\\"},{\\\"condition\\\":[{\\\"field\\\":\\\"href\\\",\\\"operator\\\":\\\"contains\\\",\\\"value\\\":\\\"/platform/allowance/excitation\\\"}],\\\"origin\\\":\\\"member\\\",\\\"module\\\":\\\"allowance-excitation\\\"},{\\\"condition\\\":[{\\\"field\\\":\\\"href\\\",\\\"operator\\\":\\\"contains\\\",\\\"value\\\":\\\"/platform/allowance/incomeCenter\\\"}],\\\"origin\\\":\\\"member\\\",\\\"module\\\":\\\"allowance-incomeCenter\\\"},{\\\"condition\\\":[{\\\"field\\\":\\\"href\\\",\\\"operator\\\":\\\"contains\\\",\\\"value\\\":\\\"/platform/allowance/allRound\\\"}],\\\"origin\\\":\\\"member\\\",\\\"module\\\":\\\"allowance-allRound\\\"},{\\\"condition\\\":[{\\\"field\\\":\\\"href\\\",\\\"operator\\\":\\\"contains\\\",\\\"value\\\":\\\"/platform/allowance/adSettings\\\"}],\\\"origin\\\":\\\"member\\\",\\\"module\\\":\\\"allowance-adSettings\\\"},{\\\"condition\\\":[{\\\"field\\\":\\\"href\\\",\\\"operator\\\":\\\"contains\\\",\\\"value\\\":\\\"/platform/allowance/up-missions\\\"}],\\\"origin\\\":\\\"member\\\",\\\"module\\\":\\\"allowance-up-missions\\\"},{\\\"condition\\\":[{\\\"field\\\":\\\"href\\\",\\\"operator\\\":\\\"contains\\\",\\\"value\\\":\\\"/platform/allowance/upMissionPc\\\"}],\\\"origin\\\":\\\"member\\\",\\\"module\\\":\\\"allowance-upMissionPc\\\"},{\\\"condition\\\":[{\\\"field\\\":\\\"href\\\",\\\"operator\\\":\\\"contains\\\",\\\"value\\\":\\\"/platform/allowance/up-mission\\\"}],\\\"origin\\\":\\\"member\\\",\\\"module\\\":\\\"allowance-up-mission\\\"},{\\\"condition\\\":[{\\\"field\\\":\\\"href\\\",\\\"operator\\\":\\\"contains\\\",\\\"value\\\":\\\"/platform/allowance/upower-manage\\\"}],\\\"origin\\\":\\\"member\\\",\\\"module\\\":\\\"upower-manage\\\"}],\\\"rejectionError\\\":[{\\\"condition\\\":[{\\\"field\\\":\\\"href\\\",\\\"operator\\\":\\\"contains\\\",\\\"value\\\":\\\"/platform/upload/video/frame\\\"}],\\\"origin\\\":\\\"member\\\",\\\"module\\\":\\\"videoup\\\"},{\\\"condition\\\":[{\\\"field\\\":\\\"href\\\",\\\"operator\\\":\\\"contains\\\",\\\"value\\\":\\\"/platform/upload/video/interactive\\\"}],\\\"origin\\\":\\\"member\\\",\\\"module\\\":\\\"videoup-interactive\\\"},{\\\"condition\\\":[{\\\"field\\\":\\\"href\\\",\\\"operator\\\":\\\"contains\\\",\\\"value\\\":\\\"/platform/upload-manager/mooc-creator\\\"}],\\\"origin\\\":\\\"member\\\",\\\"module\\\":\\\"mooc-creator\\\"},{\\\"condition\\\":[{\\\"field\\\":\\\"href\\\",\\\"operator\\\":\\\"contains\\\",\\\"value\\\":\\\"/platform/upload/playlet\\\"}],\\\"origin\\\":\\\"member\\\",\\\"module\\\":\\\"videoup-playlet\\\"},{\\\"condition\\\":[{\\\"field\\\":\\\"href\\\",\\\"operator\\\":\\\"contains\\\",\\\"value\\\":\\\"/platform/upload-manager/archive-process\\\"}],\\\"origin\\\":\\\"member\\\",\\\"module\\\":\\\"archive-process\\\"},{\\\"condition\\\":[{\\\"field\\\":\\\"href\\\",\\\"operator\\\":\\\"contains\\\",\\\"value\\\":\\\"/platform/data\\\"}],\\\"origin\\\":\\\"member\\\",\\\"module\\\":\\\"data-center-web\\\"},{\\\"condition\\\":[{\\\"field\\\":\\\"href\\\",\\\"operator\\\":\\\"contains\\\",\\\"value\\\":\\\"/platform/my-rights/create-protect\\\"}],\\\"origin\\\":\\\"member\\\",\\\"module\\\":\\\"copyright-protect\\\"},{\\\"condition\\\":[{\\\"field\\\":\\\"href\\\",\\\"operator\\\":\\\"contains\\\",\\\"value\\\":\\\"/platform/convention\\\"}],\\\"origin\\\":\\\"member\\\",\\\"module\\\":\\\"convention\\\"},{\\\"condition\\\":[{\\\"field\\\":\\\"href\\\",\\\"operator\\\":\\\"contains\\\",\\\"value\\\":\\\"/platform/allowance/template-incentive\\\"}],\\\"origin\\\":\\\"member\\\",\\\"module\\\":\\\"template-incentive\\\"},{\\\"condition\\\":[{\\\"field\\\":\\\"href\\\",\\\"operator\\\":\\\"contains\\\",\\\"value\\\":\\\"/platform/allowance/clue-up\\\"}],\\\"origin\\\":\\\"member\\\",\\\"module\\\":\\\"clue-up\\\"},{\\\"condition\\\":[{\\\"field\\\":\\\"href\\\",\\\"operator\\\":\\\"contains\\\",\\\"value\\\":\\\"/platform/allowance/excitation\\\"}],\\\"origin\\\":\\\"member\\\",\\\"module\\\":\\\"allowance-excitation\\\"},{\\\"condition\\\":[{\\\"field\\\":\\\"href\\\",\\\"operator\\\":\\\"contains\\\",\\\"value\\\":\\\"/platform/allowance/incomeCenter\\\"}],\\\"origin\\\":\\\"member\\\",\\\"module\\\":\\\"allowance-incomeCenter\\\"},{\\\"condition\\\":[{\\\"field\\\":\\\"href\\\",\\\"operator\\\":\\\"contains\\\",\\\"value\\\":\\\"/platform/allowance/allRound\\\"}],\\\"origin\\\":\\\"member\\\",\\\"module\\\":\\\"allowance-allRound\\\"},{\\\"condition\\\":[{\\\"field\\\":\\\"href\\\",\\\"operator\\\":\\\"contains\\\",\\\"value\\\":\\\"/platform/allowance/adSettings\\\"}],\\\"origin\\\":\\\"member\\\",\\\"module\\\":\\\"allowance-adSettings\\\"},{\\\"condition\\\":[{\\\"field\\\":\\\"href\\\",\\\"operator\\\":\\\"contains\\\",\\\"value\\\":\\\"/platform/allowance/up-missions\\\"}],\\\"origin\\\":\\\"member\\\",\\\"module\\\":\\\"allowance-up-missions\\\"},{\\\"condition\\\":[{\\\"field\\\":\\\"href\\\",\\\"operator\\\":\\\"contains\\\",\\\"value\\\":\\\"/platform/allowance/upMissionPc\\\"}],\\\"origin\\\":\\\"member\\\",\\\"module\\\":\\\"allowance-upMissionPc\\\"},{\\\"condition\\\":[{\\\"field\\\":\\\"href\\\",\\\"operator\\\":\\\"contains\\\",\\\"value\\\":\\\"/platform/allowance/up-mission\\\"}],\\\"origin\\\":\\\"member\\\",\\\"module\\\":\\\"allowance-up-mission\\\"},{\\\"condition\\\":[{\\\"field\\\":\\\"href\\\",\\\"operator\\\":\\\"contains\\\",\\\"value\\\":\\\"/platform/allowance/upower-manage\\\"}],\\\"origin\\\":\\\"member\\\",\\\"module\\\":\\\"upower-manage\\\"}],\\\"resourceError\\\":[{\\\"condition\\\":[{\\\"field\\\":\\\"href\\\",\\\"operator\\\":\\\"contains\\\",\\\"value\\\":\\\"/platform/upload/video/frame\\\"}],\\\"origin\\\":\\\"member\\\",\\\"module\\\":\\\"videoup\\\"},{\\\"condition\\\":[{\\\"field\\\":\\\"href\\\",\\\"operator\\\":\\\"contains\\\",\\\"value\\\":\\\"/platform/upload/video/interactive\\\"}],\\\"origin\\\":\\\"member\\\",\\\"module\\\":\\\"videoup-interactive\\\"},{\\\"condition\\\":[{\\\"field\\\":\\\"href\\\",\\\"operator\\\":\\\"contains\\\",\\\"value\\\":\\\"/platform/upload-manager/mooc-creator\\\"}],\\\"origin\\\":\\\"member\\\",\\\"module\\\":\\\"mooc-creator\\\"},{\\\"condition\\\":[{\\\"field\\\":\\\"href\\\",\\\"operator\\\":\\\"contains\\\",\\\"value\\\":\\\"/platform/upload/playlet\\\"}],\\\"origin\\\":\\\"member\\\",\\\"module\\\":\\\"videoup-playlet\\\"},{\\\"condition\\\":[{\\\"field\\\":\\\"href\\\",\\\"operator\\\":\\\"contains\\\",\\\"value\\\":\\\"/platform/upload-manager/archive-process\\\"}],\\\"origin\\\":\\\"member\\\",\\\"module\\\":\\\"archive-process\\\"},{\\\"condition\\\":[{\\\"field\\\":\\\"href\\\",\\\"operator\\\":\\\"contains\\\",\\\"value\\\":\\\"/platform/data\\\"}],\\\"origin\\\":\\\"member\\\",\\\"module\\\":\\\"data-center-web\\\"},{\\\"condition\\\":[{\\\"field\\\":\\\"href\\\",\\\"operator\\\":\\\"contains\\\",\\\"value\\\":\\\"/platform/my-rights/create-protect\\\"}],\\\"origin\\\":\\\"member\\\",\\\"module\\\":\\\"copyright-protect\\\"},{\\\"condition\\\":[{\\\"field\\\":\\\"href\\\",\\\"operator\\\":\\\"contains\\\",\\\"value\\\":\\\"/platform/convention\\\"}],\\\"origin\\\":\\\"member\\\",\\\"module\\\":\\\"convention\\\"},{\\\"condition\\\":[{\\\"field\\\":\\\"href\\\",\\\"operator\\\":\\\"contains\\\",\\\"value\\\":\\\"/platform/allowance/template-incentive\\\"}],\\\"origin\\\":\\\"member\\\",\\\"module\\\":\\\"template-incentive\\\"},{\\\"condition\\\":[{\\\"field\\\":\\\"href\\\",\\\"operator\\\":\\\"contains\\\",\\\"value\\\":\\\"/platform/allowance/clue-up\\\"}],\\\"origin\\\":\\\"member\\\",\\\"module\\\":\\\"clue-up\\\"},{\\\"condition\\\":[{\\\"field\\\":\\\"href\\\",\\\"operator\\\":\\\"contains\\\",\\\"value\\\":\\\"/platform/allowance/excitation\\\"}],\\\"origin\\\":\\\"member\\\",\\\"module\\\":\\\"allowance-excitation\\\"},{\\\"condition\\\":[{\\\"field\\\":\\\"href\\\",\\\"operator\\\":\\\"contains\\\",\\\"value\\\":\\\"/platform/allowance/incomeCenter\\\"}],\\\"origin\\\":\\\"member\\\",\\\"module\\\":\\\"allowance-incomeCenter\\\"},{\\\"condition\\\":[{\\\"field\\\":\\\"href\\\",\\\"operator\\\":\\\"contains\\\",\\\"value\\\":\\\"/platform/allowance/allRound\\\"}],\\\"origin\\\":\\\"member\\\",\\\"module\\\":\\\"allowance-allRound\\\"},{\\\"condition\\\":[{\\\"field\\\":\\\"href\\\",\\\"operator\\\":\\\"contains\\\",\\\"value\\\":\\\"/platform/allowance/adSettings\\\"}],\\\"origin\\\":\\\"member\\\",\\\"module\\\":\\\"allowance-adSettings\\\"},{\\\"condition\\\":[{\\\"field\\\":\\\"href\\\",\\\"operator\\\":\\\"contains\\\",\\\"value\\\":\\\"/platform/allowance/up-missions\\\"}],\\\"origin\\\":\\\"member\\\",\\\"module\\\":\\\"allowance-up-missions\\\"},{\\\"condition\\\":[{\\\"field\\\":\\\"href\\\",\\\"operator\\\":\\\"contains\\\",\\\"value\\\":\\\"/platform/allowance/upMissionPc\\\"}],\\\"origin\\\":\\\"member\\\",\\\"module\\\":\\\"allowance-upMissionPc\\\"},{\\\"condition\\\":[{\\\"field\\\":\\\"href\\\",\\\"operator\\\":\\\"contains\\\",\\\"value\\\":\\\"/platform/allowance/up-mission\\\"}],\\\"origin\\\":\\\"member\\\",\\\"module\\\":\\\"allowance-up-mission\\\"},{\\\"condition\\\":[{\\\"field\\\":\\\"href\\\",\\\"operator\\\":\\\"contains\\\",\\\"value\\\":\\\"/platform/allowance/upower-manage\\\"}],\\\"origin\\\":\\\"member\\\",\\\"module\\\":\\\"upower-manage\\\"}]}}\"},\"versionId\":\"1769567888958\",\"appVersionId\":\"36938\",\"nscode\":0,\"appKey\":\"333.885\",\"expires\":2592000000}}" + }, + { + "name": "bili_videoup_record", + "value": "{\"data\":[{\"id\":\"archive_id_17731214575581\",\"videos\":[{\"filename\":\"n260310s318gzcpp64l8xl2i5mklbgdj\",\"fileTitle\":\"建立信任不是求来的 卖外挂发邮件三个月拿下德国总代\",\"size\":10091673,\"cid\":36593864502,\"is_4k\":false,\"is_8k\":false,\"is_hdr\":false}],\"title\":\"信任不是求来的,发三个月邮件拿下德国总代理 #销售思维 #信任建立\",\"copyright\":1,\"desc\":\"\",\"dynamic\":\"\",\"isOnlySelf\":0}],\"mid\":319358290}" + }, + { + "name": "bili_videoup_submit_auto_tips", + "value": "1" + }, + { + "name": "bili_quick_fill", + "value": "1" + }, + { + "name": "secure_collect_report_interval_2E77FCDE-C111-16B8-ECBB-DB7FB1DC594747695infoc", + "value": "60" + }, + { + "name": "im_floatmsg_319358290", + "value": "{\"res\":{\"msg\":\"请求成功\",\"type\":\"success\",\"code\":0,\"data\":[],\"url\":\"//message.bilibili.com/api/tooltip/query.list.do\",\"payload\":{},\"cost\":1303},\"ts\":1773127261669,\"uid\":\"319358290\"}" + }, + { + "name": "__reporter-pb-sample-config", + "value": "{\"444.8.live-room.chronos.init.before.check\":50,\"333.788.memory.timeline.performance\":50,\"444.8.live-room.uam-player.welcome.failed\":50,\"333.1334.kv-init.error\":1,\"333.1334.kv-init.pv\":1,\"333.40181.secureCollect.collectDeviceInfo\":1,\"333.40181.secureCollect.successReport\":1,\"333.40181.secureCollect.wasmProcessTime\":1,\"444.8.live-room.room-page.live-web-danmaku-tech-report\":20}" + }, + { + "name": "bili_videoup_notification_authority", + "value": "default" + }, + { + "name": "secure_collect_last_report_time_2E77FCDE-C111-16B8-ECBB-DB7FB1DC594747695infoc", + "value": "1773126969128" + }, + { + "name": "bili_videoup_notification_showed", + "value": "1" + } + ] + }, + { + "origin": "https://www.bilibili.com", + "localStorage": [ + { + "name": "wbi_sub_url", + "value": "https://i0.hdslb.com/bfs/wbi/4932caff0ff746eab6f01bf08b70ac45.png" + }, + { + "name": "bpx_player_profile", + "value": "{\"lastUnlogintrialView\":0,\"lastUid\":0,\"aiAnimationInfo\":\"[]\",\"aiPromptToastInfo\":\"[]\",\"media\":{\"quality\":0,\"volume\":1,\"nonzeroVol\":1,\"hideBlackGap\":true,\"dolbyAudio\":false,\"audioQuality\":null,\"autoplay\":true,\"handoff\":0,\"seniorTip\":true,\"opEd\":true,\"loudnessSwitch\":0,\"listLoop\":false,\"loop\":false},\"dmSend\":{\"upDm\":false,\"dmChecked\":true},\"blockList\":[],\"dmSetting\":{\"status\":true,\"dmSwitch\":true,\"aiSwitch\":true,\"aiLevel\":3,\"preventshade\":false,\"dmask\":true,\"typeScroll\":true,\"typeTopBottom\":true,\"typeColor\":true,\"typeSpecial\":true,\"opacity\":0.8,\"dmarea\":50,\"speedplus\":1,\"fontsize\":1,\"fullscreensync\":true,\"speedsync\":false,\"fontfamily\":\"SimHei, 'Microsoft JhengHei'\",\"bold\":false,\"fontborder\":0,\"seniorModeSwitch\":0,\"dmdensity\":1},\"basEditorData\":{},\"audioEffect\":null,\"boceTimes\":[],\"interaction\":{\"rookieGuide\":null,\"showedDialog\":false},\"iswide\":null,\"widesave\":null,\"subtitle\":{\"fade\":false,\"scale\":true,\"fontsize\":1,\"opacity\":0.4,\"bilingual\":false,\"color\":\"16777215\",\"shadow\":\"0\",\"position\":\"bottom-center\"},\"progress\":{\"precisionGuide\":null,\"pbpstate\":true,\"pinstate\":false},\"panorama\":true,\"ksInfo\":{\"ts\":0,\"kss\":null}}" + }, + { + "name": "BILI_MIRROR_REPORT_POOL", + "value": "{\"333.1007.main.bili-header.DATA.successReport\":{\"type\":\"custom\",\"mirrorVersion\":\"2.0.18\",\"_BiliGreyResult_method\":\"gray\",\"_BiliGreyResult_versionId\":\"201397\",\"mirrorPolymer\":3,\"/x/vip/ads/materials\":1,\"/x/web-show/wbi/res/locs\":1,\"/x/web-interface/wbi/search/default\":1,\"//passport.bilibili.com/x/passport-login/web/cookie/info\":1,\"/x/web-interface/history/continuation\":1,\"/x/web-interface/dynamic/entrance\":1,\"//api.vc.bilibili.com/link_setting/v1/link_setting/get\":1,\"//api.vc.bilibili.com/x/im/web/msgfeed/unread\":1},\"333.1007.main.home-page.DATA.successReport\":{\"type\":\"custom\",\"mirrorVersion\":\"2.0.18\",\"_BiliGreyResult_method\":\"gray\",\"_BiliGreyResult_versionId\":\"201397\",\"mirrorPolymer\":3,\"/x/web-show/res/locs\":2,\"//api.live.bilibili.com/xlive/web-interface/v1/webMain/getMoreRecList\":1}}" + }, + { + "name": "wbi_img_url", + "value": "https://i0.hdslb.com/bfs/wbi/7cd084941338484aae1ad9425b84077c.png" + }, + { + "name": "KV_CONFIG_SDK", + "value": "{\"333.1339_2\":{\"timestamp\":1773117290967,\"lastUsed\":1773117292957,\"value\":{\"channel_list.all\":\"{ \\\"tid\\\": 0, \\\"name\\\": \\\"全部分区\\\", \\\"sub\\\": []}\",\"channel_list.animal\":\"{\\\"name\\\":\\\"动物圈\\\",\\\"channelId\\\":18,\\\"tid\\\":217,\\\"url\\\":\\\"//www.bilibili.com/v/animal\\\",\\\"icon\\\":\\\"ChannelAnimal\\\",\\\"route\\\":\\\"animal\\\",\\\"sub\\\":[{\\\"subChannelId\\\":180001,\\\"name\\\":\\\"喵星人\\\",\\\"route\\\":\\\"cat\\\",\\\"tid\\\":218,\\\"desc\\\":\\\"喵喵喵喵喵\\\",\\\"url\\\":\\\"//www.bilibili.com/v/animal/cat\\\"},{\\\"subChannelId\\\":180002,\\\"name\\\":\\\"汪星人\\\",\\\"route\\\":\\\"dog\\\",\\\"tid\\\":219,\\\"desc\\\":\\\"汪汪汪汪汪\\\",\\\"url\\\":\\\"//www.bilibili.com/v/animal/dog\\\"},{\\\"subChannelId\\\":180007,\\\"name\\\":\\\"小宠异宠\\\",\\\"route\\\":\\\"reptiles\\\",\\\"tid\\\":222,\\\"desc\\\":\\\"奇妙宠物大赏\\\",\\\"url\\\":\\\"//www.bilibili.com/v/animal/reptiles\\\"},{\\\"subChannelId\\\":180004,\\\"name\\\":\\\"野生动物\\\",\\\"route\\\":\\\"wild_animal\\\",\\\"tid\\\":221,\\\"desc\\\":\\\"内有“猛兽”出没\\\",\\\"url\\\":\\\"//www.bilibili.com/v/animal/wild_animal\\\"},{\\\"subChannelId\\\":180008,\\\"name\\\":\\\"动物二创\\\",\\\"route\\\":\\\"second_edition\\\",\\\"tid\\\":220,\\\"desc\\\":\\\"解说、配音、剪辑、混剪\\\",\\\"url\\\":\\\"//www.bilibili.com/v/animal/second_edition\\\"},{\\\"subChannelId\\\":180006,\\\"name\\\":\\\"动物综合\\\",\\\"route\\\":\\\"animal_composite\\\",\\\"tid\\\":75,\\\"desc\\\":\\\"收录除上述子分区外,其余动物相关视频以及非动物主体或多个动物主体的动物相关延伸内容\\\",\\\"url\\\":\\\"//www.bilibili.com/v/animal/animal_composite\\\"}]}\",\"channel_list.anime\":\"{\\\"channelId\\\":2,\\\"name\\\":\\\"番剧\\\",\\\"tid\\\":13,\\\"url\\\":\\\"//www.bilibili.com/anime/\\\",\\\"icon\\\":\\\"ChannelAnime\\\",\\\"sub\\\":[{\\\"subChannelId\\\":20001,\\\"name\\\":\\\"连载动画\\\",\\\"tid\\\":33,\\\"route\\\":\\\"serial\\\",\\\"url\\\":\\\"//www.bilibili.com/v/anime/serial/\\\"},{\\\"subChannelId\\\":20002,\\\"name\\\":\\\"完结动画\\\",\\\"tid\\\":32,\\\"route\\\":\\\"finish\\\",\\\"url\\\":\\\"//www.bilibili.com/v/anime/finish\\\"},{\\\"subChannelId\\\":20003,\\\"name\\\":\\\"资讯\\\",\\\"tid\\\":51,\\\"route\\\":\\\"information\\\",\\\"url\\\":\\\"//www.bilibili.com/v/anime/information/\\\"},{\\\"subChannelId\\\":20004,\\\"name\\\":\\\"官方延伸\\\",\\\"tid\\\":152,\\\"route\\\":\\\"offical\\\",\\\"url\\\":\\\"//www.bilibili.com/v/anime/offical/\\\"},{\\\"subChannelId\\\":20005,\\\"name\\\":\\\"新番时间表\\\",\\\"url\\\":\\\"//www.bilibili.com/anime/timeline/\\\"},{\\\"subChannelId\\\":20006,\\\"name\\\":\\\"番剧索引\\\",\\\"url\\\":\\\"//www.bilibili.com/anime/index/\\\"}]}\",\"channel_list.car\":\"{\\\"name\\\":\\\"汽车\\\",\\\"channelId\\\":15,\\\"tid\\\":223,\\\"url\\\":\\\"//www.bilibili.com/v/car\\\",\\\"icon\\\":\\\"ChannelCar\\\",\\\"route\\\":\\\"car\\\",\\\"sub\\\":[{\\\"subChannelId\\\":150011,\\\"name\\\":\\\"汽车知识科普\\\",\\\"route\\\":\\\"knowledge\\\",\\\"tid\\\":258,\\\"desc\\\":\\\"关于汽车技术与文化的硬核科普,以及生活中学车、用车、养车的相关知识\\\",\\\"url\\\":\\\"//www.bilibili.com/v/car/knowledge\\\"},{\\\"subChannelId\\\":150005,\\\"name\\\":\\\"购车攻略\\\",\\\"route\\\":\\\"strategy\\\",\\\"tid\\\":227,\\\"desc\\\":\\\"丰富详实的购车建议和新车体验\\\",\\\"url\\\":\\\"//www.bilibili.com/v/car/strategy\\\"},{\\\"subChannelId\\\":150009,\\\"name\\\":\\\"新能源车\\\",\\\"route\\\":\\\"newenergyvehicle\\\",\\\"tid\\\":247,\\\"desc\\\":\\\"电动汽车、混合动力汽车等新能源车型相关内容,包括新车资讯、试驾体验、专业评测等\\\",\\\"url\\\":\\\"//www.bilibili.com/v/car/newenergyvehicle\\\"},{\\\"subChannelId\\\":150007,\\\"name\\\":\\\"赛车\\\",\\\"route\\\":\\\"racing\\\",\\\"tid\\\":245,\\\"desc\\\":\\\"F1等汽车运动相关\\\",\\\"url\\\":\\\"//www.bilibili.com/v/car/racing\\\"},{\\\"subChannelId\\\":150008,\\\"name\\\":\\\"改装玩车\\\",\\\"route\\\":\\\"modifiedvehicle\\\",\\\"tid\\\":246,\\\"desc\\\":\\\"汽车改装、老车修复、硬核越野、车友聚会等相关内容\\\",\\\"url\\\":\\\"//www.bilibili.com/v/car/modifiedvehicle\\\"},{\\\"subChannelId\\\":150006,\\\"name\\\":\\\"摩托车\\\",\\\"route\\\":\\\"motorcycle\\\",\\\"tid\\\":240,\\\"desc\\\":\\\"骑士们集合啦\\\",\\\"url\\\":\\\"//www.bilibili.com/v/car/motorcycle\\\"},{\\\"subChannelId\\\":150010,\\\"name\\\":\\\"房车\\\",\\\"route\\\":\\\"touringcar\\\",\\\"tid\\\":248,\\\"desc\\\":\\\"房车及营地相关内容,包括不限于产品介绍、驾驶体验、房车生活和房车旅行等内容\\\",\\\"url\\\":\\\"//www.bilibili.com/v/car/touringcar\\\"},{\\\"subChannelId\\\":150001,\\\"name\\\":\\\"汽车生活\\\",\\\"route\\\":\\\"life\\\",\\\"tid\\\":176,\\\"desc\\\":\\\"分享汽车及出行相关的生活体验类视频\\\",\\\"url\\\":\\\"//www.bilibili.com/v/car/life\\\"}]}\",\"channel_list.channel_page_sort\":\"[\\\"douga\\\",\\\"game\\\",\\\"car\\\",\\\"kichiku\\\",\\\"music\\\",\\\"dance\\\",\\\"cinephile\\\",\\\"ent\\\",\\\"knowledge\\\",\\\"tech\\\",\\\"information\\\",\\\"food\\\",\\\"life\\\",\\\"car\\\",\\\"fashion\\\",\\\"sports\\\",\\\"animal\\\"]\",\"channel_list.cinephile\":\"{\\\"name\\\":\\\"影视\\\",\\\"channelId\\\":25,\\\"tid\\\":181,\\\"url\\\":\\\"//www.bilibili.com/v/cinephile\\\",\\\"icon\\\":\\\"ChannelCinephile\\\",\\\"route\\\":\\\"cinephile\\\",\\\"sub\\\":[{\\\"subChannelId\\\":250001,\\\"name\\\":\\\"影视杂谈\\\",\\\"route\\\":\\\"cinecism\\\",\\\"tid\\\":182,\\\"desc\\\":\\\"影视评论、解说、吐槽、科普等\\\",\\\"url\\\":\\\"//www.bilibili.com/v/cinephile/cinecism\\\"},{\\\"subChannelId\\\":250002,\\\"name\\\":\\\"影视剪辑\\\",\\\"route\\\":\\\"montage\\\",\\\"tid\\\":183,\\\"desc\\\":\\\"对影视素材进行剪辑再创作的视频\\\",\\\"url\\\":\\\"//www.bilibili.com/v/cinephile/montage\\\"},{\\\"subChannelId\\\":250006,\\\"name\\\":\\\"影视整活\\\",\\\"route\\\":\\\"mashup\\\",\\\"tid\\\":260,\\\"desc\\\":\\\"使用影视素材制造的有趣、有梗的创意混剪、配音、特效玩梗视频\\\",\\\"url\\\":\\\"//www.bilibili.com/v/cinephile/mashup\\\"},{\\\"subChannelId\\\":250007,\\\"name\\\":\\\"AI影像\\\",\\\"route\\\":\\\"ai_imaging\\\",\\\"tid\\\":259,\\\"desc\\\":\\\"分享AI制作的影像作品、创作历程、技术风向\\\",\\\"url\\\":\\\"//www.bilibili.com/v/cinephile/ai_imaging\\\"},{\\\"subChannelId\\\":250004,\\\"name\\\":\\\"预告·资讯\\\",\\\"route\\\":\\\"trailer_info\\\",\\\"tid\\\":184,\\\"desc\\\":\\\"影视类相关资讯,预告,花絮等视频\\\",\\\"url\\\":\\\"//www.bilibili.com/v/cinephile/trailer_info\\\"},{\\\"subChannelId\\\":250003,\\\"name\\\":\\\"小剧场\\\",\\\"route\\\":\\\"shortplay\\\",\\\"tid\\\":85,\\\"desc\\\":\\\"有场景、有剧情的演绎类内容\\\",\\\"url\\\":\\\"//www.bilibili.com/v/cinephile/shortplay\\\"},{\\\"subChannelId\\\":250005,\\\"name\\\":\\\"短片\\\",\\\"route\\\":\\\"shortfilm\\\",\\\"tid\\\":256,\\\"desc\\\":\\\"各种类型的短片\\\",\\\"url\\\":\\\"//www.bilibili.com/v/cinephile/shortfilm\\\"},{\\\"subChannelId\\\":250008,\\\"name\\\":\\\"影视综合\\\",\\\"route\\\":\\\"comprehensive\\\",\\\"tid\\\":261,\\\"desc\\\":\\\"一切无法被收纳其他影视二级分区的影视相关内容\\\",\\\"url\\\":\\\"//www.bilibili.com/v/cinephile/comprehensive\\\"}]}\",\"channel_list.dance\":\"{\\\"name\\\":\\\"舞蹈\\\",\\\"channelId\\\":10,\\\"tid\\\":129,\\\"url\\\":\\\"//www.bilibili.com/v/dance/\\\",\\\"icon\\\":\\\"ChannelDance\\\",\\\"route\\\":\\\"dance\\\",\\\"sub\\\":[{\\\"subChannelId\\\":100001,\\\"name\\\":\\\"宅舞\\\",\\\"route\\\":\\\"otaku\\\",\\\"tid\\\":20,\\\"desc\\\":\\\"与ACG相关的翻跳、原创舞蹈\\\",\\\"url\\\":\\\"//www.bilibili.com/v/dance/otaku/\\\"},{\\\"subChannelId\\\":100002,\\\"name\\\":\\\"街舞\\\",\\\"route\\\":\\\"hiphop\\\",\\\"tid\\\":198,\\\"desc\\\":\\\"收录街舞相关内容,包括赛事现场、舞室作品、个人翻跳、FREESTYLE等\\\",\\\"url\\\":\\\"//www.bilibili.com/v/dance/hiphop/\\\"},{\\\"subChannelId\\\":100003,\\\"name\\\":\\\"明星舞蹈\\\",\\\"route\\\":\\\"star\\\",\\\"tid\\\":199,\\\"desc\\\":\\\"国内外明星发布的官方舞蹈及其翻跳内容\\\",\\\"url\\\":\\\"//www.bilibili.com/v/dance/star/\\\"},{\\\"subChannelId\\\":100004,\\\"name\\\":\\\"国风舞蹈\\\",\\\"route\\\":\\\"china\\\",\\\"tid\\\":200,\\\"desc\\\":\\\"收录国风向舞蹈内容,包括中国舞、民族民间舞、汉唐舞、国风爵士等\\\",\\\"url\\\":\\\"//www.bilibili.com/v/dance/china/\\\"},{\\\"subChannelId\\\":100007,\\\"name\\\":\\\"颜值·网红舞\\\",\\\"route\\\":\\\"gestures\\\",\\\"tid\\\":255,\\\"desc\\\":\\\"手势舞及网红流行舞蹈、短视频舞蹈等相关视频\\\",\\\"url\\\":\\\"//www.bilibili.com/v/dance/gestures/\\\"},{\\\"subChannelId\\\":100005,\\\"name\\\":\\\"舞蹈综合\\\",\\\"route\\\":\\\"three_d\\\",\\\"tid\\\":154,\\\"desc\\\":\\\"收录无法定义到其他舞蹈子分区的舞蹈视频\\\",\\\"url\\\":\\\"//www.bilibili.com/v/dance/three_d/\\\"},{\\\"subChannelId\\\":100006,\\\"name\\\":\\\"舞蹈教程\\\",\\\"route\\\":\\\"demo\\\",\\\"tid\\\":156,\\\"desc\\\":\\\"镜面慢速,动作分解,基础教程等具有教学意义的舞蹈视频\\\",\\\"url\\\":\\\"//www.bilibili.com/v/dance/demo/\\\"}]}\",\"channel_list.documentary\":\"{\\\"name\\\":\\\"纪录片\\\",\\\"tid\\\":177,\\\"channelId\\\":7,\\\"url\\\":\\\"//www.bilibili.com/documentary/\\\",\\\"icon\\\":\\\"ChannelDocumentary\\\"}\",\"channel_list.douga\":\"{\\\"name\\\":\\\"动画\\\",\\\"channelId\\\":8,\\\"tid\\\":1,\\\"url\\\":\\\"//www.bilibili.com/v/douga/\\\",\\\"icon\\\":\\\"ChannelDouga\\\",\\\"route\\\":\\\"douga\\\",\\\"sub\\\":[{\\\"subChannelId\\\":80001,\\\"name\\\":\\\"MAD·AMV\\\",\\\"desc\\\":\\\"具有一定制作程度的动画或静画的二次创作视频\\\",\\\"route\\\":\\\"mad\\\",\\\"tid\\\":24,\\\"url\\\":\\\"//www.bilibili.com/v/douga/mad/\\\"},{\\\"subChannelId\\\":80002,\\\"name\\\":\\\"MMD·3D\\\",\\\"desc\\\":\\\"使用MMD(MikuMikuDance)和其他3D建模类软件制作的视频\\\",\\\"route\\\":\\\"mmd\\\",\\\"tid\\\":25,\\\"url\\\":\\\"//www.bilibili.com/v/douga/mmd/\\\"},{\\\"subChannelId\\\":80003,\\\"name\\\":\\\"同人·手书\\\",\\\"desc\\\":\\\"追求个人特色和创意表达的手书(绘)、以及同人作品展示、宣传为主的内容\\\",\\\"route\\\":\\\"handdrawn\\\",\\\"tid\\\":47,\\\"url\\\":\\\"//www.bilibili.com/v/douga/handdrawn/\\\"},{\\\"subChannelId\\\":80008,\\\"name\\\":\\\"配音\\\",\\\"desc\\\":\\\"使用ACGN相关画面或台本素材进行人工配音创作的内容\\\",\\\"route\\\":\\\"voice\\\",\\\"tid\\\":257,\\\"url\\\":\\\"//www.bilibili.com/v/douga/voice/\\\"},{\\\"subChannelId\\\":80004,\\\"name\\\":\\\"模玩·周边\\\",\\\"desc\\\":\\\"模玩、周边谷子的测评、展示、改造或其他衍生内容\\\",\\\"route\\\":\\\"garage_kit\\\",\\\"tid\\\":210,\\\"url\\\":\\\"//www.bilibili.com/v/douga/garage_kit/\\\"},{\\\"subChannelId\\\":80005,\\\"name\\\":\\\"特摄\\\",\\\"desc\\\":\\\"特摄相关衍生视频\\\",\\\"route\\\":\\\"tokusatsu\\\",\\\"tid\\\":86,\\\"url\\\":\\\"//www.bilibili.com/v/douga/tokusatsu/\\\"},{\\\"subChannelId\\\":80007,\\\"name\\\":\\\"动漫杂谈\\\",\\\"desc\\\":\\\"以谈话形式对ACGN文化圈进行的鉴赏、吐槽、评点、解说、推荐、科普等内容\\\",\\\"route\\\":\\\"acgntalks\\\",\\\"tid\\\":253,\\\"url\\\":\\\"//www.bilibili.com/v/douga/acgntalks/\\\"},{\\\"subChannelId\\\":80006,\\\"name\\\":\\\"综合\\\",\\\"desc\\\":\\\"以动画及动画相关内容为素材,包括但不仅限于音频替换、恶搞改编、排行榜等内容\\\",\\\"route\\\":\\\"other\\\",\\\"tid\\\":27,\\\"url\\\":\\\"//www.bilibili.com/v/douga/other/\\\"}]}\",\"channel_list.ent\":\"{\\\"name\\\":\\\"娱乐\\\",\\\"channelId\\\":23,\\\"tid\\\":5,\\\"url\\\":\\\"//www.bilibili.com/v/ent/\\\",\\\"icon\\\":\\\"ChannelEnt\\\",\\\"route\\\":\\\"ent\\\",\\\"sub\\\":[{\\\"subChannelId\\\":230003,\\\"name\\\":\\\"娱乐杂谈\\\",\\\"route\\\":\\\"talker\\\",\\\"tid\\\":241,\\\"desc\\\":\\\"娱乐人物解读、娱乐热点点评、娱乐行业分析\\\",\\\"url\\\":\\\"//www.bilibili.com/v/ent/talker\\\"},{\\\"subChannelId\\\":230005,\\\"name\\\":\\\"CP安利\\\",\\\"route\\\":\\\"cp_recommendation\\\",\\\"tid\\\":262,\\\"desc\\\":\\\"以安利各类娱乐名人、角色CP之间默契于火花为主题的混剪、解说,观点表达类视频\\\",\\\"url\\\":\\\"//www.bilibili.com/v/ent/cp_recommendation\\\"},{\\\"subChannelId\\\":230006,\\\"name\\\":\\\"颜值安利\\\",\\\"route\\\":\\\"beauty\\\",\\\"tid\\\":263,\\\"desc\\\":\\\"以各类娱乐名人、角色的颜值、气质魅力为核心的混剪视频\\\",\\\"url\\\":\\\"//www.bilibili.com/v/ent/beauty\\\"},{\\\"subChannelId\\\":230004,\\\"name\\\":\\\"娱乐粉丝创作\\\",\\\"route\\\":\\\"fans\\\",\\\"tid\\\":242,\\\"desc\\\":\\\"粉丝向创作视频\\\",\\\"url\\\":\\\"//www.bilibili.com/v/ent/fans\\\"},{\\\"subChannelId\\\":230007,\\\"name\\\":\\\"娱乐资讯\\\",\\\"route\\\":\\\"entertainment_news\\\",\\\"tid\\\":264,\\\"desc\\\":\\\"具备趣味价值的文化娱乐新闻与动态报道,如名人动态,作品发布,舞台演出,趣闻盘点等\\\",\\\"url\\\":\\\"//www.bilibili.com/v/ent/entertainment_news\\\"},{\\\"subChannelId\\\":230002,\\\"name\\\":\\\"明星综合\\\",\\\"route\\\":\\\"celebrity\\\",\\\"tid\\\":137,\\\"desc\\\":\\\"娱乐圈动态、明星资讯相关\\\",\\\"url\\\":\\\"//www.bilibili.com/v/ent/celebrity\\\"},{\\\"subChannelId\\\":230001,\\\"name\\\":\\\"综艺\\\",\\\"route\\\":\\\"variety\\\",\\\"tid\\\":71,\\\"desc\\\":\\\"所有综艺相关,全部一手掌握!\\\",\\\"url\\\":\\\"//www.bilibili.com/v/ent/variety\\\"}]}\",\"channel_list.fashion\":\"{\\\"name\\\":\\\"时尚\\\",\\\"channelId\\\":22,\\\"tid\\\":155,\\\"url\\\":\\\"//www.bilibili.com/v/fashion\\\",\\\"icon\\\":\\\"ChannelFashion\\\",\\\"route\\\":\\\"fashion\\\",\\\"sub\\\":[{\\\"subChannelId\\\":220001,\\\"name\\\":\\\"美妆护肤\\\",\\\"route\\\":\\\"makeup\\\",\\\"tid\\\":157,\\\"desc\\\":\\\"彩妆护肤、美甲美发、仿妆、医美相关内容分享或产品测评\\\",\\\"url\\\":\\\"//www.bilibili.com/v/fashion/makeup\\\"},{\\\"subChannelId\\\":220004,\\\"name\\\":\\\"仿妆cos\\\",\\\"route\\\":\\\"cos\\\",\\\"tid\\\":252,\\\"desc\\\":\\\"对二次元、三次元人物角色进行模仿、还原、展示、演绎的内容\\\",\\\"url\\\":\\\"//www.bilibili.com/v/fashion/cos\\\"},{\\\"subChannelId\\\":220002,\\\"name\\\":\\\"穿搭\\\",\\\"route\\\":\\\"clothing\\\",\\\"tid\\\":158,\\\"desc\\\":\\\"穿搭风格、穿搭技巧的展示分享,涵盖衣服、鞋靴、箱包配件、配饰(帽子、钟表、珠宝首饰)等\\\",\\\"url\\\":\\\"//www.bilibili.com/v/fashion/clothing\\\"},{\\\"subChannelId\\\":220003,\\\"name\\\":\\\"时尚潮流\\\",\\\"route\\\":\\\"trend\\\",\\\"tid\\\":159,\\\"desc\\\":\\\"时尚街拍、时装周、时尚大片,时尚品牌、潮流等行业相关记录及知识科普\\\",\\\"url\\\":\\\"//www.bilibili.com/v/fashion/trend\\\"}]}\",\"channel_list.food\":\"{\\\"name\\\":\\\"美食\\\",\\\"channelId\\\":17,\\\"tid\\\":211,\\\"url\\\":\\\"//www.bilibili.com/v/food\\\",\\\"icon\\\":\\\"ChannelFood\\\",\\\"route\\\":\\\"food\\\",\\\"sub\\\":[{\\\"subChannelId\\\":170001,\\\"name\\\":\\\"美食制作\\\",\\\"route\\\":\\\"make\\\",\\\"tid\\\":76,\\\"desc\\\":\\\"学做人间美味,展示精湛厨艺\\\",\\\"url\\\":\\\"//www.bilibili.com/v/food/make\\\"},{\\\"subChannelId\\\":170002,\\\"name\\\":\\\"美食侦探\\\",\\\"route\\\":\\\"detective\\\",\\\"tid\\\":212,\\\"desc\\\":\\\"寻找美味餐厅,发现街头美食\\\",\\\"url\\\":\\\"//www.bilibili.com/v/food/detective\\\"},{\\\"subChannelId\\\":170003,\\\"name\\\":\\\"美食测评\\\",\\\"route\\\":\\\"measurement\\\",\\\"tid\\\":213,\\\"desc\\\":\\\"吃货世界,品尝世间美味\\\",\\\"url\\\":\\\"//www.bilibili.com/v/food/measurement\\\"},{\\\"subChannelId\\\":170004,\\\"name\\\":\\\"田园美食\\\",\\\"route\\\":\\\"rural\\\",\\\"tid\\\":214,\\\"desc\\\":\\\"品味乡野美食,寻找山与海的味道\\\",\\\"url\\\":\\\"//www.bilibili.com/v/food/rural\\\"},{\\\"subChannelId\\\":170005,\\\"name\\\":\\\"美食记录\\\",\\\"route\\\":\\\"record\\\",\\\"tid\\\":215,\\\"desc\\\":\\\"记录一日三餐,给生活添一点幸福感\\\",\\\"url\\\":\\\"//www.bilibili.com/v/food/record\\\"}]}\",\"channel_list.funny\":\"{\\\"channelId\\\":160001,\\\"name\\\":\\\"搞笑\\\",\\\"route\\\":\\\"stand_alone\\\",\\\"tid\\\":138,\\\"icon\\\":\\\"ChannelGaoxiao\\\",\\\"url\\\":\\\"//www.bilibili.com/v/life/funny\\\"}\",\"channel_list.game\":\"{\\\"name\\\":\\\"游戏\\\",\\\"channelId\\\":11,\\\"tid\\\":4,\\\"url\\\":\\\"//www.bilibili.com/v/game/\\\",\\\"icon\\\":\\\"ChannelGame\\\",\\\"route\\\":\\\"game\\\",\\\"sub\\\":[{\\\"subChannelId\\\":110001,\\\"name\\\":\\\"单机游戏\\\",\\\"desc\\\":\\\"以所有平台(PC、主机、移动端)的单机或联机游戏为主的视频内容,包括游戏预告、CG、实况解说及相关的评测、杂谈与视频剪辑等\\\",\\\"route\\\":\\\"stand_alone\\\",\\\"tid\\\":17,\\\"url\\\":\\\"//www.bilibili.com/v/game/stand_alone\\\"},{\\\"subChannelId\\\":110002,\\\"name\\\":\\\"电子竞技\\\",\\\"desc\\\":\\\"具有高对抗性的电子竞技游戏项目,其相关的赛事、实况、攻略、解说、短剧等视频。\\\",\\\"route\\\":\\\"esports\\\",\\\"tid\\\":171,\\\"url\\\":\\\"//www.bilibili.com/v/game/esports\\\"},{\\\"subChannelId\\\":110003,\\\"name\\\":\\\"手机游戏\\\",\\\"desc\\\":\\\"以手机及平板设备为主要平台的游戏,其相关的实况、攻略、解说、短剧、演示等视频。\\\",\\\"route\\\":\\\"mobile\\\",\\\"tid\\\":172,\\\"url\\\":\\\"//www.bilibili.com/v/game/mobile\\\"},{\\\"subChannelId\\\":110004,\\\"name\\\":\\\"网络游戏\\\",\\\"desc\\\":\\\"由网络运营商运营的多人在线游戏,以及电子竞技的相关游戏内容。包括赛事、攻略、实况、解说等相关视频\\\",\\\"route\\\":\\\"online\\\",\\\"tid\\\":65,\\\"url\\\":\\\"//www.bilibili.com/v/game/online\\\"},{\\\"subChannelId\\\":110005,\\\"name\\\":\\\"桌游棋牌\\\",\\\"desc\\\":\\\"桌游、棋牌、卡牌对战等及其相关电子版游戏的实况、攻略、解说、演示等视频。\\\",\\\"route\\\":\\\"board\\\",\\\"tid\\\":173,\\\"url\\\":\\\"//www.bilibili.com/v/game/board\\\"},{\\\"subChannelId\\\":110006,\\\"name\\\":\\\"GMV\\\",\\\"desc\\\":\\\"由游戏素材制作的MV视频。以游戏内容或CG为主制作的,具有一定创作程度的MV类型的视频\\\",\\\"route\\\":\\\"gmv\\\",\\\"tid\\\":121,\\\"url\\\":\\\"//www.bilibili.com/v/game/gmv\\\"},{\\\"subChannelId\\\":110007,\\\"name\\\":\\\"音游\\\",\\\"desc\\\":\\\"各个平台上,通过配合音乐与节奏而进行的音乐类游戏视频\\\",\\\"route\\\":\\\"music\\\",\\\"tid\\\":136,\\\"url\\\":\\\"//www.bilibili.com/v/game/music\\\"},{\\\"subChannelId\\\":110008,\\\"name\\\":\\\"Mugen\\\",\\\"desc\\\":\\\"以Mugen引擎为平台制作、或与Mugen相关的游戏视频\\\",\\\"route\\\":\\\"mugen\\\",\\\"tid\\\":19,\\\"url\\\":\\\"//www.bilibili.com/v/game/mugen\\\"},{\\\"subChannelId\\\":110009,\\\"name\\\":\\\"游戏赛事\\\",\\\"hiddenInPrimaryChannel\\\":true,\\\"url\\\":\\\"//www.bilibili.com/v/game/match/\\\"}]}\",\"channel_list.guochuang\":\"{\\\"channelId\\\":4,\\\"name\\\":\\\"国创\\\",\\\"tid\\\":167,\\\"url\\\":\\\"//www.bilibili.com/guochuang/\\\",\\\"icon\\\":\\\"ChannelGuochuang\\\",\\\"sub\\\":[{\\\"subChannelId\\\":40001,\\\"name\\\":\\\"国产动画\\\",\\\"tid\\\":153,\\\"route\\\":\\\"chinese\\\",\\\"url\\\":\\\"//www.bilibili.com/v/guochuang/chinese/\\\"},{\\\"subChannelId\\\":40002,\\\"name\\\":\\\"国产原创相关\\\",\\\"tid\\\":168,\\\"route\\\":\\\"original\\\",\\\"url\\\":\\\"//www.bilibili.com/v/guochuang/original/\\\"},{\\\"subChannelId\\\":40003,\\\"name\\\":\\\"布袋戏\\\",\\\"tid\\\":169,\\\"route\\\":\\\"puppetry\\\",\\\"url\\\":\\\"//www.bilibili.com/v/guochuang/puppetry/\\\"},{\\\"subChannelId\\\":40004,\\\"name\\\":\\\"动态漫·广播剧\\\",\\\"tid\\\":195,\\\"route\\\":\\\"motioncomic\\\",\\\"url\\\":\\\"//www.bilibili.com/v/guochuang/motioncomic/\\\"},{\\\"subChannelId\\\":40005,\\\"name\\\":\\\"资讯\\\",\\\"tid\\\":170,\\\"route\\\":\\\"information\\\",\\\"url\\\":\\\"//www.bilibili.com/v/guochuang/information/\\\"},{\\\"subChannelId\\\":40006,\\\"name\\\":\\\"新番时间表\\\",\\\"url\\\":\\\"//www.bilibili.com/guochuang/timeline/\\\"},{\\\"subChannelId\\\":40007,\\\"name\\\":\\\"国产动画索引\\\",\\\"url\\\":\\\"//www.bilibili.com/guochuang/index/\\\"}]}\",\"channel_list.information\":\"{\\\"name\\\":\\\"资讯\\\",\\\"channelId\\\":21,\\\"tid\\\":202,\\\"url\\\":\\\"//www.bilibili.com/v/information/\\\",\\\"icon\\\":\\\"ChannelInformation\\\",\\\"route\\\":\\\"information\\\",\\\"sub\\\":[{\\\"subChannelId\\\":210001,\\\"name\\\":\\\"热点\\\",\\\"route\\\":\\\"hotspot\\\",\\\"tid\\\":203,\\\"hiddenHotList\\\":true,\\\"desc\\\":\\\"全民关注的时政热门资讯\\\",\\\"url\\\":\\\"//www.bilibili.com/v/information/hotspot\\\"},{\\\"subChannelId\\\":210002,\\\"name\\\":\\\"环球\\\",\\\"route\\\":\\\"global\\\",\\\"tid\\\":204,\\\"hiddenHotList\\\":true,\\\"desc\\\":\\\"全球范围内发生的具有重大影响力的事件动态\\\",\\\"url\\\":\\\"//www.bilibili.com/v/information/global\\\"},{\\\"subChannelId\\\":210003,\\\"name\\\":\\\"社会\\\",\\\"route\\\":\\\"social\\\",\\\"tid\\\":205,\\\"hiddenHotList\\\":true,\\\"desc\\\":\\\"日常生活的社会事件、社会问题、社会风貌的报道\\\",\\\"url\\\":\\\"//www.bilibili.com/v/information/social\\\"},{\\\"subChannelId\\\":210004,\\\"name\\\":\\\"综合\\\",\\\"route\\\":\\\"multiple\\\",\\\"tid\\\":206,\\\"hiddenHotList\\\":true,\\\"desc\\\":\\\"除上述领域外其它垂直领域的综合资讯\\\",\\\"url\\\":\\\"//www.bilibili.com/v/information/multiple\\\"}]}\",\"channel_list.kichiku\":\"{\\\"name\\\":\\\"鬼畜\\\",\\\"channelId\\\":20,\\\"tid\\\":119,\\\"url\\\":\\\"//www.bilibili.com/v/kichiku/\\\",\\\"icon\\\":\\\"ChannelKichiku\\\",\\\"route\\\":\\\"kichiku\\\",\\\"sub\\\":[{\\\"subChannelId\\\":200001,\\\"name\\\":\\\"鬼畜调教\\\",\\\"desc\\\":\\\"使用素材在音频、画面上做一定处理,达到与BGM一定的同步感\\\",\\\"route\\\":\\\"guide\\\",\\\"tid\\\":22,\\\"url\\\":\\\"//www.bilibili.com/v/kichiku/guide\\\"},{\\\"subChannelId\\\":200002,\\\"name\\\":\\\"音MAD\\\",\\\"desc\\\":\\\"使用素材音频进行一定的二次创作来达到还原原曲的非商业性质稿件\\\",\\\"route\\\":\\\"mad\\\",\\\"tid\\\":26,\\\"url\\\":\\\"//www.bilibili.com/v/kichiku/mad\\\"},{\\\"subChannelId\\\":200003,\\\"name\\\":\\\"人力VOCALOID\\\",\\\"desc\\\":\\\"将人物或者角色的无伴奏素材进行人工调音,使其就像VOCALOID一样歌唱的技术\\\",\\\"route\\\":\\\"manual_vocaloid\\\",\\\"tid\\\":126,\\\"url\\\":\\\"//www.bilibili.com/v/kichiku/manual_vocaloid\\\"},{\\\"subChannelId\\\":200004,\\\"name\\\":\\\"鬼畜剧场\\\",\\\"desc\\\":\\\"使用素材进行人工剪辑编排的有剧情的作品\\\",\\\"route\\\":\\\"theatre\\\",\\\"tid\\\":216,\\\"url\\\":\\\"//www.bilibili.com/v/kichiku/theatre\\\"},{\\\"subChannelId\\\":200005,\\\"name\\\":\\\"教程演示\\\",\\\"desc\\\":\\\"鬼畜相关的教程演示\\\",\\\"route\\\":\\\"course\\\",\\\"tid\\\":127,\\\"url\\\":\\\"//www.bilibili.com/v/kichiku/course\\\"}]}\",\"channel_list.knowledge\":\"{\\\"name\\\":\\\"知识\\\",\\\"channelId\\\":12,\\\"tid\\\":36,\\\"url\\\":\\\"//www.bilibili.com/v/knowledge/\\\",\\\"icon\\\":\\\"ChannelKnowledge\\\",\\\"route\\\":\\\"knowledge\\\",\\\"sub\\\":[{\\\"subChannelId\\\":120001,\\\"name\\\":\\\"科学科普\\\",\\\"route\\\":\\\"science\\\",\\\"tid\\\":201,\\\"desc\\\":\\\"回答你的十万个为什么\\\",\\\"url\\\":\\\"//www.bilibili.com/v/knowledge/science\\\"},{\\\"subChannelId\\\":120002,\\\"name\\\":\\\"社科·法律·心理\\\",\\\"route\\\":\\\"social_science\\\",\\\"tid\\\":124,\\\"desc\\\":\\\"基于社会科学、法学、心理学展开或个人观点输出的知识视频\\\",\\\"url\\\":\\\"//www.bilibili.com/v/knowledge/social_science\\\"},{\\\"subChannelId\\\":120003,\\\"name\\\":\\\"人文历史\\\",\\\"route\\\":\\\"humanity_history\\\",\\\"tid\\\":228,\\\"desc\\\":\\\"看看古今人物,聊聊历史过往,品品文学典籍\\\",\\\"url\\\":\\\"//www.bilibili.com/v/knowledge/humanity_history\\\"},{\\\"subChannelId\\\":120004,\\\"name\\\":\\\"财经商业\\\",\\\"route\\\":\\\"business\\\",\\\"tid\\\":207,\\\"desc\\\":\\\"说金融市场,谈宏观经济,一起畅聊商业故事\\\",\\\"url\\\":\\\"//www.bilibili.com/v/knowledge/business\\\"},{\\\"subChannelId\\\":120005,\\\"name\\\":\\\"校园学习\\\",\\\"route\\\":\\\"campus\\\",\\\"tid\\\":208,\\\"desc\\\":\\\"老师很有趣,学生也有才,我们一起搞学习\\\",\\\"url\\\":\\\"//www.bilibili.com/v/knowledge/campus\\\"},{\\\"subChannelId\\\":120006,\\\"name\\\":\\\"职业职场\\\",\\\"route\\\":\\\"career\\\",\\\"tid\\\":209,\\\"desc\\\":\\\"职业分享、升级指南,一起成为最有料的职场人\\\",\\\"url\\\":\\\"//www.bilibili.com/v/knowledge/career\\\"},{\\\"subChannelId\\\":120007,\\\"name\\\":\\\"设计·创意\\\",\\\"route\\\":\\\"design\\\",\\\"tid\\\":229,\\\"desc\\\":\\\"天马行空,创意设计,都在这里\\\",\\\"url\\\":\\\"//www.bilibili.com/v/knowledge/design\\\"},{\\\"subChannelId\\\":120008,\\\"name\\\":\\\"野生技能协会\\\",\\\"route\\\":\\\"skill\\\",\\\"tid\\\":122,\\\"desc\\\":\\\"技能党集合,是时候展示真正的技术了\\\",\\\"url\\\":\\\"//www.bilibili.com/v/knowledge/skill\\\"}]}\",\"channel_list.life\":\"{\\\"name\\\":\\\"生活\\\",\\\"channelId\\\":16,\\\"tid\\\":160,\\\"url\\\":\\\"//www.bilibili.com/v/life\\\",\\\"icon\\\":\\\"ChannelLife\\\",\\\"route\\\":\\\"life\\\",\\\"sub\\\":[{\\\"subChannelId\\\":160001,\\\"name\\\":\\\"搞笑\\\",\\\"route\\\":\\\"funny\\\",\\\"tid\\\":138,\\\"desc\\\":\\\"各种沙雕有趣的搞笑剪辑,挑战,表演,配音等视频\\\",\\\"url\\\":\\\"//www.bilibili.com/v/life/funny\\\"},{\\\"subChannelId\\\":160008,\\\"name\\\":\\\"亲子\\\",\\\"route\\\":\\\"parenting\\\",\\\"tid\\\":254,\\\"desc\\\":\\\"分享亲子、萌娃、母婴、育儿相关的视频\\\",\\\"url\\\":\\\"//www.bilibili.com/v/life/parenting\\\"},{\\\"subChannelId\\\":160006,\\\"name\\\":\\\"出行\\\",\\\"route\\\":\\\"travel\\\",\\\"tid\\\":250,\\\"desc\\\":\\\"为达到观光游览、休闲娱乐为目的的远途旅行、中近途户外生活、本地探店\\\",\\\"url\\\":\\\"//www.bilibili.com/v/life/travel\\\"},{\\\"subChannelId\\\":160007,\\\"name\\\":\\\"三农\\\",\\\"route\\\":\\\"rurallife\\\",\\\"tid\\\":251,\\\"desc\\\":\\\"分享美好农村生活\\\",\\\"url\\\":\\\"//www.bilibili.com/v/life/rurallife\\\"},{\\\"subChannelId\\\":160002,\\\"name\\\":\\\"家居房产\\\",\\\"route\\\":\\\"home\\\",\\\"tid\\\":239,\\\"desc\\\":\\\"与买房、装修、居家生活相关的分享\\\",\\\"url\\\":\\\"//www.bilibili.com/v/life/home\\\"},{\\\"subChannelId\\\":160003,\\\"name\\\":\\\"手工\\\",\\\"route\\\":\\\"handmake\\\",\\\"tid\\\":161,\\\"desc\\\":\\\"手工制品的制作过程或成品展示、教程、测评类视频\\\",\\\"url\\\":\\\"//www.bilibili.com/v/life/handmake\\\"},{\\\"subChannelId\\\":160004,\\\"name\\\":\\\"绘画\\\",\\\"route\\\":\\\"painting\\\",\\\"tid\\\":162,\\\"desc\\\":\\\"绘画过程或绘画教程,以及绘画相关的所有视频\\\",\\\"url\\\":\\\"//www.bilibili.com/v/life/painting\\\"},{\\\"subChannelId\\\":160005,\\\"name\\\":\\\"日常\\\",\\\"route\\\":\\\"daily\\\",\\\"tid\\\":21,\\\"desc\\\":\\\"记录日常生活,分享生活故事\\\",\\\"url\\\":\\\"//www.bilibili.com/v/life/daily\\\"}]}\",\"channel_list.love\":\"{\\\"channelId\\\":32,\\\"name\\\":\\\"公益\\\",\\\"icon\\\":\\\"ChannelLove\\\",\\\"url\\\":\\\"//love.bilibili.com\\\"}\",\"channel_list.mooc\":\"{\\\"channelId\\\":33,\\\"name\\\":\\\"公开课\\\",\\\"icon\\\":\\\"ChannelGongkaike\\\",\\\"url\\\":\\\"//www.bilibili.com/mooc\\\"}\",\"channel_list.movie\":\"{\\\"channelId\\\":3,\\\"name\\\":\\\"电影\\\",\\\"tid\\\":23,\\\"url\\\":\\\"//www.bilibili.com/movie/\\\",\\\"icon\\\":\\\"ChannelMovie\\\"}\",\"channel_list.music\":\"{\\\"name\\\":\\\"音乐\\\",\\\"channelId\\\":9,\\\"tid\\\":3,\\\"url\\\":\\\"//www.bilibili.com/v/music\\\",\\\"icon\\\":\\\"ChannelMusic\\\",\\\"route\\\":\\\"music\\\",\\\"sub\\\":[{\\\"subChannelId\\\":90001,\\\"name\\\":\\\"原创音乐\\\",\\\"route\\\":\\\"original\\\",\\\"desc\\\":\\\"原创歌曲及纯音乐,包括改编、重编曲及remix\\\",\\\"url\\\":\\\"//www.bilibili.com/v/music/original\\\",\\\"tid\\\":28},{\\\"subChannelId\\\":90007,\\\"name\\\":\\\"音乐现场\\\",\\\"route\\\":\\\"live\\\",\\\"tid\\\":29,\\\"desc\\\":\\\"音乐表演的实况视频,包括官方的综艺节目、音乐剧、音乐节、演唱会、打歌舞台现场等,以及个人演出/街头表演现场等\\\",\\\"url\\\":\\\"//www.bilibili.com/v/music/live\\\"},{\\\"subChannelId\\\":90002,\\\"name\\\":\\\"翻唱\\\",\\\"route\\\":\\\"cover\\\",\\\"desc\\\":\\\"对曲目的人声再演绎视频\\\",\\\"url\\\":\\\"//www.bilibili.com/v/music/cover\\\",\\\"tid\\\":31},{\\\"subChannelId\\\":90005,\\\"name\\\":\\\"演奏\\\",\\\"route\\\":\\\"perform\\\",\\\"tid\\\":59,\\\"desc\\\":\\\"乐器和非传统乐器器材的演奏作品\\\",\\\"url\\\":\\\"//www.bilibili.com/v/music/perform\\\"},{\\\"subChannelId\\\":900011,\\\"name\\\":\\\"乐评盘点\\\",\\\"route\\\":\\\"commentary\\\",\\\"tid\\\":243,\\\"desc\\\":\\\"音乐类新闻、盘点、点评、reaction、榜单、采访、幕后故事、唱片开箱等\\\",\\\"url\\\":\\\"//www.bilibili.com/v/music/commentary\\\"},{\\\"subChannelId\\\":90003,\\\"name\\\":\\\"VOCALOID·UTAU\\\",\\\"route\\\":\\\"vocaloid\\\",\\\"desc\\\":\\\"以VOCALOID等歌声合成引擎为基础,运用各类音源进行的创作\\\",\\\"url\\\":\\\"//www.bilibili.com/v/music/vocaloid\\\",\\\"tid\\\":30},{\\\"subChannelId\\\":90006,\\\"name\\\":\\\"MV\\\",\\\"route\\\":\\\"mv\\\",\\\"tid\\\":193,\\\"desc\\\":\\\"为音乐作品配合拍摄或制作的音乐录影带(Music Video),以及自制拍摄、剪辑、翻拍MV\\\",\\\"url\\\":\\\"//www.bilibili.com/v/music/mv\\\"},{\\\"subChannelId\\\":900013,\\\"name\\\":\\\"音乐粉丝饭拍\\\",\\\"route\\\":\\\"fan_videos\\\",\\\"tid\\\":266,\\\"desc\\\":\\\"在音乐演出现场由粉丝团体或个人拍摄的非官方记录视频,包括但不限于粉丝自制饭拍、直拍、Vlog以及衍生的内容混剪等\\\",\\\"url\\\":\\\"//www.bilibili.com/v/music/fan_videos\\\"},{\\\"subChannelId\\\":900014,\\\"name\\\":\\\"AI音乐\\\",\\\"route\\\":\\\"ai_music\\\",\\\"tid\\\":265,\\\"desc\\\":\\\"以AI合成技术为基础,运用各类工具进行的AI作编曲、AI作词、AI语音、AI变声、AI翻唱、AI MV等创作\\\",\\\"url\\\":\\\"//www.bilibili.com/v/music/ai_music\\\"},{\\\"subChannelId\\\":900015,\\\"name\\\":\\\"电台\\\",\\\"route\\\":\\\"radio\\\",\\\"tid\\\":267,\\\"desc\\\":\\\"音乐分享、播单、白噪音、有声读物等以听为主的播放内容\\\",\\\"url\\\":\\\"//www.bilibili.com/v/music/radio\\\"},{\\\"subChannelId\\\":900012,\\\"name\\\":\\\"音乐教学\\\",\\\"route\\\":\\\"tutorial\\\",\\\"tid\\\":244,\\\"desc\\\":\\\"以音乐教学为目的的内容\\\",\\\"url\\\":\\\"//www.bilibili.com/v/music/tutorial\\\"},{\\\"subChannelId\\\":90008,\\\"name\\\":\\\"音乐综合\\\",\\\"route\\\":\\\"other\\\",\\\"tid\\\":130,\\\"desc\\\":\\\"所有无法被收纳到其他音乐二级分区的音乐类视频\\\",\\\"url\\\":\\\"//www.bilibili.com/v/music/other\\\"},{\\\"subChannelId\\\":900010,\\\"hiddenInPrimaryChannel\\\":true,\\\"name\\\":\\\"说唱\\\",\\\"url\\\":\\\"//www.bilibili.com/v/rap\\\"}]}\",\"channel_list.search_page_sort\":\"[\\\"all\\\",\\\"douga\\\",\\\"anime\\\",\\\"guochuang\\\",\\\"music\\\",\\\"dance\\\",\\\"game\\\",\\\"knowledge\\\",\\\"tech\\\",\\\"sports\\\",\\\"car\\\",\\\"life\\\",\\\"food\\\",\\\"animal\\\",\\\"kichiku\\\",\\\"fashion\\\",\\\"information\\\",\\\"ent\\\",\\\"cinephile\\\",\\\"documentary\\\",\\\"movie\\\",\\\"tv\\\"]\",\"channel_list.sort\":\"[\\\"anime\\\",\\\"movie\\\",\\\"guochuang\\\",\\\"tv\\\",\\\"variety\\\",\\\"documentary\\\",\\\"douga\\\",\\\"game\\\",\\\"kichiku\\\",\\\"music\\\",\\\"dance\\\",\\\"cinephile\\\",\\\"ent\\\",\\\"knowledge\\\",\\\"tech\\\",\\\"information\\\",\\\"food\\\",\\\"life\\\",\\\"car\\\",\\\"fashion\\\",\\\"sports\\\",\\\"animal\\\",\\\"vlog\\\",\\\"funny\\\",\\\"stand_alone\\\",\\\"virtual\\\",\\\"love\\\",\\\"mooc\\\"]\",\"channel_list.sports\":\"{\\\"name\\\":\\\"运动\\\",\\\"channelId\\\":14,\\\"tid\\\":234,\\\"url\\\":\\\"//www.bilibili.com/v/sports\\\",\\\"icon\\\":\\\"ChannelSports\\\",\\\"route\\\":\\\"sports\\\",\\\"sub\\\":[{\\\"subChannelId\\\":140001,\\\"name\\\":\\\"篮球\\\",\\\"route\\\":\\\"basketball\\\",\\\"tid\\\":235,\\\"desc\\\":\\\"与篮球相关的视频,包括但不限于篮球赛事、教学、评述、剪辑、剧情等相关内容\\\",\\\"url\\\":\\\"//www.bilibili.com/v/sports/basketball\\\"},{\\\"subChannelId\\\":140006,\\\"name\\\":\\\"足球\\\",\\\"route\\\":\\\"football\\\",\\\"tid\\\":249,\\\"desc\\\":\\\"与足球相关的视频,包括但不限于足球赛事、教学、评述、剪辑、剧情等相关内容\\\",\\\"url\\\":\\\"//www.bilibili.com/v/sports/football\\\"},{\\\"subChannelId\\\":140002,\\\"name\\\":\\\"健身\\\",\\\"route\\\":\\\"aerobics\\\",\\\"tid\\\":164,\\\"desc\\\":\\\"与健身相关的视频,包括但不限于瑜伽、CrossFit、健美、力量举、普拉提、街健等相关内容\\\",\\\"url\\\":\\\"//www.bilibili.com/v/sports/aerobics\\\"},{\\\"subChannelId\\\":140003,\\\"name\\\":\\\"竞技体育\\\",\\\"route\\\":\\\"athletic\\\",\\\"tid\\\":236,\\\"desc\\\":\\\"与竞技体育相关的视频,包括但不限于乒乓、羽毛球、排球、赛车等竞技项目的赛事、评述、剪辑、剧情等相关内容\\\",\\\"url\\\":\\\"//www.bilibili.com/v/sports/athletic\\\"},{\\\"subChannelId\\\":140004,\\\"name\\\":\\\"运动文化\\\",\\\"route\\\":\\\"culture\\\",\\\"tid\\\":237,\\\"desc\\\":\\\"与运动文化相关的视频,包括但不限于球鞋、球衣、球星卡等运动衍生品的分享、解读,体育产业的分析、科普等相关内容\\\",\\\"url\\\":\\\"//www.bilibili.com/v/sports/culture\\\"},{\\\"subChannelId\\\":140005,\\\"name\\\":\\\"运动综合\\\",\\\"route\\\":\\\"comprehensive\\\",\\\"tid\\\":238,\\\"desc\\\":\\\"与运动综合相关的视频,包括但不限于钓鱼、骑行、滑板等日常运动分享、教学、Vlog等相关内容\\\",\\\"url\\\":\\\"//www.bilibili.com/v/sports/comprehensive\\\"}]}\",\"channel_list.stand_alone\":\"{\\\"channelId\\\":110001,\\\"name\\\":\\\"单机游戏\\\",\\\"route\\\":\\\"stand_alone\\\",\\\"tid\\\":17,\\\"icon\\\":\\\"ChannelDanjiyouxi\\\",\\\"url\\\":\\\"//www.bilibili.com/v/game/stand_alone\\\"}\",\"channel_list.tech\":\"{\\\"name\\\":\\\"科技\\\",\\\"channelId\\\":13,\\\"tid\\\":188,\\\"url\\\":\\\"//www.bilibili.com/v/tech/\\\",\\\"icon\\\":\\\"ChannelTech\\\",\\\"route\\\":\\\"tech\\\",\\\"sub\\\":[{\\\"subChannelId\\\":130001,\\\"name\\\":\\\"数码\\\",\\\"route\\\":\\\"digital\\\",\\\"tid\\\":95,\\\"desc\\\":\\\"科技数码产品大全,一起来做发烧友\\\",\\\"url\\\":\\\"//www.bilibili.com/v/tech/digital\\\"},{\\\"subChannelId\\\":130002,\\\"name\\\":\\\"软件应用\\\",\\\"route\\\":\\\"application\\\",\\\"tid\\\":230,\\\"desc\\\":\\\"超全软件应用指南\\\",\\\"url\\\":\\\"//www.bilibili.com/v/tech/application\\\"},{\\\"subChannelId\\\":130003,\\\"name\\\":\\\"计算机技术\\\",\\\"route\\\":\\\"computer_tech\\\",\\\"tid\\\":231,\\\"desc\\\":\\\"研究分析、教学演示、经验分享......有关计算机技术的都在这里\\\",\\\"url\\\":\\\"//www.bilibili.com/v/tech/computer_tech\\\"},{\\\"subChannelId\\\":130004,\\\"name\\\":\\\"科工机械\\\",\\\"route\\\":\\\"industry\\\",\\\"tid\\\":232,\\\"desc\\\":\\\"前方高能,机甲重工即将出没\\\",\\\"url\\\":\\\"//www.bilibili.com/v/tech/industry\\\"},{\\\"subChannelId\\\":130005,\\\"name\\\":\\\"极客DIY\\\",\\\"route\\\":\\\"diy\\\",\\\"tid\\\":233,\\\"desc\\\":\\\"炫酷技能,极客文化,硬核技巧,准备好你的惊讶\\\",\\\"url\\\":\\\"//www.bilibili.com/v/tech/diy\\\"}]}\",\"channel_list.tv\":\"{\\\"name\\\":\\\"电视剧\\\",\\\"channelId\\\":5,\\\"tid\\\":11,\\\"url\\\":\\\"//www.bilibili.com/tv/\\\",\\\"type\\\":\\\"first\\\",\\\"icon\\\":\\\"ChannelTeleplay\\\"}\",\"channel_list.variety\":\"{\\n \\\"name\\\": \\\"综艺\\\",\\n \\\"channelId\\\": 6,\\n \\\"icon\\\": \\\"ChannelZongyi\\\",\\n \\\"url\\\": \\\"//www.bilibili.com/variety/\\\"\\n}\",\"channel_list.virtual\":\"{\\\"channelId\\\":31,\\\"name\\\":\\\"虚拟UP主\\\",\\\"icon\\\":\\\"ChannelVtuber\\\",\\\"url\\\":\\\"//www.bilibili.com/v/virtual\\\"}\",\"channel_list.vlog\":\"{\\\"name\\\":\\\"VLOG\\\",\\\"channelId\\\":19,\\\"url\\\":\\\"//www.bilibili.com/v/life/daily/?tag=530003\\\",\\\"icon\\\":\\\"ChannelVlog\\\"}\",\"side_channel_list.activity\":\"{\\\"name\\\":\\\"活动\\\",\\\"channelId\\\":28,\\\"url\\\":\\\"//www.bilibili.com/blackboard/activity-list.html?\\\",\\\"icon\\\":\\\"ChannelActivity\\\",\\\"sideIcon\\\":\\\"SideActivityIcon\\\"}\",\"side_channel_list.cheese\":\"{\\\"name\\\":\\\"课堂\\\",\\\"channelId\\\":27,\\\"url\\\":\\\"//www.bilibili.com/cheese/\\\",\\\"icon\\\":\\\"ChannelZhishi\\\",\\\"sideIcon\\\":\\\"SideCheeseIcon\\\",\\\"sub\\\":[{\\\"name\\\":\\\"通识科普\\\",\\\"subChannelId\\\":270001,\\\"url\\\":\\\"https://www.bilibili.com/cheese/category?first=95&csource=Channel_class\\\"},{\\\"name\\\":\\\"兴趣生活\\\",\\\"subChannelId\\\":270008,\\\"url\\\":\\\"https://www.bilibili.com/cheese/category?first=94&csource=Channel_class\\\"},{\\\"name\\\":\\\"语言学习\\\",\\\"subChannelId\\\":270002,\\\"url\\\":\\\"https://www.bilibili.com/cheese/category?first=93&csource=Channel_class\\\"},{\\\"name\\\":\\\"考研\\\",\\\"subChannelId\\\":270003,\\\"url\\\":\\\"https://www.bilibili.com/cheese/category?first=88&csource=Channel_class\\\"},{\\\"name\\\":\\\"考试考证\\\",\\\"subChannelId\\\":270005,\\\"url\\\":\\\"https://www.bilibili.com/cheese/category?first=87&csource=Channel_class\\\"},{\\\"name\\\":\\\"影视·创作\\\",\\\"subChannelId\\\":270012,\\\"url\\\":\\\"https://www.bilibili.com/cheese/category?first=164&csource=Channel_class\\\"},{\\\"name\\\":\\\"IT互联网\\\",\\\"subChannelId\\\":270007,\\\"url\\\":\\\"https://www.bilibili.com/cheese/category?first=89&csource=Channel_class\\\"},{\\\"name\\\":\\\"职业职场\\\",\\\"subChannelId\\\":270009,\\\"url\\\":\\\"https://www.bilibili.com/cheese/category?first=92&csource=Channel_class\\\"},{\\\"name\\\":\\\"个人成长\\\",\\\"subChannelId\\\":270011,\\\"url\\\":\\\"https://www.bilibili.com/cheese/category?first=181&csource=Channel_class\\\"},{\\\"name\\\":\\\"我的课程\\\",\\\"subChannelId\\\":270010,\\\"url\\\":\\\"https://www.bilibili.com/cheese/mine/list?csource=Channel_class\\\"}]}\",\"side_channel_list.live\":\"{\\n \\\"name\\\": \\\"直播\\\",\\n \\\"channelId\\\": 1,\\n \\\"url\\\": \\\"//live.bilibili.com\\\",\\n \\\"icon\\\": \\\"ChannelLive\\\",\\n \\\"sideIcon\\\": \\\"SideLiveIcon\\\",\\n \\\"sub\\\": [\\n {\\n \\\"subChannelId\\\": 10001,\\n \\\"name\\\": \\\"全部\\\",\\n \\\"url\\\": \\\"//live.bilibili.com/all?visit_id=5icxsa0kmts0\\\"\\n },\\n {\\n \\\"subChannelId\\\": 10002,\\n \\\"name\\\": \\\"网游\\\",\\n \\\"url\\\": \\\"//live.bilibili.com/p/eden/area-tags?parentAreaId=2&areaId=0&visit_id=5icxsa0kmts0#/2/0\\\"\\n },\\n {\\n \\\"subChannelId\\\": 10003,\\n \\\"name\\\": \\\"手游\\\",\\n \\\"url\\\": \\\"//live.bilibili.com/p/eden/area-tags?parentAreaId=3&areaId=0&visit_id=5icxsa0kmts0#/3/0\\\"\\n },\\n {\\n \\\"subChannelId\\\": 10004,\\n \\\"name\\\": \\\"单机\\\",\\n \\\"url\\\": \\\"//live.bilibili.com/p/eden/area-tags?parentAreaId=6&areaId=0\\\"\\n },\\n {\\n \\\"subChannelId\\\": 10005,\\n \\\"name\\\": \\\"娱乐\\\",\\n \\\"url\\\": \\\"//live.bilibili.com/p/eden/area-tags?parentAreaId=1&areaId=0&visit_id=5icxsa0kmts0#/1/0\\\"\\n },\\n {\\n \\\"subChannelId\\\": 10006,\\n \\\"name\\\": \\\"电台\\\",\\n \\\"url\\\": \\\"//live.bilibili.com/p/eden/area-tags?parentAreaId=5&areaId=0&visit_id=5icxsa0kmts0#/5/0\\\"\\n },\\n {\\n \\\"subChannelId\\\": 10007,\\n \\\"name\\\": \\\"虚拟\\\",\\n \\\"url\\\": \\\"//live.bilibili.com/p/eden/area-tags?parentAreaId=9&areaId=0\\\"\\n },\\n {\\n \\\"subChannelId\\\": 10008,\\n \\\"name\\\": \\\"生活\\\",\\n \\\"url\\\": \\\"//live.bilibili.com/p/eden/area-tags?parentAreaId=10&areaId=0\\\"\\n },\\n {\\n \\\"subChannelId\\\": 10009,\\n \\\"name\\\": \\\"知识\\\",\\n \\\"url\\\": \\\"//live.bilibili.com/p/eden/area-tags?parentAreaId=11&areaId=0\\\"\\n },\\n {\\n \\\"subChannelId\\\": 10010,\\n \\\"name\\\": \\\"赛事\\\",\\n \\\"url\\\": \\\"//live.bilibili.com/p/eden/area-tags?parentAreaId=13&areaId=0\\\"\\n },\\n {\\n \\\"subChannelId\\\": 10011,\\n \\\"name\\\": \\\"聊天室\\\",\\n \\\"url\\\": \\\"//live.bilibili.com/p/eden/area-tags?parentAreaId=14&areaId=0\\\"\\n },\\n {\\n \\\"subChannelId\\\": 10012,\\n \\\"name\\\": \\\"互动玩法\\\",\\n \\\"url\\\": \\\"//live.bilibili.com/p/eden/area-tags?parentAreaId=15&areaId=0\\\"\\n }\\n ]\\n}\",\"side_channel_list.musicplus\":\"{\\\"name\\\":\\\"新歌热榜\\\",\\\"channelId\\\":24,\\\"url\\\":\\\"https://music.bilibili.com/pc/music-center/\\\",\\\"icon\\\":\\\"ChannelMusicplus\\\",\\\"sideIcon\\\":\\\"SideHotMusicIcon\\\"}\",\"side_channel_list.read\":\"{ \\\"name\\\": \\\"专栏\\\", \\\"channelId\\\": 26, \\\"url\\\": \\\"//www.bilibili.com/read/home\\\", \\\"icon\\\": \\\"ChannelRead\\\", \\\"sideIcon\\\": \\\"SideArticleIcon\\\"}\",\"side_channel_list.social_center\":\"{ \\\"name\\\": \\\"社区中心\\\", \\\"channelId\\\": 29, \\\"url\\\": \\\"https://www.bilibili.com/blackboard/activity-5zJxM3spoS.html\\\", \\\"icon\\\": \\\"ChannelBlackroom\\\", \\\"sideIcon\\\": \\\"SideBlackboardIcon\\\"}\",\"side_channel_list.sort\":\"[\\\"read\\\",\\\"live\\\",\\\"activity\\\",\\\"cheese\\\",\\\"social_center\\\",\\\"musicplus\\\"]\",\"vip_coupon.monthly_freq\":\"0\"},\"versionId\":\"1750749512217\",\"appVersionId\":\"37035\",\"nscode\":2,\"appKey\":\"333.1339\",\"expires\":2592000000},\"333.1339_1\":{\"timestamp\":1773117292557,\"lastUsed\":1773117292557,\"value\":{\"fallback.dft\":\"5\",\"fallback.i\":\"[1,2,2]\",\"fallback.on\":\"1\"},\"versionId\":\"1739341305266\",\"appVersionId\":\"37035\",\"nscode\":1,\"appKey\":\"333.1339\",\"expires\":2592000000},\"333.1333_0\":{\"timestamp\":1773117292557,\"lastUsed\":1773117292557,\"value\":{\"bilimirror.minilogin\":\"{\\\"buvid\\\":[\\\"B6771AA6-7CCD-4EF2-BA5B-1FDE9A25F49A49120infoc\\\",\\\"D025573B-8686-0D9D-48DB-0C84BBB5544A45226infoc\\\",\\\"9BD89CEC-4C19-E243-63B3-9A69417B70A458220infoc\\\",\\\"4AD0D8C7-D936-FB67-4C33-7A13C004E84478537infoc\\\",\\\"84AF2B23-9DC9-0717-A474-BCB7A866198994970infoc\\\",\\\"F4373CB5-E491-2C2A-0541-2FFFC3DF2FCC71448infoc\\\"],\\\"rate\\\":0}\",\"bilimirror.toplist\":\"{\\\"playLogUmd\\\":\\\"https://s1.hdslb.com/bfs/static/log-manipulator@0.2.1/index.js\\\",\\\"trackGray\\\":0,\\\"trackGrayV2\\\":1,\\\"resourceStats\\\":{\\\"enabled\\\":true,\\\"sampleRate\\\":0,\\\"rules\\\":[{\\\"key\\\":\\\"333.1007.main.home-page\\\",\\\"sampleRate\\\":5}]}}\",\"bilimirror.whitelist\":\"{\\\"white\\\":{\\\"rejection\\\":[\\\"extension\\\",\\\"maximum\\\",\\\"SVGIconNext\\\"],\\\"error\\\":[\\\"extension\\\",\\\"SVGIconNext\\\"],\\\"resource\\\":[\\\"extension\\\",\\\"localhost\\\"]},\\\"retry\\\":[],\\\"performance\\\":1,\\\"techpv\\\":5,\\\"poll\\\":5,\\\"userLog\\\":[],\\\"track\\\":{\\\"mid\\\":[],\\\"buvid\\\":[]},\\\"trackGrayV2\\\":1}\"},\"versionId\":\"1772162031366\",\"appVersionId\":\"37253\",\"nscode\":0,\"appKey\":\"333.1333\",\"expires\":2592000000},\"333.1007_0\":{\"timestamp\":1773117292704,\"lastUsed\":1773117293127,\"value\":{\"bilimirror.whitelist\":\"{\\\"white\\\":{\\\"rejection\\\":[\\\"extension\\\",\\\"Reached maximum\\\",\\\"timeout\\\",\\\"failed\\\",\\\"aborted\\\",\\\"network\\\"],\\\"error\\\":[\\\"extension\\\",\\\"log-reporter\\\",\\\"static.geetest.com\\\"],\\\"resource\\\":[\\\"extension\\\",\\\"bfs/archive\\\",\\\"bfs/face\\\",\\\"/bfs/sycp/sanlian/image\\\",\\\"/bfs/banner\\\"],\\\"ua\\\":[\\\"bot\\\",\\\"Bot\\\",\\\"spider\\\",\\\"Spider\\\"]},\\\"limitDomain\\\":[\\\"bilibili.com\\\"],\\\"retry\\\":[],\\\"performance\\\":5,\\\"techpv\\\":5,\\\"poll\\\":3,\\\"userLog\\\":[\\\"history\\\",\\\"hash\\\",\\\"dom\\\",\\\"js\\\",\\\"promise\\\",\\\"resource\\\",\\\"white\\\"],\\\"resourceTime\\\":{\\\"API\\\":[],\\\"JS\\\":[],\\\"IMG\\\":[\\\".*hdslb.com/bfs.*\\\\\\\\?mirror_report_banner=1\\\",\\\".*hdslb.com/bfs.*\\\\\\\\?mirror_report_swipe=1\\\"],\\\"CSS\\\":[],\\\"VIDEO\\\":[],\\\"IFRAME\\\":[]},\\\"filterEndjs\\\":true,\\\"captureConfig\\\":{\\\"captureGrayScreenRate\\\":1},\\\"errorLevels\\\":{\\\"whiteScreen\\\":[],\\\"apiError\\\":[],\\\"jsError\\\":[],\\\"rejectionError\\\":[],\\\"resourceError\\\":[]},\\\"microAppError\\\":[{\\\"origin\\\":\\\"main\\\",\\\"module\\\":\\\"home-player\\\",\\\"jsError\\\":[{\\\"condition\\\":[{\\\"field\\\":\\\"stack\\\",\\\"operator\\\":\\\"contains\\\",\\\"value\\\":\\\"/bfs/static/player/main\\\"}]},{\\\"condition\\\":[{\\\"field\\\":\\\"stack\\\",\\\"operator\\\":\\\"contains\\\",\\\"value\\\":\\\"/bfs/static/nc\\\"}]}],\\\"rejectionError\\\":[{\\\"condition\\\":[{\\\"field\\\":\\\"stack\\\",\\\"operator\\\":\\\"contains\\\",\\\"value\\\":\\\"/bfs/static/player/main\\\"}]},{\\\"condition\\\":[{\\\"field\\\":\\\"stack\\\",\\\"operator\\\":\\\"contains\\\",\\\"value\\\":\\\"/bfs/static/nc\\\"}]}]},{\\\"origin\\\":\\\"main\\\",\\\"module\\\":\\\"bili-header\\\",\\\"jsError\\\":[],\\\"rejectionError\\\":[{\\\"condition\\\":[{\\\"field\\\":\\\"stack\\\",\\\"operator\\\":\\\"contains\\\",\\\"value\\\":\\\"bili-header\\\"}]}]}]}\",\"download_guide.bgroup_member\":\"{\\\"name\\\":\\\"pc客户端引流2025年2月\\\",\\\"dimension\\\":\\\"1\\\",\\\"business\\\":\\\"titan\\\"}\",\"download_guide.days_to_wait\":\"30\",\"fixed_ad.data\":\"{\\\"img\\\":\\\"https://i0.hdslb.com/bfs/activity-plat/static/20251216/aafcb8031fd171c428daaa9b45867226/hQLBQg31y8.jpg\\\",\\\"icon\\\":\\\"https://i0.hdslb.com/bfs/static/jinkela/long/fixed_ad/icon_0303.png\\\",\\\"jump_url\\\":\\\"https://game.bilibili.com/nslg/1.5znzty/\\\",\\\"frequency_day\\\":3,\\\"threshold\\\":[1765987200000,1766073599000]}\",\"rcmd_swiper.live_config\":\"{\\\"spending\\\":10,\\\"consume\\\":30,\\\"spending_for_room\\\":5000,\\\"consume_for_room\\\":30,\\\"relation_chain_score\\\":0.1}\",\"rcmd_swiper.targeted_delivery\":\"{\\\"banner\\\":{\\\"img\\\":\\\"https://i0.hdslb.com/bfs/activity-plat/static/20250121/aafcb8031fd171c428daaa9b45867226/DGMRb06CFv.jpg\\\",\\\"url\\\":\\\"https://live.bilibili.com/festival/bnj2025/\\\",\\\"title\\\":\\\"2025拜年纪火热直播中!\\\",\\\"threshold\\\":[1738063800000,1738075800000]},\\\"bgroup\\\":{\\\"name\\\":\\\"拜年纪插帧banner\\\",\\\"dimension\\\":\\\"1\\\",\\\"business\\\":\\\"titan\\\"}}\",\"watchlater_pip.add_wl_toast_interval\":\"7\",\"watchlater_pip.toast_timeout\":\"5\"},\"versionId\":\"1765874112802\",\"appVersionId\":\"36150\",\"nscode\":0,\"appKey\":\"333.1007\",\"expires\":2592000000},\"333.1339_10\":{\"timestamp\":1773117292932,\"lastUsed\":1773117292932,\"value\":{\"channel_list.ai\":\"{\\\"channelId\\\":25,\\\"tid\\\":1011,\\\"route\\\":\\\"ai\\\",\\\"name\\\":\\\"人工智能\\\",\\\"tkey\\\":\\\"CommonChannel:ai\\\",\\\"url\\\":\\\"//www.bilibili.com/c/ai/\\\",\\\"icon\\\":\\\"homeicon/ai/1\\\",\\\"sub\\\":[{\\\"subChannelId\\\":250001,\\\"tid\\\":2096,\\\"route\\\":\\\"tutorial\\\",\\\"name\\\":\\\"AI学习\\\",\\\"tkey\\\":\\\"CommonChannel:aiTutorial\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":250002,\\\"tid\\\":2097,\\\"route\\\":\\\"information\\\",\\\"name\\\":\\\"AI资讯\\\",\\\"tkey\\\":\\\"CommonChannel:aiInfo\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":250003,\\\"tid\\\":2098,\\\"route\\\":\\\"other\\\",\\\"name\\\":\\\"AI杂谈\\\",\\\"tkey\\\":\\\"CommonChannel:aiOther\\\",\\\"url\\\":\\\"\\\"}],\\\"config\\\":{\\\"enableSub\\\":0}}\",\"channel_list.all\":\"{\\\"tid\\\":0,\\\"name\\\":\\\"全部\\\",\\\"tkey\\\":\\\"CommomChannel:all\\\",\\\"route\\\":\\\"all\\\",\\\"sub\\\":[]}\",\"channel_list.animal\":\"{\\\"channelId\\\":22,\\\"tid\\\":1024,\\\"route\\\":\\\"animal\\\",\\\"name\\\":\\\"动物\\\",\\\"tkey\\\":\\\"CommonChannel:animal\\\",\\\"url\\\":\\\"//www.bilibili.com/c/animal/\\\",\\\"icon\\\":\\\"homeicon/animal/1\\\",\\\"sub\\\":[{\\\"subChannelId\\\":220001,\\\"tid\\\":2167,\\\"route\\\":\\\"cat\\\",\\\"name\\\":\\\"猫\\\",\\\"tkey\\\":\\\"CommonChannel:animalCat\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":220002,\\\"tid\\\":2168,\\\"route\\\":\\\"dog\\\",\\\"name\\\":\\\"狗\\\",\\\"tkey\\\":\\\"CommonChannel:animalDog\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":220003,\\\"tid\\\":2169,\\\"route\\\":\\\"reptiles\\\",\\\"name\\\":\\\"小宠异宠\\\",\\\"tkey\\\":\\\"CommonChannel:animalReptiles\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":220004,\\\"tid\\\":2170,\\\"route\\\":\\\"science\\\",\\\"name\\\":\\\"野生动物·动物解说科普\\\",\\\"tkey\\\":\\\"CommonChannel:animalScience\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":220005,\\\"tid\\\":2171,\\\"route\\\":\\\"other\\\",\\\"name\\\":\\\"动物综合·二创\\\",\\\"tkey\\\":\\\"CommonChannel:animalOther\\\",\\\"url\\\":\\\"\\\"}],\\\"config\\\":{\\\"enableSub\\\":0}}\",\"channel_list.anime\":\"{\\\"channelId\\\":1,\\\"seasonType\\\":1,\\\"tid\\\":0,\\\"route\\\":\\\"anime\\\",\\\"name\\\":\\\"番剧\\\",\\\"tkey\\\":\\\"CommonChannel:anime\\\",\\\"url\\\":\\\"//www.bilibili.com/anime/\\\",\\\"icon\\\":\\\"homeicon/anime/1\\\",\\\"sub\\\":[{\\\"subChannelId\\\":10001,\\\"tid\\\":0,\\\"route\\\":\\\"timeline\\\",\\\"name\\\":\\\"新番时间表\\\",\\\"tkey\\\":\\\"CommonChannel:aniTimeline\\\",\\\"url\\\":\\\"//www.bilibili.com/anime/timeline/\\\"},{\\\"subChannelId\\\":10002,\\\"tid\\\":0,\\\"route\\\":\\\"index\\\",\\\"name\\\":\\\"番剧索引\\\",\\\"tkey\\\":\\\"CommonChannel:aniIndex\\\",\\\"url\\\":\\\"//www.bilibili.com/anime/index/\\\"}],\\\"config\\\":{\\\"enableSub\\\":1}}\",\"channel_list.car\":\"{\\\"channelId\\\":19,\\\"tid\\\":1013,\\\"route\\\":\\\"car\\\",\\\"name\\\":\\\"汽车\\\",\\\"tkey\\\":\\\"CommonChannel:car\\\",\\\"url\\\":\\\"//www.bilibili.com/c/car\\\",\\\"icon\\\":\\\"homeicon/car/1\\\",\\\"sub\\\":[{\\\"subChannelId\\\":190001,\\\"tid\\\":2106,\\\"route\\\":\\\"commentary\\\",\\\"name\\\":\\\"汽车测评\\\",\\\"tkey\\\":\\\"CommonChannel:carComment\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":190002,\\\"tid\\\":2107,\\\"route\\\":\\\"culture\\\",\\\"name\\\":\\\"汽车文化\\\",\\\"tkey\\\":\\\"CommonChannel:carCulture\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":190003,\\\"tid\\\":2108,\\\"route\\\":\\\"life\\\",\\\"name\\\":\\\"汽车生活\\\",\\\"tkey\\\":\\\"CommonChannel:carLife\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":190004,\\\"tid\\\":2109,\\\"route\\\":\\\"tech\\\",\\\"name\\\":\\\"汽车技术\\\",\\\"tkey\\\":\\\"CommonChannel:carTech\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":190005,\\\"tid\\\":2110,\\\"route\\\":\\\"other\\\",\\\"name\\\":\\\"汽车综合\\\",\\\"tkey\\\":\\\"CommonChannel:carOther\\\",\\\"url\\\":\\\"\\\"}],\\\"config\\\":{\\\"enableSub\\\":0}}\",\"channel_list.cinephile\":\"{\\\"channelId\\\":12,\\\"tid\\\":1001,\\\"route\\\":\\\"cinephile\\\",\\\"name\\\":\\\"影视\\\",\\\"tkey\\\":\\\"CommonChannel:cinephile\\\",\\\"url\\\":\\\"//www.bilibili.com/c/cinephile/\\\",\\\"icon\\\":\\\"homeicon/cinephile/1\\\",\\\"sub\\\":[{\\\"subChannelId\\\":120001,\\\"tid\\\":2001,\\\"route\\\":\\\"commentary\\\",\\\"name\\\":\\\"影视解读\\\",\\\"tkey\\\":\\\"CommonChannel:cineComment\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":120002,\\\"tid\\\":2002,\\\"route\\\":\\\"montage\\\",\\\"name\\\":\\\"影视剪辑\\\",\\\"tkey\\\":\\\"CommonChannel:cineMontage\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":120003,\\\"tid\\\":2003,\\\"route\\\":\\\"information\\\",\\\"name\\\":\\\"影视资讯\\\",\\\"tkey\\\":\\\"CommonChannel:cineInfo\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":120004,\\\"tid\\\":2004,\\\"route\\\":\\\"porterage\\\",\\\"name\\\":\\\"影视正片搬运\\\",\\\"tkey\\\":\\\"CommonChannel:cinePorterage\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":120005,\\\"tid\\\":2005,\\\"route\\\":\\\"shortfilm\\\",\\\"name\\\":\\\"短剧短片\\\",\\\"tkey\\\":\\\"CommonChannel:cineShortfilm\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":120006,\\\"tid\\\":2006,\\\"route\\\":\\\"ai\\\",\\\"name\\\":\\\"AI影视\\\",\\\"tkey\\\":\\\"CommonChannel:cineAi\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":120007,\\\"tid\\\":2007,\\\"route\\\":\\\"reaction\\\",\\\"name\\\":\\\"影视reaction\\\",\\\"tkey\\\":\\\"CommonChannel:cineReaction\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":120008,\\\"tid\\\":2008,\\\"route\\\":\\\"other\\\",\\\"name\\\":\\\"影视综合\\\",\\\"tkey\\\":\\\"CommonChannel:cineOther\\\",\\\"url\\\":\\\"\\\"}],\\\"config\\\":{\\\"enableSub\\\":0}}\",\"channel_list.dance\":\"{\\\"channelId\\\":11,\\\"tid\\\":1004,\\\"route\\\":\\\"dance\\\",\\\"name\\\":\\\"舞蹈\\\",\\\"tkey\\\":\\\"CommonChannel:dance\\\",\\\"url\\\":\\\"//www.bilibili.com/c/dance/\\\",\\\"icon\\\":\\\"homeicon/dance/1\\\",\\\"sub\\\":[{\\\"subChannelId\\\":110001,\\\"tid\\\":2028,\\\"route\\\":\\\"otaku\\\",\\\"name\\\":\\\"宅舞\\\",\\\"tkey\\\":\\\"CommonChannel:danOtaku\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":110002,\\\"tid\\\":2029,\\\"route\\\":\\\"hiphop\\\",\\\"name\\\":\\\"街舞\\\",\\\"tkey\\\":\\\"CommonChannel:danHiphop\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":110003,\\\"tid\\\":2030,\\\"route\\\":\\\"gestures\\\",\\\"name\\\":\\\"颜值·网红舞\\\",\\\"tkey\\\":\\\"CommonChannel:danGestures\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":110004,\\\"tid\\\":2031,\\\"route\\\":\\\"star\\\",\\\"name\\\":\\\"明星舞蹈\\\",\\\"tkey\\\":\\\"CommonChannel:danStar\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":110005,\\\"tid\\\":2032,\\\"route\\\":\\\"china\\\",\\\"name\\\":\\\"国风舞蹈\\\",\\\"tkey\\\":\\\"CommonChannel:danChina\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":110006,\\\"tid\\\":2033,\\\"route\\\":\\\"tutorial\\\",\\\"name\\\":\\\"舞蹈教学\\\",\\\"tkey\\\":\\\"CommonChannel:danTutorial\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":110007,\\\"tid\\\":2034,\\\"route\\\":\\\"ballet\\\",\\\"name\\\":\\\"芭蕾舞\\\",\\\"tkey\\\":\\\"CommonChannel:danBallet\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":110008,\\\"tid\\\":2035,\\\"route\\\":\\\"wota\\\",\\\"name\\\":\\\"wota艺\\\",\\\"tkey\\\":\\\"CommonChannel:danWota\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":110009,\\\"tid\\\":2036,\\\"route\\\":\\\"other\\\",\\\"name\\\":\\\"舞蹈综合\\\",\\\"tkey\\\":\\\"CommonChannel:danOther\\\",\\\"url\\\":\\\"\\\"}],\\\"config\\\":{\\\"enableSub\\\":0}}\",\"channel_list.documentary\":\"{\\\"channelId\\\":6,\\\"seasonType\\\":3,\\\"tid\\\":0,\\\"route\\\":\\\"documentary\\\",\\\"name\\\":\\\"纪录片\\\",\\\"tkey\\\":\\\"CommonChannel:documentary\\\",\\\"url\\\":\\\"//www.bilibili.com/documentary/\\\",\\\"icon\\\":\\\"homeicon/documentary/1\\\",\\\"sub\\\":[],\\\"config\\\":{\\\"enableSub\\\":1}}\",\"channel_list.douga\":\"{\\\"channelId\\\":7,\\\"tid\\\":1005,\\\"route\\\":\\\"douga\\\",\\\"name\\\":\\\"动画\\\",\\\"tkey\\\":\\\"CommonChannel:douga\\\",\\\"url\\\":\\\"//www.bilibili.com/c/douga/\\\",\\\"icon\\\":\\\"homeicon/douga/1\\\",\\\"sub\\\":[{\\\"subChannelId\\\":70001,\\\"tid\\\":2037,\\\"route\\\":\\\"fan_anime\\\",\\\"name\\\":\\\"同人动画\\\",\\\"tkey\\\":\\\"CommonChannel:dgFanAnime\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":70002,\\\"tid\\\":2038,\\\"route\\\":\\\"garage_kit\\\",\\\"name\\\":\\\"模玩周边\\\",\\\"tkey\\\":\\\"CommonChannel:dgGarageKit\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":70003,\\\"tid\\\":2039,\\\"route\\\":\\\"cosplay\\\",\\\"name\\\":\\\"cosplay\\\",\\\"tkey\\\":\\\"CommonChannel:dgCos\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":70004,\\\"tid\\\":2040,\\\"route\\\":\\\"offline\\\",\\\"name\\\":\\\"二次元线下\\\",\\\"tkey\\\":\\\"CommonChannel:dgOffline\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":70005,\\\"tid\\\":2041,\\\"route\\\":\\\"editing\\\",\\\"name\\\":\\\"动漫剪辑\\\",\\\"tkey\\\":\\\"CommonChannel:dgEditing\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":70006,\\\"tid\\\":2042,\\\"route\\\":\\\"commentary\\\",\\\"name\\\":\\\"动漫评论\\\",\\\"tkey\\\":\\\"CommonChannel:dgComment\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":70007,\\\"tid\\\":2043,\\\"route\\\":\\\"quick_view\\\",\\\"name\\\":\\\"动漫速读\\\",\\\"tkey\\\":\\\"CommonChannel:dgQuickView\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":70008,\\\"tid\\\":2044,\\\"route\\\":\\\"voice\\\",\\\"name\\\":\\\"动漫配音\\\",\\\"tkey\\\":\\\"CommonChannel:dgVoice\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":70009,\\\"tid\\\":2045,\\\"route\\\":\\\"information\\\",\\\"name\\\":\\\"动漫资讯\\\",\\\"tkey\\\":\\\"CommonChannel:dgInfo\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":70010,\\\"tid\\\":2046,\\\"route\\\":\\\"interpret\\\",\\\"name\\\":\\\"网文解读\\\",\\\"tkey\\\":\\\"CommonChannel:dgInterpret\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":70011,\\\"tid\\\":2047,\\\"route\\\":\\\"vup\\\",\\\"name\\\":\\\"虚拟up主\\\",\\\"tkey\\\":\\\"CommonChannel:dgVup\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":70012,\\\"tid\\\":2048,\\\"route\\\":\\\"tokusatsu\\\",\\\"name\\\":\\\"特摄\\\",\\\"tkey\\\":\\\"CommonChannel:dgTokusatsu\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":70013,\\\"tid\\\":2049,\\\"route\\\":\\\"puppetry\\\",\\\"name\\\":\\\"布袋戏\\\",\\\"tkey\\\":\\\"CommonChannel:dgPuppetry\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":70014,\\\"tid\\\":2050,\\\"route\\\":\\\"comic\\\",\\\"name\\\":\\\"漫画·动态漫\\\",\\\"tkey\\\":\\\"CommonChannel:dgComic\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":70015,\\\"tid\\\":2051,\\\"route\\\":\\\"motion\\\",\\\"name\\\":\\\"广播剧\\\",\\\"tkey\\\":\\\"CommonChannel:dgMotion\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":70016,\\\"tid\\\":2052,\\\"route\\\":\\\"reaction\\\",\\\"name\\\":\\\"动漫reaction\\\",\\\"tkey\\\":\\\"CommonChannel:dgReaction\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":70017,\\\"tid\\\":2053,\\\"route\\\":\\\"tutorial\\\",\\\"name\\\":\\\"动漫教学\\\",\\\"tkey\\\":\\\"CommonChannel:dgTutorial\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":70018,\\\"tid\\\":2054,\\\"route\\\":\\\"other\\\",\\\"name\\\":\\\"二次元其他\\\",\\\"tkey\\\":\\\"CommonChannel:dgOther\\\",\\\"url\\\":\\\"\\\"}],\\\"config\\\":{\\\"enableSub\\\":0}}\",\"channel_list.emotion\":\"{\\\"channelId\\\":34,\\\"tid\\\":1027,\\\"route\\\":\\\"emotion\\\",\\\"name\\\":\\\"情感\\\",\\\"tkey\\\":\\\"CommonChannel:emotion\\\",\\\"url\\\":\\\"//www.bilibili.com/c/emotion/\\\",\\\"icon\\\":\\\"homeicon/emotion/1\\\",\\\"sub\\\":[{\\\"subChannelId\\\":340001,\\\"tid\\\":2185,\\\"route\\\":\\\"family\\\",\\\"name\\\":\\\"家庭关系\\\",\\\"tkey\\\":\\\"CommonChannel:emoFamily\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":340002,\\\"tid\\\":2186,\\\"route\\\":\\\"romantic\\\",\\\"name\\\":\\\"恋爱关系\\\",\\\"tkey\\\":\\\"CommonChannel:emoRomantic\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":340003,\\\"tid\\\":2187,\\\"route\\\":\\\"interpersonal\\\",\\\"name\\\":\\\"人际关系\\\",\\\"tkey\\\":\\\"CommonChannel:emoInter\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":340004,\\\"tid\\\":2188,\\\"route\\\":\\\"growth\\\",\\\"name\\\":\\\"自我成长\\\",\\\"tkey\\\":\\\"CommonChannel:emoGrowth\\\",\\\"url\\\":\\\"\\\"}],\\\"config\\\":{\\\"enableSub\\\":0}}\",\"channel_list.ent\":\"{\\\"channelId\\\":13,\\\"tid\\\":1002,\\\"route\\\":\\\"ent\\\",\\\"name\\\":\\\"娱乐\\\",\\\"tkey\\\":\\\"CommonChannel:ent\\\",\\\"url\\\":\\\"//www.bilibili.com/c/ent/\\\",\\\"icon\\\":\\\"homeicon/entertainment/1\\\",\\\"sub\\\":[{\\\"subChannelId\\\":130001,\\\"tid\\\":2009,\\\"route\\\":\\\"commentary\\\",\\\"name\\\":\\\"娱乐评论\\\",\\\"tkey\\\":\\\"CommonChannel:entComment\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":130002,\\\"tid\\\":2010,\\\"route\\\":\\\"montage\\\",\\\"name\\\":\\\"明星剪辑\\\",\\\"tkey\\\":\\\"CommonChannel:entMontage\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":130003,\\\"tid\\\":2011,\\\"route\\\":\\\"fans_video\\\",\\\"name\\\":\\\"娱乐饭拍&现场\\\",\\\"tkey\\\":\\\"CommonChannel:entFan\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":130004,\\\"tid\\\":2012,\\\"route\\\":\\\"information\\\",\\\"name\\\":\\\"娱乐资讯\\\",\\\"tkey\\\":\\\"CommonChannel:entInfo\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":130005,\\\"tid\\\":2013,\\\"route\\\":\\\"reaction\\\",\\\"name\\\":\\\"娱乐reaction\\\",\\\"tkey\\\":\\\"CommonChannel:entReaction\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":130006,\\\"tid\\\":2014,\\\"route\\\":\\\"variety\\\",\\\"name\\\":\\\"娱乐综艺正片\\\",\\\"tkey\\\":\\\"CommonChannel:entVariety\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":130007,\\\"tid\\\":2015,\\\"route\\\":\\\"other\\\",\\\"name\\\":\\\"娱乐综合\\\",\\\"tkey\\\":\\\"CommonChannel:entOther\\\",\\\"url\\\":\\\"\\\"}],\\\"config\\\":{\\\"enableSub\\\":0}}\",\"channel_list.fashion\":\"{\\\"channelId\\\":20,\\\"tid\\\":1014,\\\"route\\\":\\\"fashion\\\",\\\"name\\\":\\\"时尚美妆\\\",\\\"tkey\\\":\\\"CommonChannel:fashion\\\",\\\"url\\\":\\\"//www.bilibili.com/c/fashion/\\\",\\\"icon\\\":\\\"homeicon/fashion/1\\\",\\\"sub\\\":[{\\\"subChannelId\\\":200001,\\\"tid\\\":2111,\\\"route\\\":\\\"makeup\\\",\\\"name\\\":\\\"美妆\\\",\\\"tkey\\\":\\\"CommonChannel:fasMakeup\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":200002,\\\"tid\\\":2112,\\\"route\\\":\\\"skincare\\\",\\\"name\\\":\\\"护肤\\\",\\\"tkey\\\":\\\"CommonChannel:fasSkincare\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":200003,\\\"tid\\\":2113,\\\"route\\\":\\\"cos\\\",\\\"name\\\":\\\"仿装cos\\\",\\\"tkey\\\":\\\"CommonChannel:fasCos\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":200004,\\\"tid\\\":2114,\\\"route\\\":\\\"outfits\\\",\\\"name\\\":\\\"鞋服穿搭\\\",\\\"tkey\\\":\\\"CommonChannel:fasOutfits\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":200005,\\\"tid\\\":2115,\\\"route\\\":\\\"accessories\\\",\\\"name\\\":\\\"箱包配饰\\\",\\\"tkey\\\":\\\"CommonChannel:fasAccessories\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":200006,\\\"tid\\\":2116,\\\"route\\\":\\\"jewelry\\\",\\\"name\\\":\\\"珠宝首饰\\\",\\\"tkey\\\":\\\"CommonChannel:fasJewelry\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":200007,\\\"tid\\\":2117,\\\"route\\\":\\\"trick\\\",\\\"name\\\":\\\"三坑\\\",\\\"tkey\\\":\\\"CommonChannel:fasTrick\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":200008,\\\"tid\\\":2118,\\\"route\\\":\\\"commentary\\\",\\\"name\\\":\\\"时尚解读\\\",\\\"tkey\\\":\\\"CommonChannel:fasComment\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":200009,\\\"tid\\\":2119,\\\"route\\\":\\\"other\\\",\\\"name\\\":\\\"时尚综合\\\",\\\"tkey\\\":\\\"CommonChannel:fasOther\\\",\\\"url\\\":\\\"\\\"}],\\\"config\\\":{\\\"enableSub\\\":0}}\",\"channel_list.food\":\"{\\\"channelId\\\":17,\\\"tid\\\":1020,\\\"route\\\":\\\"food\\\",\\\"name\\\":\\\"美食\\\",\\\"tkey\\\":\\\"CommonChannel:food\\\",\\\"url\\\":\\\"//www.bilibili.com/c/food/\\\",\\\"icon\\\":\\\"homeicon/food/1\\\",\\\"sub\\\":[{\\\"subChannelId\\\":170001,\\\"tid\\\":2149,\\\"route\\\":\\\"make\\\",\\\"name\\\":\\\"美食制作\\\",\\\"tkey\\\":\\\"CommonChannel:foodMake\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":170002,\\\"tid\\\":2150,\\\"route\\\":\\\"detective\\\",\\\"name\\\":\\\"美食探店\\\",\\\"tkey\\\":\\\"CommonChannel:foodDetective\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":170003,\\\"tid\\\":2151,\\\"route\\\":\\\"commentary\\\",\\\"name\\\":\\\"美食测评\\\",\\\"tkey\\\":\\\"CommonChannel:foodComment\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":170004,\\\"tid\\\":2152,\\\"route\\\":\\\"record\\\",\\\"name\\\":\\\"美食记录\\\",\\\"tkey\\\":\\\"CommonChannel:foodRecord\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":170005,\\\"tid\\\":2153,\\\"route\\\":\\\"other\\\",\\\"name\\\":\\\"美食综合\\\",\\\"tkey\\\":\\\"CommonChannel:foodOther\\\",\\\"url\\\":\\\"\\\"}],\\\"config\\\":{\\\"enableSub\\\":0}}\",\"channel_list.game\":\"{\\\"channelId\\\":8,\\\"tid\\\":1008,\\\"route\\\":\\\"game\\\",\\\"name\\\":\\\"游戏\\\",\\\"tkey\\\":\\\"CommonChannel:game\\\",\\\"url\\\":\\\"//www.bilibili.com/c/game/\\\",\\\"icon\\\":\\\"homeicon/game/1\\\",\\\"sub\\\":[{\\\"subChannelId\\\":80001,\\\"tid\\\":2064,\\\"route\\\":\\\"rpg\\\",\\\"name\\\":\\\"单人RPG游戏\\\",\\\"tkey\\\":\\\"CommonChannel:gameRpg\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":80002,\\\"tid\\\":2065,\\\"route\\\":\\\"mmorpg\\\",\\\"name\\\":\\\"MMORPG游戏\\\",\\\"tkey\\\":\\\"CommonChannel:gameMmorpg\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":80003,\\\"tid\\\":2066,\\\"route\\\":\\\"stand_alone\\\",\\\"name\\\":\\\"单机主机类游戏\\\",\\\"tkey\\\":\\\"CommonChannel:gameStandAlone\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":80004,\\\"tid\\\":2067,\\\"route\\\":\\\"slg\\\",\\\"name\\\":\\\"SLG游戏\\\",\\\"tkey\\\":\\\"CommonChannel:gameSlg\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":80005,\\\"tid\\\":2068,\\\"route\\\":\\\"tbs\\\",\\\"name\\\":\\\"回合制策略游戏\\\",\\\"tkey\\\":\\\"CommonChannel:gameTbs\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":80006,\\\"tid\\\":2069,\\\"route\\\":\\\"rts\\\",\\\"name\\\":\\\"即时策略游戏\\\",\\\"tkey\\\":\\\"CommonChannel:gameRts\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":80007,\\\"tid\\\":2070,\\\"route\\\":\\\"moba\\\",\\\"name\\\":\\\"MOBA游戏\\\",\\\"tkey\\\":\\\"CommonChannel:gameMoba\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":80008,\\\"tid\\\":2071,\\\"route\\\":\\\"stg\\\",\\\"name\\\":\\\"射击游戏\\\",\\\"tkey\\\":\\\"CommonChannel:gameStg\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":80009,\\\"tid\\\":2072,\\\"route\\\":\\\"spg\\\",\\\"name\\\":\\\"体育竞速游戏\\\",\\\"tkey\\\":\\\"CommonChannel:gameSpg\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":80010,\\\"tid\\\":2073,\\\"route\\\":\\\"act\\\",\\\"name\\\":\\\"动作竞技游戏\\\",\\\"tkey\\\":\\\"CommonChannel:gameAct\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":80011,\\\"tid\\\":2074,\\\"route\\\":\\\"msc\\\",\\\"name\\\":\\\"音游舞游\\\",\\\"tkey\\\":\\\"CommonChannel:gameMsc\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":80012,\\\"tid\\\":2075,\\\"route\\\":\\\"sim\\\",\\\"name\\\":\\\"模拟经营游戏\\\",\\\"tkey\\\":\\\"CommonChannel:gameSim\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":80013,\\\"tid\\\":2076,\\\"route\\\":\\\"otome\\\",\\\"name\\\":\\\"女性向游戏\\\",\\\"tkey\\\":\\\"CommonChannel:gameOtome\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":80014,\\\"tid\\\":2077,\\\"route\\\":\\\"puz\\\",\\\"name\\\":\\\"休闲/小游戏\\\",\\\"tkey\\\":\\\"CommonChannel:gamePuz\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":80015,\\\"tid\\\":2078,\\\"route\\\":\\\"sandbox\\\",\\\"name\\\":\\\"沙盒类\\\",\\\"tkey\\\":\\\"CommonChannel:gameSandbox\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":80016,\\\"tid\\\":2079,\\\"route\\\":\\\"other\\\",\\\"name\\\":\\\"其他游戏\\\",\\\"tkey\\\":\\\"CommonChannel:gameOther\\\",\\\"url\\\":\\\"\\\"}],\\\"config\\\":{\\\"enableSub\\\":0}}\",\"channel_list.guochuang\":\"{\\\"channelId\\\":3,\\\"seasonType\\\":4,\\\"tid\\\":0,\\\"route\\\":\\\"guochuang\\\",\\\"name\\\":\\\"国创\\\",\\\"tkey\\\":\\\"CommonChannel:guochuang\\\",\\\"url\\\":\\\"//www.bilibili.com/guochuang/\\\",\\\"icon\\\":\\\"homeicon/guochuang/1\\\",\\\"sub\\\":[{\\\"subChannelId\\\":30001,\\\"tid\\\":0,\\\"route\\\":\\\"timeline\\\",\\\"name\\\":\\\"新番时间表\\\",\\\"tkey\\\":\\\"CommonChannel:gcTimeline\\\",\\\"url\\\":\\\"//www.bilibili.com/guochuang/timeline/\\\"},{\\\"subChannelId\\\":30002,\\\"tid\\\":0,\\\"route\\\":\\\"index\\\",\\\"name\\\":\\\"国产动画索引\\\",\\\"tkey\\\":\\\"CommonChannel:gcIndex\\\",\\\"url\\\":\\\"//www.bilibili.com/guochuang/index/\\\"}],\\\"config\\\":{\\\"enableSub\\\":1}}\",\"channel_list.gym\":\"{\\\"channelId\\\":28,\\\"tid\\\":1017,\\\"route\\\":\\\"gym\\\",\\\"name\\\":\\\"健身\\\",\\\"tkey\\\":\\\"CommonChannel:gym\\\",\\\"url\\\":\\\"//www.bilibili.com/c/gym/\\\",\\\"icon\\\":\\\"homeicon/gym/1\\\",\\\"sub\\\":[{\\\"subChannelId\\\":280001,\\\"tid\\\":2128,\\\"route\\\":\\\"science\\\",\\\"name\\\":\\\"健身科普\\\",\\\"tkey\\\":\\\"CommonChannel:gymScience\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":280002,\\\"tid\\\":2129,\\\"route\\\":\\\"tutorial\\\",\\\"name\\\":\\\"健身跟练教学\\\",\\\"tkey\\\":\\\"CommonChannel:gymTutorial\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":280003,\\\"tid\\\":2130,\\\"route\\\":\\\"record\\\",\\\"name\\\":\\\"健身记录\\\",\\\"tkey\\\":\\\"CommonChannel:gymRecord\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":280004,\\\"tid\\\":2131,\\\"route\\\":\\\"figure\\\",\\\"name\\\":\\\"健身身材展示\\\",\\\"tkey\\\":\\\"CommonChannel:gymFigure\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":280005,\\\"tid\\\":2132,\\\"route\\\":\\\"other\\\",\\\"name\\\":\\\"健身综合\\\",\\\"tkey\\\":\\\"CommonChannel:gymOther\\\",\\\"url\\\":\\\"\\\"}],\\\"config\\\":{\\\"enableSub\\\":0}}\",\"channel_list.handmake\":\"{\\\"channelId\\\":29,\\\"tid\\\":1019,\\\"route\\\":\\\"handmake\\\",\\\"name\\\":\\\"手工\\\",\\\"tkey\\\":\\\"CommonChannel:handmake\\\",\\\"url\\\":\\\"//www.bilibili.com/c/handmake/\\\",\\\"icon\\\":\\\"homeicon/handmake/1\\\",\\\"sub\\\":[{\\\"subChannelId\\\":290001,\\\"tid\\\":2143,\\\"route\\\":\\\"handbook\\\",\\\"name\\\":\\\"文具手帐\\\",\\\"tkey\\\":\\\"CommonChannel:hmHandbook\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":290002,\\\"tid\\\":2144,\\\"route\\\":\\\"light\\\",\\\"name\\\":\\\"轻手作\\\",\\\"tkey\\\":\\\"CommonChannel:hmLight\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":290003,\\\"tid\\\":2145,\\\"route\\\":\\\"traditional\\\",\\\"name\\\":\\\"传统手工艺\\\",\\\"tkey\\\":\\\"CommonChannel:hmTraditional\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":290004,\\\"tid\\\":2146,\\\"route\\\":\\\"relief\\\",\\\"name\\\":\\\"解压手工\\\",\\\"tkey\\\":\\\"CommonChannel:hmRelief\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":290005,\\\"tid\\\":2147,\\\"route\\\":\\\"diy\\\",\\\"name\\\":\\\"DIY玩具\\\",\\\"tkey\\\":\\\"CommonChannel:hmDiy\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":290006,\\\"tid\\\":2148,\\\"route\\\":\\\"other\\\",\\\"name\\\":\\\"其他手工\\\",\\\"tkey\\\":\\\"CommonChannel:hmOther\\\",\\\"url\\\":\\\"\\\"}],\\\"config\\\":{\\\"enableSub\\\":0}}\",\"channel_list.hd\":\"{\\\"channelId\\\":45,\\\"tid\\\":0,\\\"route\\\":\\\"hd\\\",\\\"name\\\":\\\"超高清\\\",\\\"tkey\\\":\\\"CommonChannel:hd\\\",\\\"url\\\":\\\"//www.bilibili.com/blackboard/era/Vp41b8bsU9Wkog3X.html\\\",\\\"icon\\\":\\\"homeicon/hd/1\\\",\\\"sub\\\":[],\\\"config\\\":{\\\"enableSub\\\":0}}\",\"channel_list.health\":\"{\\\"channelId\\\":33,\\\"tid\\\":1026,\\\"route\\\":\\\"health\\\",\\\"name\\\":\\\"健康\\\",\\\"tkey\\\":\\\"CommonChannel:health\\\",\\\"url\\\":\\\"//www.bilibili.com/c/health/\\\",\\\"icon\\\":\\\"homeicon/health/1\\\",\\\"sub\\\":[{\\\"subChannelId\\\":330001,\\\"tid\\\":2179,\\\"route\\\":\\\"science\\\",\\\"name\\\":\\\"健康科普\\\",\\\"tkey\\\":\\\"CommonChannel:healthScience\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":330002,\\\"tid\\\":2180,\\\"route\\\":\\\"regimen\\\",\\\"name\\\":\\\"养生\\\",\\\"tkey\\\":\\\"CommonChannel:healthRegimen\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":330003,\\\"tid\\\":2181,\\\"route\\\":\\\"sexes\\\",\\\"name\\\":\\\"两性知识\\\",\\\"tkey\\\":\\\"CommonChannel:healthSex\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":330004,\\\"tid\\\":2182,\\\"route\\\":\\\"psychology\\\",\\\"name\\\":\\\"心理健康\\\",\\\"tkey\\\":\\\"CommonChannel:healthPsychology\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":330005,\\\"tid\\\":2183,\\\"route\\\":\\\"asmr\\\",\\\"name\\\":\\\"助眠视频·ASMR\\\",\\\"tkey\\\":\\\"CommonChannel:healthAsmr\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":330006,\\\"tid\\\":2184,\\\"route\\\":\\\"other\\\",\\\"name\\\":\\\"医疗保健综合\\\",\\\"tkey\\\":\\\"CommonChannel:healthOther\\\",\\\"url\\\":\\\"\\\"}],\\\"config\\\":{\\\"enableSub\\\":0}}\",\"channel_list.home\":\"{\\\"channelId\\\":26,\\\"tid\\\":1015,\\\"route\\\":\\\"home\\\",\\\"name\\\":\\\"家装房产\\\",\\\"tkey\\\":\\\"CommonChannel:home\\\",\\\"url\\\":\\\"//www.bilibili.com/c/home/\\\",\\\"icon\\\":\\\"homeicon/home/1\\\",\\\"sub\\\":[{\\\"subChannelId\\\":260001,\\\"tid\\\":2120,\\\"route\\\":\\\"trade\\\",\\\"name\\\":\\\"买房租房\\\",\\\"tkey\\\":\\\"CommonChannel:homeTrade\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":260002,\\\"tid\\\":2121,\\\"route\\\":\\\"renovation\\\",\\\"name\\\":\\\"家庭装修\\\",\\\"tkey\\\":\\\"CommonChannel:homeRenovation\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":260003,\\\"tid\\\":2122,\\\"route\\\":\\\"furniture\\\",\\\"name\\\":\\\"家居展示\\\",\\\"tkey\\\":\\\"CommonChannel:homeFurniture\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":260004,\\\"tid\\\":2123,\\\"route\\\":\\\"appliances\\\",\\\"name\\\":\\\"家用电器\\\",\\\"tkey\\\":\\\"CommonChannel:homeAppliances\\\",\\\"url\\\":\\\"\\\"}],\\\"config\\\":{\\\"enableSub\\\":0}}\",\"channel_list.information\":\"{\\\"channelId\\\":16,\\\"tid\\\":1009,\\\"route\\\":\\\"information\\\",\\\"name\\\":\\\"资讯\\\",\\\"tkey\\\":\\\"CommonChannel:information\\\",\\\"url\\\":\\\"//www.bilibili.com/c/information/\\\",\\\"icon\\\":\\\"homeicon/information/1\\\",\\\"sub\\\":[{\\\"subChannelId\\\":160001,\\\"tid\\\":2080,\\\"route\\\":\\\"politics\\\",\\\"name\\\":\\\"时政资讯\\\",\\\"tkey\\\":\\\"CommonChannel:infoPolitics\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":160002,\\\"tid\\\":2081,\\\"route\\\":\\\"overseas\\\",\\\"name\\\":\\\"海外资讯\\\",\\\"tkey\\\":\\\"CommonChannel:infoOverseas\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":160003,\\\"tid\\\":2082,\\\"route\\\":\\\"social\\\",\\\"name\\\":\\\"社会资讯\\\",\\\"tkey\\\":\\\"CommonChannel:infoSocial\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":160004,\\\"tid\\\":2083,\\\"route\\\":\\\"other\\\",\\\"name\\\":\\\"综合资讯\\\",\\\"tkey\\\":\\\"CommonChannel:infoOther\\\",\\\"url\\\":\\\"\\\"}],\\\"config\\\":{\\\"enableSub\\\":0}}\",\"channel_list.kichiku\":\"{\\\"channelId\\\":9,\\\"tid\\\":1007,\\\"route\\\":\\\"kichiku\\\",\\\"name\\\":\\\"鬼畜\\\",\\\"tkey\\\":\\\"CommonChannel:kichiku\\\",\\\"url\\\":\\\"//www.bilibili.com/c/kichiku/\\\",\\\"icon\\\":\\\"homeicon/kichiku/1\\\",\\\"sub\\\":[{\\\"subChannelId\\\":90001,\\\"tid\\\":2059,\\\"route\\\":\\\"guide\\\",\\\"name\\\":\\\"鬼畜调教\\\",\\\"tkey\\\":\\\"CommonChannel:kckGuide\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":90002,\\\"tid\\\":2060,\\\"route\\\":\\\"theatre\\\",\\\"name\\\":\\\"鬼畜剧场\\\",\\\"tkey\\\":\\\"CommonChannel:kckTheatre\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":90003,\\\"tid\\\":2061,\\\"route\\\":\\\"manual_vocaloid\\\",\\\"name\\\":\\\"人力VOCALOID\\\",\\\"tkey\\\":\\\"CommonChannel:kckVocaloid\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":90004,\\\"tid\\\":2062,\\\"route\\\":\\\"mad\\\",\\\"name\\\":\\\"音MAD\\\",\\\"tkey\\\":\\\"CommonChannel:kckMad\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":90005,\\\"tid\\\":2063,\\\"route\\\":\\\"other\\\",\\\"name\\\":\\\"鬼畜综合\\\",\\\"tkey\\\":\\\"CommonChannel:kckOther\\\",\\\"url\\\":\\\"\\\"}],\\\"config\\\":{\\\"enableSub\\\":0}}\",\"channel_list.knowledge\":\"{\\\"channelId\\\":14,\\\"tid\\\":1010,\\\"route\\\":\\\"knowledge\\\",\\\"name\\\":\\\"知识\\\",\\\"tkey\\\":\\\"CommonChannel:knowledge\\\",\\\"url\\\":\\\"//www.bilibili.com/c/knowledge/\\\",\\\"icon\\\":\\\"homeicon/knowledge/1\\\",\\\"sub\\\":[{\\\"subChannelId\\\":140001,\\\"tid\\\":2084,\\\"route\\\":\\\"exam\\\",\\\"name\\\":\\\"应试教育\\\",\\\"tkey\\\":\\\"CommonChannel:knowExam\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":140002,\\\"tid\\\":2085,\\\"route\\\":\\\"lang_skill\\\",\\\"name\\\":\\\"非应试语言学习\\\",\\\"tkey\\\":\\\"CommonChannel:knowLang\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":140003,\\\"tid\\\":2086,\\\"route\\\":\\\"campus\\\",\\\"name\\\":\\\"大学专业知识\\\",\\\"tkey\\\":\\\"CommonChannel:knowCampus\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":140004,\\\"tid\\\":2087,\\\"route\\\":\\\"business\\\",\\\"name\\\":\\\"商业财经\\\",\\\"tkey\\\":\\\"CommonChannel:knowBusiness\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":140005,\\\"tid\\\":2088,\\\"route\\\":\\\"social_observation\\\",\\\"name\\\":\\\"社会观察\\\",\\\"tkey\\\":\\\"CommonChannel:knowSocial\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":140006,\\\"tid\\\":2089,\\\"route\\\":\\\"politics\\\",\\\"name\\\":\\\"时政解读\\\",\\\"tkey\\\":\\\"CommonChannel:knowPolitics\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":140007,\\\"tid\\\":2090,\\\"route\\\":\\\"humanity_history\\\",\\\"name\\\":\\\"人文历史\\\",\\\"tkey\\\":\\\"CommonChannel:knowHumanity\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":140008,\\\"tid\\\":2091,\\\"route\\\":\\\"design\\\",\\\"name\\\":\\\"设计艺术\\\",\\\"tkey\\\":\\\"CommonChannel:knowDesign\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":140009,\\\"tid\\\":2092,\\\"route\\\":\\\"psychology\\\",\\\"name\\\":\\\"心理杂谈\\\",\\\"tkey\\\":\\\"CommonChannel:knowPsychology\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":140010,\\\"tid\\\":2093,\\\"route\\\":\\\"career\\\",\\\"name\\\":\\\"职场发展\\\",\\\"tkey\\\":\\\"CommonChannel:knowCareer\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":140011,\\\"tid\\\":2094,\\\"route\\\":\\\"science\\\",\\\"name\\\":\\\"科学科普\\\",\\\"tkey\\\":\\\"CommonChannel:knowScience\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":140012,\\\"tid\\\":2095,\\\"route\\\":\\\"other\\\",\\\"name\\\":\\\"其他知识杂谈\\\",\\\"tkey\\\":\\\"CommonChannel:knowOther\\\",\\\"url\\\":\\\"\\\"}],\\\"config\\\":{\\\"enableSub\\\":0}}\",\"channel_list.life_experience\":\"{\\\"channelId\\\":36,\\\"tid\\\":1031,\\\"route\\\":\\\"life_experience\\\",\\\"name\\\":\\\"生活经验\\\",\\\"tkey\\\":\\\"CommonChannel:lifeExperience\\\",\\\"url\\\":\\\"//www.bilibili.com/c/life_experience/\\\",\\\"icon\\\":\\\"homeicon/life_experience/1\\\",\\\"sub\\\":[{\\\"subChannelId\\\":360001,\\\"tid\\\":2203,\\\"route\\\":\\\"skills\\\",\\\"name\\\":\\\"生活技能\\\",\\\"tkey\\\":\\\"CommonChannel:lexpSkills\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":360002,\\\"tid\\\":2204,\\\"route\\\":\\\"procedures\\\",\\\"name\\\":\\\"办事流程\\\",\\\"tkey\\\":\\\"CommonChannel:lexpProcedure\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":360003,\\\"tid\\\":2205,\\\"route\\\":\\\"marriage\\\",\\\"name\\\":\\\"婚嫁\\\",\\\"tkey\\\":\\\"CommonChannel:lexpMarriage\\\",\\\"url\\\":\\\"\\\"}],\\\"config\\\":{\\\"enableSub\\\":0}}\",\"channel_list.life_joy\":\"{\\\"channelId\\\":35,\\\"tid\\\":1030,\\\"route\\\":\\\"life_joy\\\",\\\"name\\\":\\\"生活兴趣\\\",\\\"tkey\\\":\\\"CommonChannel:lifeJoy\\\",\\\"url\\\":\\\"//www.bilibili.com/c/life_joy/\\\",\\\"icon\\\":\\\"homeicon/life_joy/1\\\",\\\"sub\\\":[{\\\"subChannelId\\\":350001,\\\"tid\\\":2198,\\\"route\\\":\\\"leisure\\\",\\\"name\\\":\\\"休闲玩乐\\\",\\\"tkey\\\":\\\"CommonChannel:ljoyLeisure\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":350002,\\\"tid\\\":2199,\\\"route\\\":\\\"on_site\\\",\\\"name\\\":\\\"线下演出\\\",\\\"tkey\\\":\\\"CommonChannel:ljoyOnSite\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":350003,\\\"tid\\\":2200,\\\"route\\\":\\\"artistic_products\\\",\\\"name\\\":\\\"文玩文创\\\",\\\"tkey\\\":\\\"CommonChannel:ljoyArtistic\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":350004,\\\"tid\\\":2201,\\\"route\\\":\\\"trendy_toys\\\",\\\"name\\\":\\\"潮玩玩具\\\",\\\"tkey\\\":\\\"CommonChannel:ljoyToy\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":350005,\\\"tid\\\":2202,\\\"route\\\":\\\"other\\\",\\\"name\\\":\\\"兴趣综合\\\",\\\"tkey\\\":\\\"CommonChannel:ljoyOther\\\",\\\"url\\\":\\\"\\\"}],\\\"config\\\":{\\\"enableSub\\\":0}}\",\"channel_list.love\":\"{\\\"channelId\\\":37,\\\"tid\\\":0,\\\"route\\\":\\\"love\\\",\\\"name\\\":\\\"公益\\\",\\\"tkey\\\":\\\"CommonChannel:love\\\",\\\"url\\\":\\\"//love.bilibili.com\\\",\\\"icon\\\":\\\"homeicon/love/1\\\",\\\"sub\\\":[],\\\"config\\\":{\\\"enableSub\\\":0}}\",\"channel_list.movie\":\"{\\\"channelId\\\":2,\\\"seasonType\\\":2,\\\"tid\\\":0,\\\"route\\\":\\\"movie\\\",\\\"name\\\":\\\"电影\\\",\\\"tkey\\\":\\\"CommonChannel:movie\\\",\\\"url\\\":\\\"//www.bilibili.com/movie/\\\",\\\"icon\\\":\\\"homeicon/movie/1\\\",\\\"sub\\\":[],\\\"config\\\":{\\\"enableSub\\\":1}}\",\"channel_list.music\":\"{\\\"channelId\\\":10,\\\"tid\\\":1003,\\\"route\\\":\\\"music\\\",\\\"name\\\":\\\"音乐\\\",\\\"tkey\\\":\\\"CommonChannel:music\\\",\\\"url\\\":\\\"//www.bilibili.com/c/music/\\\",\\\"icon\\\":\\\"homeicon/music/1\\\",\\\"sub\\\":[{\\\"subChannelId\\\":100001,\\\"tid\\\":2016,\\\"route\\\":\\\"original\\\",\\\"name\\\":\\\"原创音乐\\\",\\\"tkey\\\":\\\"CommonChannel:musOriginal\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":100002,\\\"tid\\\":2017,\\\"route\\\":\\\"mv\\\",\\\"name\\\":\\\"MV\\\",\\\"tkey\\\":\\\"CommonChannel:musMv\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":100003,\\\"tid\\\":2018,\\\"route\\\":\\\"live\\\",\\\"name\\\":\\\"音乐现场\\\",\\\"tkey\\\":\\\"CommonChannel:musLive\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":100004,\\\"tid\\\":2019,\\\"route\\\":\\\"fan_videos\\\",\\\"name\\\":\\\"乐迷饭拍\\\",\\\"tkey\\\":\\\"CommonChannel:musFan\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":100005,\\\"tid\\\":2020,\\\"route\\\":\\\"cover\\\",\\\"name\\\":\\\"翻唱\\\",\\\"tkey\\\":\\\"CommonChannel:musCover\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":100006,\\\"tid\\\":2021,\\\"route\\\":\\\"perform\\\",\\\"name\\\":\\\"演奏\\\",\\\"tkey\\\":\\\"CommonChannel:musPerform\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":100007,\\\"tid\\\":2022,\\\"route\\\":\\\"vocaloid\\\",\\\"name\\\":\\\"VOCALOID\\\",\\\"tkey\\\":\\\"CommonChannel:musVocaloid\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":100008,\\\"tid\\\":2023,\\\"route\\\":\\\"ai_music\\\",\\\"name\\\":\\\"AI音乐\\\",\\\"tkey\\\":\\\"CommonChannel:musAi\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":100009,\\\"tid\\\":2024,\\\"route\\\":\\\"radio\\\",\\\"name\\\":\\\"电台·歌单\\\",\\\"tkey\\\":\\\"CommonChannel:musRadio\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":100010,\\\"tid\\\":2025,\\\"route\\\":\\\"tutorial\\\",\\\"name\\\":\\\"音乐教学\\\",\\\"tkey\\\":\\\"CommonChannel:musTutorial\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":100011,\\\"tid\\\":2026,\\\"route\\\":\\\"commentary\\\",\\\"name\\\":\\\"乐评盘点\\\",\\\"tkey\\\":\\\"CommonChannel:musComment\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":100012,\\\"tid\\\":2027,\\\"route\\\":\\\"other\\\",\\\"name\\\":\\\"音乐综合\\\",\\\"tkey\\\":\\\"CommonChannel:musOther\\\",\\\"url\\\":\\\"\\\"}],\\\"config\\\":{\\\"enableSub\\\":0}}\",\"channel_list.mysticism\":\"{\\\"channelId\\\":44,\\\"tid\\\":1028,\\\"route\\\":\\\"mysticism\\\",\\\"name\\\":\\\"神秘学\\\",\\\"tkey\\\":\\\"CommonChannel:mysticism\\\",\\\"url\\\":\\\"//www.bilibili.com/c/mysticism/\\\",\\\"icon\\\":\\\"\\\",\\\"sub\\\":[{\\\"subChannelId\\\":440001,\\\"tid\\\":2189,\\\"route\\\":\\\"tarot\\\",\\\"name\\\":\\\"塔罗占卜\\\",\\\"tkey\\\":\\\"CommonChannel:mythTarot\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":440002,\\\"tid\\\":2190,\\\"route\\\":\\\"horoscope\\\",\\\"name\\\":\\\"星座占星\\\",\\\"tkey\\\":\\\"CommonChannel:mythHoros\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":440003,\\\"tid\\\":2191,\\\"route\\\":\\\"metaphysics\\\",\\\"name\\\":\\\"传统玄学\\\",\\\"tkey\\\":\\\"CommonChannel:mythMeta\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":440004,\\\"tid\\\":2192,\\\"route\\\":\\\"healing\\\",\\\"name\\\":\\\"疗愈成长\\\",\\\"tkey\\\":\\\"CommonChannel:mythHeal\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":440005,\\\"tid\\\":2193,\\\"route\\\":\\\"other\\\",\\\"name\\\":\\\"其他神秘学\\\",\\\"tkey\\\":\\\"CommonChannel:mythOther\\\",\\\"url\\\":\\\"\\\"}],\\\"config\\\":{\\\"enableSub\\\":0}}\",\"channel_list.outdoors\":\"{\\\"channelId\\\":27,\\\"tid\\\":1016,\\\"route\\\":\\\"outdoors\\\",\\\"name\\\":\\\"户外潮流\\\",\\\"tkey\\\":\\\"CommonChannel:outdoors\\\",\\\"url\\\":\\\"//www.bilibili.com/c/outdoors/\\\",\\\"icon\\\":\\\"homeicon/outdoors/1\\\",\\\"sub\\\":[{\\\"subChannelId\\\":270001,\\\"tid\\\":2124,\\\"route\\\":\\\"camping\\\",\\\"name\\\":\\\"露营\\\",\\\"tkey\\\":\\\"CommonChannel:outCamping\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":270002,\\\"tid\\\":2125,\\\"route\\\":\\\"hiking\\\",\\\"name\\\":\\\"徒步\\\",\\\"tkey\\\":\\\"CommonChannel:outHiking\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":270003,\\\"tid\\\":2126,\\\"route\\\":\\\"explore\\\",\\\"name\\\":\\\"户外探秘\\\",\\\"tkey\\\":\\\"CommonChannel:outExplore\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":270004,\\\"tid\\\":2127,\\\"route\\\":\\\"other\\\",\\\"name\\\":\\\"户外综合\\\",\\\"tkey\\\":\\\"CommonChannel:outOther\\\",\\\"url\\\":\\\"\\\"}],\\\"config\\\":{\\\"enableSub\\\":0}}\",\"channel_list.painting\":\"{\\\"channelId\\\":24,\\\"tid\\\":1006,\\\"route\\\":\\\"painting\\\",\\\"name\\\":\\\"绘画\\\",\\\"tkey\\\":\\\"CommonChannel:painting\\\",\\\"url\\\":\\\"//www.bilibili.com/c/painting/\\\",\\\"icon\\\":\\\"homeicon/painting/1\\\",\\\"sub\\\":[{\\\"subChannelId\\\":240001,\\\"tid\\\":2055,\\\"route\\\":\\\"acg\\\",\\\"name\\\":\\\"二次元绘画\\\",\\\"tkey\\\":\\\"CommonChannel:paintAcg\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":240002,\\\"tid\\\":2056,\\\"route\\\":\\\"none_acg\\\",\\\"name\\\":\\\"非二次元绘画\\\",\\\"tkey\\\":\\\"CommonChannel:paintNotAcg\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":240003,\\\"tid\\\":2057,\\\"route\\\":\\\"tutorial\\\",\\\"name\\\":\\\"绘画学习\\\",\\\"tkey\\\":\\\"CommonChannel:paintTutorial\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":240004,\\\"tid\\\":2058,\\\"route\\\":\\\"other\\\",\\\"name\\\":\\\"绘画综合\\\",\\\"tkey\\\":\\\"CommonChannel:paintOther\\\",\\\"url\\\":\\\"\\\"}],\\\"config\\\":{\\\"enableSub\\\":0}}\",\"channel_list.parenting\":\"{\\\"channelId\\\":32,\\\"tid\\\":1025,\\\"route\\\":\\\"parenting\\\",\\\"name\\\":\\\"亲子\\\",\\\"tkey\\\":\\\"CommonChannel:parenting\\\",\\\"url\\\":\\\"//www.bilibili.com/c/parenting/\\\",\\\"icon\\\":\\\"homeicon/parenting/1\\\",\\\"sub\\\":[{\\\"subChannelId\\\":320001,\\\"tid\\\":2172,\\\"route\\\":\\\"pregnant_care\\\",\\\"name\\\":\\\"孕产护理\\\",\\\"tkey\\\":\\\"CommonChannel:parentPregnant\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":320002,\\\"tid\\\":2173,\\\"route\\\":\\\"infant_care\\\",\\\"name\\\":\\\"婴幼护理\\\",\\\"tkey\\\":\\\"CommonChannel:parentInfant\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":320003,\\\"tid\\\":2174,\\\"route\\\":\\\"talent\\\",\\\"name\\\":\\\"儿童才艺\\\",\\\"tkey\\\":\\\"CommonChannel:parentTalent\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":320004,\\\"tid\\\":2175,\\\"route\\\":\\\"cute\\\",\\\"name\\\":\\\"萌娃\\\",\\\"tkey\\\":\\\"CommonChannel:parentCute\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":320005,\\\"tid\\\":2176,\\\"route\\\":\\\"interaction\\\",\\\"name\\\":\\\"亲子互动\\\",\\\"tkey\\\":\\\"CommonChannel:parentInteract\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":320006,\\\"tid\\\":2177,\\\"route\\\":\\\"education\\\",\\\"name\\\":\\\"亲子教育\\\",\\\"tkey\\\":\\\"CommonChannel:parentEdu\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":320007,\\\"tid\\\":2178,\\\"route\\\":\\\"other\\\",\\\"name\\\":\\\"亲子综合\\\",\\\"tkey\\\":\\\"CommonChannel:parentOther\\\",\\\"url\\\":\\\"\\\"}],\\\"config\\\":{\\\"enableSub\\\":0}}\",\"channel_list.popular_page_sort\":\"[\\\"all\\\",\\\"anime\\\",\\\"guochuang\\\",\\\"documentary\\\",\\\"movie\\\",\\\"tv\\\",\\\"variety\\\",\\\"douga\\\",\\\"game\\\",\\\"kichiku\\\",\\\"music\\\",\\\"dance\\\",\\\"cinephile\\\",\\\"ent\\\",\\\"knowledge\\\",\\\"tech\\\",\\\"food\\\",\\\"car\\\",\\\"fashion\\\",\\\"sports\\\",\\\"animal\\\"]\",\"channel_list.rural\":\"{\\\"channelId\\\":31,\\\"tid\\\":1023,\\\"route\\\":\\\"rural\\\",\\\"name\\\":\\\"三农\\\",\\\"tkey\\\":\\\"CommonChannel:rural\\\",\\\"url\\\":\\\"//www.bilibili.com/c/rural/\\\",\\\"icon\\\":\\\"homeicon/rural/2\\\",\\\"sub\\\":[{\\\"subChannelId\\\":310001,\\\"tid\\\":2162,\\\"route\\\":\\\"planting\\\",\\\"name\\\":\\\"农村种植\\\",\\\"tkey\\\":\\\"CommonChannel:ruralPlant\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":310002,\\\"tid\\\":2163,\\\"route\\\":\\\"fishing\\\",\\\"name\\\":\\\"赶海捕鱼\\\",\\\"tkey\\\":\\\"CommonChannel:ruralFish\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":310003,\\\"tid\\\":2164,\\\"route\\\":\\\"harvest\\\",\\\"name\\\":\\\"打野采摘\\\",\\\"tkey\\\":\\\"CommonChannel:ruralHarvest\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":310004,\\\"tid\\\":2165,\\\"route\\\":\\\"tech\\\",\\\"name\\\":\\\"农业技术\\\",\\\"tkey\\\":\\\"CommonChannel:ruralTech\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":310005,\\\"tid\\\":2166,\\\"route\\\":\\\"life\\\",\\\"name\\\":\\\"农村生活\\\",\\\"tkey\\\":\\\"CommonChannel:ruralLife\\\",\\\"url\\\":\\\"\\\"}],\\\"config\\\":{\\\"enableSub\\\":0}}\",\"channel_list.shortplay\":\"{\\\"channelId\\\":18,\\\"tid\\\":1021,\\\"route\\\":\\\"shortplay\\\",\\\"name\\\":\\\"小剧场\\\",\\\"tkey\\\":\\\"CommonChannel:shortplay\\\",\\\"url\\\":\\\"//www.bilibili.com/c/shortplay/\\\",\\\"icon\\\":\\\"homeicon/shortplay/1\\\",\\\"sub\\\":[{\\\"subChannelId\\\":180001,\\\"tid\\\":2154,\\\"route\\\":\\\"plot\\\",\\\"name\\\":\\\"剧情演绎\\\",\\\"tkey\\\":\\\"CommonChannel:spPlot\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":180001,\\\"tid\\\":2155,\\\"route\\\":\\\"lang\\\",\\\"name\\\":\\\"语言类小剧场\\\",\\\"tkey\\\":\\\"CommonChannel:spLang\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":180001,\\\"tid\\\":2156,\\\"route\\\":\\\"up_variety\\\",\\\"name\\\":\\\"UP主小综艺\\\",\\\"tkey\\\":\\\"CommonChannel:spUpVariety\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":180001,\\\"tid\\\":2157,\\\"route\\\":\\\"interview\\\",\\\"name\\\":\\\"街头采访\\\",\\\"tkey\\\":\\\"CommonChannel:spInterview\\\",\\\"url\\\":\\\"\\\"}],\\\"config\\\":{\\\"enableSub\\\":0}}\",\"channel_list.sort\":\"[\\\"anime\\\",\\\"movie\\\",\\\"guochuang\\\",\\\"tv\\\",\\\"variety\\\",\\\"documentary\\\",\\\"douga\\\",\\\"game\\\",\\\"kichiku\\\",\\\"music\\\",\\\"dance\\\",\\\"cinephile\\\",\\\"ent\\\",\\\"knowledge\\\",\\\"tech\\\",\\\"information\\\",\\\"food\\\",\\\"shortplay\\\",\\\"car\\\",\\\"fashion\\\",\\\"sports\\\",\\\"animal\\\",\\\"vlog\\\",\\\"painting\\\",\\\"ai\\\",\\\"home\\\",\\\"outdoors\\\",\\\"gym\\\",\\\"handmake\\\",\\\"travel\\\",\\\"rural\\\",\\\"parenting\\\",\\\"health\\\",\\\"emotion\\\",\\\"life_joy\\\",\\\"life_experience\\\",\\\"love\\\",\\\"hd\\\"]\",\"channel_list.sports\":\"{\\\"channelId\\\":21,\\\"tid\\\":1018,\\\"route\\\":\\\"sports\\\",\\\"name\\\":\\\"体育运动\\\",\\\"tkey\\\":\\\"CommonChannel:sports\\\",\\\"url\\\":\\\"//www.bilibili.com/c/sports/\\\",\\\"icon\\\":\\\"homeicon/sports/1\\\",\\\"sub\\\":[{\\\"subChannelId\\\":210001,\\\"tid\\\":2133,\\\"route\\\":\\\"trend\\\",\\\"name\\\":\\\"潮流运动\\\",\\\"tkey\\\":\\\"CommonChannel:spoTrend\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":210002,\\\"tid\\\":2134,\\\"route\\\":\\\"football\\\",\\\"name\\\":\\\"足球\\\",\\\"tkey\\\":\\\"CommonChannel:spoFootball\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":210003,\\\"tid\\\":2135,\\\"route\\\":\\\"basketball\\\",\\\"name\\\":\\\"篮球\\\",\\\"tkey\\\":\\\"CommonChannel:spoBasketball\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":210004,\\\"tid\\\":2136,\\\"route\\\":\\\"running\\\",\\\"name\\\":\\\"跑步\\\",\\\"tkey\\\":\\\"CommonChannel:spoRun\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":210005,\\\"tid\\\":2137,\\\"route\\\":\\\"kungfu\\\",\\\"name\\\":\\\"武术\\\",\\\"tkey\\\":\\\"CommonChannel:spoKungfu\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":210006,\\\"tid\\\":2138,\\\"route\\\":\\\"fighting\\\",\\\"name\\\":\\\"格斗\\\",\\\"tkey\\\":\\\"CommonChannel:spoFight\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":210007,\\\"tid\\\":2139,\\\"route\\\":\\\"badminton\\\",\\\"name\\\":\\\"羽毛球\\\",\\\"tkey\\\":\\\"CommonChannel:spoBadminton\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":210008,\\\"tid\\\":2140,\\\"route\\\":\\\"information\\\",\\\"name\\\":\\\"体育资讯\\\",\\\"tkey\\\":\\\"CommonChannel:spoInfo\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":210009,\\\"tid\\\":2141,\\\"route\\\":\\\"match\\\",\\\"name\\\":\\\"体育赛事\\\",\\\"tkey\\\":\\\"CommonChannel:spoMatch\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":210010,\\\"tid\\\":2142,\\\"route\\\":\\\"other\\\",\\\"name\\\":\\\"体育综合\\\",\\\"tkey\\\":\\\"CommonChannel:spoOther\\\",\\\"url\\\":\\\"\\\"}],\\\"config\\\":{\\\"enableSub\\\":0}}\",\"channel_list.tech\":\"{\\\"channelId\\\":15,\\\"tid\\\":1012,\\\"route\\\":\\\"tech\\\",\\\"name\\\":\\\"科技数码\\\",\\\"tkey\\\":\\\"CommonChannel:tech\\\",\\\"url\\\":\\\"//www.bilibili.com/c/tech/\\\",\\\"icon\\\":\\\"homeicon/tech/1\\\",\\\"sub\\\":[{\\\"subChannelId\\\":150001,\\\"tid\\\":2099,\\\"route\\\":\\\"computer\\\",\\\"name\\\":\\\"电脑\\\",\\\"tkey\\\":\\\"CommonChannel:techComputer\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":150002,\\\"tid\\\":2100,\\\"route\\\":\\\"phone\\\",\\\"name\\\":\\\"手机\\\",\\\"tkey\\\":\\\"CommonChannel:techPhone\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":150003,\\\"tid\\\":2101,\\\"route\\\":\\\"pad\\\",\\\"name\\\":\\\"平板电脑\\\",\\\"tkey\\\":\\\"CommonChannel:techPad\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":150004,\\\"tid\\\":2102,\\\"route\\\":\\\"photography\\\",\\\"name\\\":\\\"摄影摄像\\\",\\\"tkey\\\":\\\"CommonChannel:techPhoto\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":150005,\\\"tid\\\":2103,\\\"route\\\":\\\"machine\\\",\\\"name\\\":\\\"工程机械\\\",\\\"tkey\\\":\\\"CommonChannel:techMachine\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":150006,\\\"tid\\\":2104,\\\"route\\\":\\\"create\\\",\\\"name\\\":\\\"自制发明/设备\\\",\\\"tkey\\\":\\\"CommonChannel:techCreate\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":150007,\\\"tid\\\":2105,\\\"route\\\":\\\"other\\\",\\\"name\\\":\\\"科技数码综合\\\",\\\"tkey\\\":\\\"CommonChannel:techOther\\\",\\\"url\\\":\\\"\\\"}],\\\"config\\\":{\\\"enableSub\\\":0}}\",\"channel_list.travel\":\"{\\\"channelId\\\":30,\\\"tid\\\":1022,\\\"route\\\":\\\"travel\\\",\\\"name\\\":\\\"旅游出行\\\",\\\"tkey\\\":\\\"CommonChannel:travel\\\",\\\"url\\\":\\\"//www.bilibili.com/c/travel/\\\",\\\"icon\\\":\\\"homeicon/travel/1\\\",\\\"sub\\\":[{\\\"subChannelId\\\":300001,\\\"tid\\\":2158,\\\"route\\\":\\\"record\\\",\\\"name\\\":\\\"旅游记录\\\",\\\"tkey\\\":\\\"CommonChannel:travelRecord\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":300002,\\\"tid\\\":2159,\\\"route\\\":\\\"strategy\\\",\\\"name\\\":\\\"旅游攻略\\\",\\\"tkey\\\":\\\"CommonChannel:travelStrategy\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":300003,\\\"tid\\\":2160,\\\"route\\\":\\\"city\\\",\\\"name\\\":\\\"城市出行\\\",\\\"tkey\\\":\\\"CommonChannel:travelCity\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":300004,\\\"tid\\\":2161,\\\"route\\\":\\\"transport\\\",\\\"name\\\":\\\"公共交通\\\",\\\"tkey\\\":\\\"CommonChannel:travelTransport\\\",\\\"url\\\":\\\"\\\"}],\\\"config\\\":{\\\"enableSub\\\":0}}\",\"channel_list.tv\":\"{\\\"channelId\\\":4,\\\"seasonType\\\":5,\\\"tid\\\":0,\\\"route\\\":\\\"tv\\\",\\\"name\\\":\\\"电视剧\\\",\\\"tkey\\\":\\\"CommonChannel:tv\\\",\\\"url\\\":\\\"//www.bilibili.com/tv/\\\",\\\"icon\\\":\\\"homeicon/tv_series/1\\\",\\\"sub\\\":[],\\\"config\\\":{\\\"enableSub\\\":1}}\",\"channel_list.variety\":\"{\\\"channelId\\\":5,\\\"seasonType\\\":7,\\\"tid\\\":0,\\\"route\\\":\\\"variety\\\",\\\"name\\\":\\\"综艺\\\",\\\"tkey\\\":\\\"CommonChannel:variety\\\",\\\"url\\\":\\\"//www.bilibili.com/variety/\\\",\\\"icon\\\":\\\"homeicon/variety/1\\\",\\\"sub\\\":[],\\\"config\\\":{\\\"enableSub\\\":1}}\",\"channel_list.vlog\":\"{\\\"channelId\\\":23,\\\"tid\\\":1029,\\\"route\\\":\\\"vlog\\\",\\\"name\\\":\\\"vlog\\\",\\\"tkey\\\":\\\"CommonChannel:vlog\\\",\\\"url\\\":\\\"//www.bilibili.com/c/vlog/\\\",\\\"icon\\\":\\\"homeicon/vlog/1\\\",\\\"sub\\\":[{\\\"subChannelId\\\":230001,\\\"tid\\\":2194,\\\"route\\\":\\\"life\\\",\\\"name\\\":\\\"中外生活vlog\\\",\\\"tkey\\\":\\\"CommonChannel:vlogLife\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":230002,\\\"tid\\\":2195,\\\"route\\\":\\\"student\\\",\\\"name\\\":\\\"学生vlog\\\",\\\"tkey\\\":\\\"CommonChannel:vlogStudent\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":230003,\\\"tid\\\":2196,\\\"route\\\":\\\"career\\\",\\\"name\\\":\\\"职业vlog\\\",\\\"tkey\\\":\\\"CommonChannel:vlogCareer\\\",\\\"url\\\":\\\"\\\"},{\\\"subChannelId\\\":230004,\\\"tid\\\":2197,\\\"route\\\":\\\"other\\\",\\\"name\\\":\\\"其他vlog\\\",\\\"tkey\\\":\\\"CommonChannel:vlogOther\\\",\\\"url\\\":\\\"\\\"}],\\\"config\\\":{\\\"enableSub\\\":0}}\",\"side_channel_list.activity\":\"{\\\"channelId\\\":40,\\\"tid\\\":0,\\\"route\\\":\\\"activity\\\",\\\"name\\\":\\\"活动\\\",\\\"tkey\\\":\\\"CommonChannel:activity\\\",\\\"url\\\":\\\"//www.bilibili.com/blackboard/era/reward-activity-list-page.html#/list\\\",\\\"icon\\\":\\\"homeicon/activity/1\\\",\\\"sideIcon\\\":\\\"homeicon/activity_gray/1\\\",\\\"sub\\\":[],\\\"config\\\":{\\\"enableSub\\\":1}}\",\"side_channel_list.cheese\":\"{\\\"channelId\\\":41,\\\"tid\\\":0,\\\"route\\\":\\\"cheese\\\",\\\"name\\\":\\\"课堂\\\",\\\"tkey\\\":\\\"CommonChannel:cheese\\\",\\\"url\\\":\\\"//www.bilibili.com/cheese/\\\",\\\"icon\\\":\\\"homeicon/cheese/1\\\",\\\"sideIcon\\\":\\\"homeicon/cheese_gray/1\\\",\\\"sub\\\":[{\\\"subChannelId\\\":410001,\\\"tid\\\":0,\\\"route\\\":\\\"general\\\",\\\"name\\\":\\\"通识科普\\\",\\\"tkey\\\":\\\"CommonChannel:chsGeneral\\\",\\\"url\\\":\\\"//www.bilibili.com/cheese/category?first=95&csource=Channel_class\\\"},{\\\"subChannelId\\\":410002,\\\"tid\\\":0,\\\"route\\\":\\\"life\\\",\\\"name\\\":\\\"兴趣生活\\\",\\\"tkey\\\":\\\"CommonChannel:chsLife\\\",\\\"url\\\":\\\"//www.bilibili.com/cheese/category?first=94&csource=Channel_class\\\"},{\\\"subChannelId\\\":410003,\\\"tid\\\":0,\\\"route\\\":\\\"lang\\\",\\\"name\\\":\\\"语言学习\\\",\\\"tkey\\\":\\\"CommonChannel:chsLang\\\",\\\"url\\\":\\\"//www.bilibili.com/cheese/category?first=93&csource=Channel_class\\\"},{\\\"subChannelId\\\":410004,\\\"tid\\\":0,\\\"route\\\":\\\"postgraduate\\\",\\\"name\\\":\\\"考研\\\",\\\"tkey\\\":\\\"CommonChannel:chsGee\\\",\\\"url\\\":\\\"//www.bilibili.com/cheese/category?first=88&csource=Channel_class\\\"},{\\\"subChannelId\\\":410005,\\\"tid\\\":0,\\\"route\\\":\\\"exam\\\",\\\"name\\\":\\\"考试考证\\\",\\\"tkey\\\":\\\"CommonChannel:chsExam\\\",\\\"url\\\":\\\"//www.bilibili.com/cheese/category?first=87&csource=Channel_class\\\"},{\\\"subChannelId\\\":410006,\\\"tid\\\":0,\\\"route\\\":\\\"media_creation\\\",\\\"name\\\":\\\"影视·创作\\\",\\\"tkey\\\":\\\"CommonChannel:chsMedia\\\",\\\"url\\\":\\\"//www.bilibili.com/cheese/category?first=164&csource=Channel_class\\\"},{\\\"subChannelId\\\":410007,\\\"tid\\\":0,\\\"route\\\":\\\"it\\\",\\\"name\\\":\\\"IT互联网\\\",\\\"tkey\\\":\\\"CommonChannel:chsIt\\\",\\\"url\\\":\\\"//www.bilibili.com/cheese/category?first=89&csource=Channel_class\\\"},{\\\"subChannelId\\\":410008,\\\"tid\\\":0,\\\"route\\\":\\\"career\\\",\\\"name\\\":\\\"职业职场\\\",\\\"tkey\\\":\\\"CommonChannel:chsCareer\\\",\\\"url\\\":\\\"//www.bilibili.com/cheese/category?first=92&csource=Channel_class\\\"},{\\\"subChannelId\\\":410009,\\\"tid\\\":0,\\\"route\\\":\\\"personal_growth\\\",\\\"name\\\":\\\"个人成长\\\",\\\"tkey\\\":\\\"CommonChannel:chsGrowth\\\",\\\"url\\\":\\\"//www.bilibili.com/cheese/category?first=181&csource=Channel_class\\\"},{\\\"subChannelId\\\":410010,\\\"tid\\\":0,\\\"route\\\":\\\"my_courses\\\",\\\"name\\\":\\\"我的课程\\\",\\\"tkey\\\":\\\"CommonChannel:chsMine\\\",\\\"url\\\":\\\"//www.bilibili.com/cheese/mine/list?csource=Channel_class\\\"}],\\\"config\\\":{\\\"enableSub\\\":1}}\",\"side_channel_list.live\":\"{\\\"channelId\\\":39,\\\"tid\\\":0,\\\"route\\\":\\\"live\\\",\\\"name\\\":\\\"直播\\\",\\\"tkey\\\":\\\"CommonChannel:live\\\",\\\"url\\\":\\\"//live.bilibili.com\\\",\\\"icon\\\":\\\"homeicon/live/1\\\",\\\"sideIcon\\\":\\\"homeicon/live_gray/1\\\",\\\"sub\\\":[{\\\"subChannelId\\\":390001,\\\"tid\\\":0,\\\"route\\\":\\\"all\\\",\\\"name\\\":\\\"全部\\\",\\\"tkey\\\":\\\"CommonChannel:all\\\",\\\"url\\\":\\\"//live.bilibili.com/all?visit_id=5icxsa0kmts0\\\"},{\\\"subChannelId\\\":390002,\\\"tid\\\":0,\\\"route\\\":\\\"online_game\\\",\\\"name\\\":\\\"网游\\\",\\\"tkey\\\":\\\"CommonChannel:liveOnline\\\",\\\"url\\\":\\\"//live.bilibili.com/p/eden/area-tags?parentAreaId=2&areaId=0&visit_id=5icxsa0kmts0#/2/0\\\"},{\\\"subChannelId\\\":390003,\\\"tid\\\":0,\\\"route\\\":\\\"mobile_game\\\",\\\"name\\\":\\\"手游\\\",\\\"tkey\\\":\\\"CommonChannel:liveMobile\\\",\\\"url\\\":\\\"//live.bilibili.com/p/eden/area-tags?parentAreaId=3&areaId=0&visit_id=5icxsa0kmts0#/3/0\\\"},{\\\"subChannelId\\\":390004,\\\"tid\\\":0,\\\"route\\\":\\\"single_game\\\",\\\"name\\\":\\\"单机\\\",\\\"tkey\\\":\\\"CommonChannel:liveSingle\\\",\\\"url\\\":\\\"//live.bilibili.com/p/eden/area-tags?parentAreaId=6&areaId=0\\\"},{\\\"subChannelId\\\":390005,\\\"tid\\\":0,\\\"route\\\":\\\"ent\\\",\\\"name\\\":\\\"娱乐\\\",\\\"tkey\\\":\\\"CommonChannel:liveEnt\\\",\\\"url\\\":\\\"//live.bilibili.com/p/eden/area-tags?parentAreaId=1&areaId=0&visit_id=5icxsa0kmts0#/1/0\\\"},{\\\"subChannelId\\\":390006,\\\"tid\\\":0,\\\"route\\\":\\\"radio\\\",\\\"name\\\":\\\"电台\\\",\\\"tkey\\\":\\\"CommonChannel:liveRadio\\\",\\\"url\\\":\\\"//live.bilibili.com/p/eden/area-tags?parentAreaId=5&areaId=0&visit_id=5icxsa0kmts0#/5/0\\\"},{\\\"subChannelId\\\":390007,\\\"tid\\\":0,\\\"route\\\":\\\"virtual\\\",\\\"name\\\":\\\"虚拟\\\",\\\"tkey\\\":\\\"CommonChannel:liveVirtual\\\",\\\"url\\\":\\\"//live.bilibili.com/p/eden/area-tags?parentAreaId=9&areaId=0\\\"},{\\\"subChannelId\\\":390008,\\\"tid\\\":0,\\\"route\\\":\\\"life\\\",\\\"name\\\":\\\"生活\\\",\\\"tkey\\\":\\\"CommonChannel:liveLife\\\",\\\"url\\\":\\\"//live.bilibili.com/p/eden/area-tags?parentAreaId=10&areaId=0\\\"},{\\\"subChannelId\\\":390009,\\\"tid\\\":0,\\\"route\\\":\\\"knowledge\\\",\\\"name\\\":\\\"知识\\\",\\\"tkey\\\":\\\"CommonChannel:liveKnow\\\",\\\"url\\\":\\\"//live.bilibili.com/p/eden/area-tags?parentAreaId=11&areaId=0\\\"},{\\\"subChannelId\\\":390010,\\\"tid\\\":0,\\\"route\\\":\\\"match\\\",\\\"name\\\":\\\"赛事\\\",\\\"tkey\\\":\\\"CommonChannel:liveMatch\\\",\\\"url\\\":\\\"//live.bilibili.com/p/eden/area-tags?parentAreaId=13&areaId=0\\\"},{\\\"subChannelId\\\":390011,\\\"tid\\\":0,\\\"route\\\":\\\"chatroom\\\",\\\"name\\\":\\\"聊天室\\\",\\\"tkey\\\":\\\"CommonChannel:liveChat\\\",\\\"url\\\":\\\"//live.bilibili.com/p/eden/area-tags?parentAreaId=14&areaId=0\\\"},{\\\"subChannelId\\\":390012,\\\"tid\\\":0,\\\"route\\\":\\\"interaction\\\",\\\"name\\\":\\\"互动玩法\\\",\\\"tkey\\\":\\\"CommonChannel:liveInteract\\\",\\\"url\\\":\\\"//live.bilibili.com/p/eden/area-tags?parentAreaId=15&areaId=0\\\"}],\\\"config\\\":{\\\"enableSub\\\":1}}\",\"side_channel_list.musicplus\":\"{\\\"channelId\\\":43,\\\"tid\\\":0,\\\"route\\\":\\\"musicplus\\\",\\\"name\\\":\\\"新歌热榜\\\",\\\"tkey\\\":\\\"CommonChannel:musicplus\\\",\\\"url\\\":\\\"//music.bilibili.com/pc/music-center/\\\",\\\"icon\\\":\\\"homeicon/musicplus/1\\\",\\\"sideIcon\\\":\\\"homeicon/musicplus_gray/1\\\",\\\"sub\\\":[],\\\"config\\\":{\\\"enableSub\\\":1}}\",\"side_channel_list.read\":\"{\\\"channelId\\\":38,\\\"tid\\\":0,\\\"route\\\":\\\"read\\\",\\\"name\\\":\\\"专栏\\\",\\\"tkey\\\":\\\"CommonChannel:read\\\",\\\"url\\\":\\\"//www.bilibili.com/read/home/\\\",\\\"icon\\\":\\\"homeicon/article/1\\\",\\\"sideIcon\\\":\\\"homeicon/article_gray/1\\\",\\\"sub\\\":[],\\\"config\\\":{\\\"enableSub\\\":1}}\",\"side_channel_list.social_center\":\"{\\\"channelId\\\":42,\\\"tid\\\":0,\\\"route\\\":\\\"social_center\\\",\\\"name\\\":\\\"社区中心\\\",\\\"tkey\\\":\\\"CommonChannel:socialCenter\\\",\\\"url\\\":\\\"//www.bilibili.com/blackboard/activity-5zJxM3spoS.html\\\",\\\"icon\\\":\\\"homeicon/social_center/1\\\",\\\"sideIcon\\\":\\\"homeicon/social_center_gray/1\\\",\\\"sub\\\":[],\\\"config\\\":{\\\"enableSub\\\":1}}\",\"side_channel_list.sort\":\"[\\\"read\\\",\\\"live\\\",\\\"activity\\\",\\\"cheese\\\",\\\"social_center\\\",\\\"musicplus\\\"]\"},\"versionId\":\"1770272663508\",\"appVersionId\":\"37035\",\"nscode\":10,\"appKey\":\"333.1339\",\"expires\":2592000000},\"333.1339_9\":{\"timestamp\":1773117294687,\"lastUsed\":1773117294687,\"value\":{\"user_log.payload_log\":\"1\"},\"versionId\":\"1723104145082\",\"appVersionId\":\"37035\",\"nscode\":9,\"appKey\":\"333.1339\",\"expires\":2592000000},\"457.19_1\":{\"timestamp\":1773117297756,\"lastUsed\":1773117297756,\"value\":{\"dash_config.abr_limit_by_user_level\":\"{\\\"unlogin\\\":16,\\\"loginWithoutVip\\\":80,\\\"loginWithVip\\\":116}\",\"dash_config.audio_time\":\"20\",\"dash_config.av1_4k_enable_gpu_list\":\"[\\\"radeon rx [6789][0-9][0-9][0-9]\\\"]\",\"dash_config.codec_strategy\":\"[{\\\"id\\\":\\\"version\\\",\\\"rules\\\":{},\\\"priority\\\":100},{\\\"id\\\":\\\"archive\\\",\\\"rules\\\":{\\\"1472669865\\\":[\\\"av1\\\",\\\"hevc\\\"],\\\"1473038206\\\":[\\\"avc\\\"]},\\\"prioirty\\\":99},{\\\"id\\\":\\\"gpu\\\",\\\"rules\\\":{\\\"ZX C-960\\\":[\\\"hevc\\\",\\\"avc\\\"],\\\"ZX C-1080\\\":[\\\"hevc\\\",\\\"avc\\\"],\\\"ZX C-1190\\\":[\\\"hevc\\\",\\\"avc\\\"],\\\"vastai\\\":[\\\"hevc\\\",\\\"av1\\\",\\\"avc\\\"]},\\\"priority\\\":101},{\\\"id\\\":\\\"ua\\\",\\\"rules\\\":{},\\\"priority\\\":98},{\\\"id\\\":\\\"fid\\\",\\\"rules\\\":{},\\\"priority\\\":97}]\",\"dash_config.default_codec_strategy\":\"[\\n \\\"av1\\\",\\n \\\"hevc\\\",\\n \\\"avc\\\"\\n]\",\"dash_config.default_video_quality_cfg\":\"{\\\"idleHours\\\":[[1,11],[14,18]]}\",\"dash_config.enable_av1\":\"1\",\"dash_config.enable_extra_frames\":\"true\",\"dash_config.enable_hevc\":\"1\"},\"versionId\":\"1770277208424\",\"appVersionId\":\"37038\",\"nscode\":1,\"appKey\":\"457.19\",\"expires\":2592000000}}" + }, + { + "name": "bilibili_player_codec_prefer_reset", + "value": "1.5.2" + }, + { + "name": "displayCount_2026_3_319358290", + "value": "0" + }, + { + "name": "bmg_af_wl", + "value": "[1,2,2]" + }, + { + "name": "bilibili_player_gpu_renderer", + "value": "ANGLE (Apple, ANGLE Metal Renderer: Apple M4 Pro, Unspecified Version)" + }, + { + "name": "bmg_af_dft", + "value": "\"5\"" + }, + { + "name": "secure_collect_report_interval_2E77FCDE-C111-16B8-ECBB-DB7FB1DC594747695infoc", + "value": "60" + }, + { + "name": "FIRST_TIME_SEE_WL_PIP", + "value": "SHOW" + }, + { + "name": "__reporter-pb-sample-config", + "value": "{\"444.8.live-room.chronos.init.before.check\":50,\"333.788.memory.timeline.performance\":50,\"444.8.live-room.uam-player.welcome.failed\":50,\"333.1334.kv-init.error\":1,\"333.1334.kv-init.pv\":1,\"333.40181.secureCollect.collectDeviceInfo\":1,\"333.40181.secureCollect.successReport\":1,\"333.40181.secureCollect.wasmProcessTime\":1,\"444.8.live-room.room-page.live-web-danmaku-tech-report\":20}" + }, + { + "name": "bilibili_player_kv_config", + "value": "{}" + }, + { + "name": "wbi_img_urls", + "value": "https://i0.hdslb.com/bfs/wbi/7cd084941338484aae1ad9425b84077c.png-https://i0.hdslb.com/bfs/wbi/4932caff0ff746eab6f01bf08b70ac45.png" + }, + { + "name": "secure_collect_last_report_time_2E77FCDE-C111-16B8-ECBB-DB7FB1DC594747695infoc", + "value": "1773117291458" + } + ] + }, + { + "origin": "https://passport.bilibili.com", + "localStorage": [ + { + "name": "wbi_sub_url", + "value": "https://i0.hdslb.com/bfs/wbi/4932caff0ff746eab6f01bf08b70ac45.png" + }, + { + "name": "BILI_MIRROR_REPORT_POOL", + "value": "{}" + }, + { + "name": "wbi_img_url", + "value": "https://i0.hdslb.com/bfs/wbi/7cd084941338484aae1ad9425b84077c.png" + }, + { + "name": "KV_CONFIG_SDK", + "value": "{\"333.1333_0\":{\"timestamp\":1773117248694,\"lastUsed\":1773117266742,\"value\":{\"bilimirror.minilogin\":\"{\\\"buvid\\\":[\\\"B6771AA6-7CCD-4EF2-BA5B-1FDE9A25F49A49120infoc\\\",\\\"D025573B-8686-0D9D-48DB-0C84BBB5544A45226infoc\\\",\\\"9BD89CEC-4C19-E243-63B3-9A69417B70A458220infoc\\\",\\\"4AD0D8C7-D936-FB67-4C33-7A13C004E84478537infoc\\\",\\\"84AF2B23-9DC9-0717-A474-BCB7A866198994970infoc\\\",\\\"F4373CB5-E491-2C2A-0541-2FFFC3DF2FCC71448infoc\\\"],\\\"rate\\\":0}\",\"bilimirror.toplist\":\"{\\\"playLogUmd\\\":\\\"https://s1.hdslb.com/bfs/static/log-manipulator@0.2.1/index.js\\\",\\\"trackGray\\\":0,\\\"trackGrayV2\\\":1,\\\"resourceStats\\\":{\\\"enabled\\\":true,\\\"sampleRate\\\":0,\\\"rules\\\":[{\\\"key\\\":\\\"333.1007.main.home-page\\\",\\\"sampleRate\\\":5}]}}\",\"bilimirror.whitelist\":\"{\\\"white\\\":{\\\"rejection\\\":[\\\"extension\\\",\\\"maximum\\\",\\\"SVGIconNext\\\"],\\\"error\\\":[\\\"extension\\\",\\\"SVGIconNext\\\"],\\\"resource\\\":[\\\"extension\\\",\\\"localhost\\\"]},\\\"retry\\\":[],\\\"performance\\\":1,\\\"techpv\\\":5,\\\"poll\\\":5,\\\"userLog\\\":[],\\\"track\\\":{\\\"mid\\\":[],\\\"buvid\\\":[]},\\\"trackGrayV2\\\":1}\"},\"versionId\":\"1772162031366\",\"appVersionId\":\"37253\",\"nscode\":0,\"appKey\":\"333.1333\",\"expires\":2592000000},\"333.1228_0\":{\"timestamp\":1773117248899,\"lastUsed\":1773117266779,\"value\":{\"bilimirror.whitelist\":\"{\\\"white\\\":{\\\"rejection\\\":[\\\"chrome-extension\\\",\\\"Reached maximum\\\"],\\\"error\\\":[\\\"chrome-extension\\\"],\\\"resource\\\":[\\\"chrome-extension\\\"]},\\\"retry\\\":[],\\\"api\\\":[\\\"/web-interface/nav\\\"],\\\"performance\\\":1}\"},\"versionId\":\"1737633152934\",\"appVersionId\":\"32706\",\"nscode\":0,\"appKey\":\"333.1228\",\"expires\":2592000000},\"333.1194_0\":{\"timestamp\":1773117265667,\"lastUsed\":1773117265668,\"value\":{\"bilimirror.whitelist\":\"{\\\"white\\\":{\\\"error\\\":[\\\"chrome-extension\\\",\\\"moz-extension\\\",\\\"Navigation\\\"],\\\"rejection\\\":[\\\"chrome-extension\\\",\\\"Reached maximum\\\",\\\"moz-extension\\\",\\\"Navigation\\\"],\\\"resource\\\":[\\\"minntaki-wasm-sdk\\\",\\\"php\\\"]},\\\"retry\\\":[],\\\"performance\\\":1,\\\"techpv\\\":5,\\\"poll\\\":5,\\\"userLog\\\":[],\\\"filterEndjs\\\":true}\"},\"versionId\":\"1765942605716\",\"appVersionId\":\"36157\",\"nscode\":0,\"appKey\":\"333.1194\",\"expires\":2592000000}}" + }, + { + "name": "secure_collect_report_interval_2E77FCDE-C111-16B8-ECBB-DB7FB1DC594747695infoc", + "value": "60" + }, + { + "name": "__reporter-pb-sample-config", + "value": "{\"444.8.live-room.chronos.init.before.check\":50,\"333.788.memory.timeline.performance\":50,\"444.8.live-room.uam-player.welcome.failed\":50,\"333.1334.kv-init.error\":1,\"333.1334.kv-init.pv\":1,\"333.40181.secureCollect.collectDeviceInfo\":1,\"333.40181.secureCollect.successReport\":1,\"333.40181.secureCollect.wasmProcessTime\":1,\"444.8.live-room.room-page.live-web-danmaku-tech-report\":20}" + }, + { + "name": "wbi_img_urls", + "value": "https://i0.hdslb.com/bfs/wbi/7cd084941338484aae1ad9425b84077c.png-https://i0.hdslb.com/bfs/wbi/4932caff0ff746eab6f01bf08b70ac45.png" + }, + { + "name": "secure_collect_last_report_time_2E77FCDE-C111-16B8-ECBB-DB7FB1DC594747695infoc", + "value": "1773117252536" + } + ] + }, + { + "origin": "https://s1.hdslb.com", + "localStorage": [ + { + "name": "message-notify:source", + "value": "www.bilibili.com/_o8r7q3d3i8m" + }, + { + "name": "message-notify:alive", + "value": "1773117381975" + }, + { + "name": "buvid-space:cross_buvid4", + "value": "97FC1DCB-1CE7-171D-8FC5-6D3938F3316549906-026031012-x7jLLSVo9Owdvpqf4iDOqQ==" + }, + { + "name": "search_history:search_history", + "value": "[]" + }, + { + "name": "search_history:migrated", + "value": "1" + } + ] + }, + { + "origin": "https://message.bilibili.com", + "localStorage": [ + { + "name": "imMessageNotifyPush319358290", + "value": "0" + }, + { + "name": "wbi_sub_url", + "value": "https://i0.hdslb.com/bfs/wbi/4932caff0ff746eab6f01bf08b70ac45.png" + }, + { + "name": "imSystemNotifyPush319358290", + "value": "1" + }, + { + "name": "imNotifyCounts319358290", + "value": "{\"at_me\":0,\"reply_me\":1,\"praise_me\":34,\"notify_me\":73,\"message\":40}" + }, + { + "name": "unreadApiRequestedBy319358290At", + "value": "1773127202746" + }, + { + "name": "wbi_img_url", + "value": "https://i0.hdslb.com/bfs/wbi/7cd084941338484aae1ad9425b84077c.png" + } + ] + } + ] +} \ No newline at end of file diff --git a/03_卡木(木)/木叶_视频内容/多平台分发/cookies/小红书_cookies.json b/03_卡木(木)/木叶_视频内容/多平台分发/cookies/小红书_cookies.json new file mode 100644 index 00000000..2e955cc7 --- /dev/null +++ b/03_卡木(木)/木叶_视频内容/多平台分发/cookies/小红书_cookies.json @@ -0,0 +1,253 @@ +{ + "cookies": [ + { + "name": "acw_tc", + "value": "0a0d068317731459544511184e7f11e7ee22303f7a40238fa5613f4eb6702a", + "domain": "creator.xiaohongshu.com", + "path": "/", + "expires": 1773147754.395959, + "httpOnly": true, + "secure": false, + "sameSite": "Lax" + }, + { + "name": "xsecappid", + "value": "ugc", + "domain": ".xiaohongshu.com", + "path": "/", + "expires": 1804683007, + "httpOnly": false, + "secure": false, + "sameSite": "Lax" + }, + { + "name": "a1", + "value": "19cd7bc1c751fyh9lntys4dzu93cfib0sfovi8mcw30000273597", + "domain": ".xiaohongshu.com", + "path": "/", + "expires": 1804681955, + "httpOnly": false, + "secure": false, + "sameSite": "Lax" + }, + { + "name": "webId", + "value": "6a6cd657224a4e256b12b847a79711c4", + "domain": ".xiaohongshu.com", + "path": "/", + "expires": 1804681955, + "httpOnly": false, + "secure": false, + "sameSite": "Lax" + }, + { + "name": "acw_tc", + "value": "0ad58cf017731459558476280efbf9edfae628268bace974a9335ca1712227", + "domain": "edith.xiaohongshu.com", + "path": "/", + "expires": 1773147755.795373, + "httpOnly": true, + "secure": false, + "sameSite": "Lax" + }, + { + "name": "acw_tc", + "value": "0a0d01bc17731459559398103e7ac7810e5fc179199ff12d3e204185602919", + "domain": "customer.xiaohongshu.com", + "path": "/", + "expires": 1773147755.915278, + "httpOnly": true, + "secure": false, + "sameSite": "Lax" + }, + { + "name": "gid", + "value": "yjSfWDSJjJMSyjSfWDSySiY6W2yivxj1I9vMlSE4fu7jqhq8Si3D83888JWq2jW8SiJjJii0", + "domain": ".xiaohongshu.com", + "path": "/", + "expires": 1807707010.076645, + "httpOnly": false, + "secure": false, + "sameSite": "Lax" + }, + { + "name": "customer-sso-sid", + "value": "68c517615603922284478469rptt2mwjgogfti8m", + "domain": ".xiaohongshu.com", + "path": "/", + "expires": 1773750762.487704, + "httpOnly": true, + "secure": false, + "sameSite": "Lax" + }, + { + "name": "x-user-id-creator.xiaohongshu.com", + "value": "63b3cb6f000000002502c21d", + "domain": ".xiaohongshu.com", + "path": "/", + "expires": 1807705963.487751, + "httpOnly": true, + "secure": false, + "sameSite": "Lax" + }, + { + "name": "customerClientId", + "value": "172893742756372", + "domain": ".xiaohongshu.com", + "path": "/", + "expires": 1807705963.487788, + "httpOnly": true, + "secure": false, + "sameSite": "Lax" + }, + { + "name": "access-token-creator.xiaohongshu.com", + "value": "customer.creator.AT-68c5176156039222844620815tecrfvr71dngizv", + "domain": ".xiaohongshu.com", + "path": "/", + "expires": 1775737962.4878, + "httpOnly": true, + "secure": false, + "sameSite": "Lax" + }, + { + "name": "galaxy_creator_session_id", + "value": "6ZdVvWjMwbN5FGk6Q39utKCwjaXS4uP7UvNj", + "domain": ".xiaohongshu.com", + "path": "/", + "expires": 1775737963.487811, + "httpOnly": true, + "secure": false, + "sameSite": "Lax" + }, + { + "name": "galaxy.creator.beaker.session.id", + "value": "1773145963473064900889", + "domain": ".xiaohongshu.com", + "path": "/", + "expires": 1775737963.487825, + "httpOnly": true, + "secure": false, + "sameSite": "Lax" + }, + { + "name": "acw_tc", + "value": "0a00de9917731463146134664e1f1f063d66f120924ddb04720828f7d5fd42", + "domain": "www.xiaohongshu.com", + "path": "/", + "expires": 1773148114.555781, + "httpOnly": true, + "secure": false, + "sameSite": "Lax" + }, + { + "name": "websectiga", + "value": "2a3d3ea002e7d92b5c9743590ebd24010cf3750ff3af8029153751e41a6af4a3", + "domain": ".xiaohongshu.com", + "path": "/", + "expires": 1773406124, + "httpOnly": false, + "secure": false, + "sameSite": "Lax" + }, + { + "name": "sec_poison_id", + "value": "4b0502b9-b989-4527-9518-9458710cca3d", + "domain": ".xiaohongshu.com", + "path": "/", + "expires": 1773147529, + "httpOnly": false, + "secure": false, + "sameSite": "Lax" + }, + { + "name": "loadts", + "value": "1773147007432", + "domain": ".xiaohongshu.com", + "path": "/", + "expires": 1804683007, + "httpOnly": false, + "secure": false, + "sameSite": "Lax" + } + ], + "origins": [ + { + "origin": "https://creator.xiaohongshu.com", + "localStorage": [ + { + "name": "USER_INFO_FOR_BIZ", + "value": "{\"userId\":\"63b3cb6f000000002502c21d\",\"userName\":\"#卡若🔥(4:00起床的男人)\",\"userAvatar\":\"https://sns-avatar-qc.xhscdn.com/avatar/65a68110d4b53385b6a72ed1.jpg?imageView2/2/w/80/format/jpg\",\"redId\":\"6244231151\",\"role\":\"creator\",\"permissions\":[\"creatorCollege\",\"creatorWiki\",\"noteInspiration\",\"creatorHome\",\"creatorData\",\"USER_GROUP\",\"creatorActivityCenter\",\"ORIGINAL_STATEMENT\"],\"zone\":\"86\",\"phone\":\"15880802661\",\"relatedUserId\":null,\"relatedUserName\":null,\"kolCoOrder\":false}" + }, + { + "name": "uploader-permit-video-spectrum", + "value": "{\"MBTI疗愈SOUL 年轻人测MBTI,40到60岁走五行八卦.mp4-10459668\":null,\"Soul业务模型 派对+切片+小程序全链路.mp4-10740368\":null,\"Soul切片30秒到8分钟 AI半小时能剪10到30个.mp4-14677795\":null,\"初期团队先找两个IS,比钱好使 ENFJ链接人,ENTJ指挥.mp4-15709935\":null,\"刷牙听业务逻辑 Soul切片变现怎么跑.mp4-11455089\":null,\"国学易经怎么学 两小时七七八八,召唤作者对话.mp4-9598781\":null,\"建立信任不是求来的 卖外挂发邮件三个月拿下德国总代.mp4-10091673\":null,\"懒人的活法 动作简单有利可图正反馈.mp4-7059868\":null,\"早起不是为了开派对,是不吵老婆睡觉.mp4-5788932\":null,\"睡眠不好?每天放下一件事,做减法.mp4-7022452\":null,\"金融AI获客体系 后端30人沉淀12年,前端丢手机.mp4-13904487\":null}" + }, + { + "name": "publish-uploader-history-upload-speed", + "value": "[{\"speed\":[4.2139917695473255],\"domain\":\"ros-upload.xiaohongshu.com\",\"timestamp\":1773147009454},{\"speed\":[3.263224984066284],\"domain\":\"ros-upload-d4.xhscdn.com\",\"timestamp\":1773147011023}]" + }, + { + "name": "snsWebPublishCurrentUser", + "value": "63b3cb6f000000002502c21d" + }, + { + "name": "USER_INFO", + "value": "{\"user\":{\"type\":\"User\",\"value\":{\"userId\":\"63b3cb6f000000002502c21d\",\"loginUserType\":\"creator\"}}}" + }, + { + "name": "NEW_XHS_ABTEST_REPORT_KEY", + "value": "{\"6a6cd657224a4e256b12b847a79711c463b3cb6f000000002502c21d\":\"2026-03-10\"}" + }, + { + "name": "b1b1", + "value": "1" + }, + { + "name": "score_display", + "value": "1" + }, + { + "name": "p1", + "value": "27" + }, + { + "name": "nps-userId", + "value": "63b3cb6f000000002502c21d" + }, + { + "name": "_speedList", + "value": "[{\"ts\":1773146850016,\"speed\":107953861},{\"ts\":1773146850040,\"speed\":44932428},{\"ts\":1773146892407,\"speed\":145028849},{\"ts\":1773146892428,\"speed\":76504524.66666667},{\"ts\":1773146930414,\"speed\":203671940.33333334},{\"ts\":1773146930432,\"speed\":54714832.666666664},{\"ts\":1773146972441,\"speed\":201955666.66666666},{\"ts\":1773146972464,\"speed\":47211918.666666664},{\"ts\":1773147013892,\"speed\":285466777.6666667},{\"ts\":1773147013923,\"speed\":60348616.333333336}]" + }, + { + "name": "score_timestamp", + "value": "1773146405848" + }, + { + "name": "last_tiga_update_time", + "value": "1773146924939" + }, + { + "name": "uploader-permit-image-spectrum", + "value": "{\"cover.jpeg-304598\":null,\"cover.jpeg-271507\":null,\"cover.jpeg-297124\":null,\"cover.jpeg-295955\":null,\"cover.jpeg-287062\":null,\"cover.jpeg-293020\":null,\"cover.jpeg-308663\":null}" + }, + { + "name": "sdt_source_storage_key", + "value": "{\"signUrl\":\"https://fe-static.xhscdn.com/as/v1/f218/a15/public/04b29480233f4def5c875875b6bdc3b1.js\",\"url\":\"https://fe-static.xhscdn.com/as/v2/fp/962356ead351e7f2422eb57edff6982d.js\",\"reportUrl\":\"/api/sec/v1/shield/webprofile\",\"desVersion\":\"2\",\"validate\":false,\"commonPatch\":[\"/fe_api/burdock/v2/note/post\",\"/api/sns/web/v1/comment/post\",\"/api/sns/web/v1/note/like\",\"/api/sns/web/v1/note/collect\",\"/api/sns/web/v1/user/follow\",\"/api/sns/web/v1/feed\",\"/api/sns/web/v1/login/activate\",\"/api/sns/web/v1/note/metrics_report\",\"/api/redcaptcha\",\"/api/store/jpd/main\",\"/phoenix/api/strategy/getAppStrategy\",\"/web_api/sns/v2/note\"],\"signVersion\":\"1\",\"xhsTokenUrl\":\"https://fe-static.xhscdn.com/as/v1/3e44/public/bf7d4e32677698655a5cadc581fd09b3.js\",\"extraInfo\":{}}" + }, + { + "name": "b1", + "value": "I38rHdgsjopgIvesdVwgIC+oIELmBZ5e3VwXLgFTIxS3bqwErFeexd0ekncAzMFYnqthIhJeSBMDKutRI3KsYorWHPtGrbi0P9WfIi/eWc6eYqtyQApPI37ekmR6QLQ5Ii6sdneeSfqYHqwl2qt5B0DBIx+PGDV/sutkIx0sxuwr4qtiIhuaIE3e3LV0I3VTIC7e0Vtl2ADmsLveDSKsSPw5IEvsiVtJOqw8BuwfPpdeTFWOIx4TIiu6ZPwrPut5IvlaLbgs3qtxIxes1VwHIkumIkIyejgsY/WTge7eSqte/D7sDcpipedeYrDtIC6eDVw2IENsSqtlnlSuNjVtIvoekqt3cZ7sVo4gIESyIhE4HfquIxhnqz8gIkIfoqwkICZWG73sdlOeVPw3IvAe0fged0MnIi5s3I4S2utAIiKsidvekZNeTPt4nAOeWPwEIvY/c07efPwvpn7sSqwrI3MrIxE5Luwwaqw+rekhZANe1MNe0Pw9ICNsVLoeSbIFIkosSr7sVnFiIkgsVVtMIiudqqw+tqtWI30e3PwjIENeTVthIh/sYqtSGqwymPwDIvIkI3It4aGS4Y/eiutjIimrIEOsSVtzBoFM/9vej9ZvIiENGutzrutlIvve3PtUOpKeVZNsVMEyIEJekd/skPtsnPwqIvge0qwfIiJeVaroIvKejfKeSPt3Ixvs1qwu2fWBIEL4ICgsVM6ekgeedZosdVtmIiF9Ixiw8qw9IiHOIx3efe4nargeTPw6IxVAqVwbbn5eisos1VtMKut1IiFeIvTl+VtubuwMIxosVegeYuwu4qtvIv8kHqtoIkViwcVuIxoskSos1FvedqwgBqtdIxhWIk7s0VtmIv5ekgRwIhMiwj8XIE41IEKeWuwGqutWOqt8IiuqICosSloeDPwq8gi+IhLXzVtYOPt6IihHIk+IIx+8Iv/edoAsxBkeoPw0IEVHyPwINPwpIC5eYSHQIxhKqS5eVqtNHPtVNZFhgBMlIhR5zqwaIxOe6zuZIiWebuwkI34n+PtWrVtsIhIAIEpvIvQ+sPwcIiu/IhgsxuwSeI81IEuZIvesj95sdPwvIv8WIhW3GZDYIC+FgmH4Iv3sjS/eSuwBIh7s1ut1IhLNICAedVwQ" + }, + { + "name": "_renderInfo", + "value": "angle (google, vulkan 1.3.0 (swiftshader device (llvm 10.0.0) (0x0000c0de)), swiftshader driver)" + }, + { + "name": "xhs_context_networkQuality", + "value": "MODERATE" + } + ] + } + ] +} \ No newline at end of file diff --git a/03_卡木(木)/木叶_视频内容/多平台分发/cookies/快手_cookies.json b/03_卡木(木)/木叶_视频内容/多平台分发/cookies/快手_cookies.json new file mode 100644 index 00000000..0d499764 --- /dev/null +++ b/03_卡木(木)/木叶_视频内容/多平台分发/cookies/快手_cookies.json @@ -0,0 +1,25 @@ +{ + "cookies": [ + { + "name": "did", + "value": "web_f861a30bda9307f2a1179ed9e744150219aa", + "domain": ".kuaishou.com", + "path": "/", + "expires": 1807689321.011699, + "httpOnly": false, + "secure": true, + "sameSite": "None" + } + ], + "origins": [ + { + "origin": "https://cp.kuaishou.com", + "localStorage": [ + { + "name": "refresh_last_time_0x0810", + "value": "1773129320784" + } + ] + } + ] +} \ No newline at end of file diff --git a/03_卡木(木)/木叶_视频内容/多平台分发/脚本/cookie_manager.py b/03_卡木(木)/木叶_视频内容/多平台分发/脚本/cookie_manager.py index d80f5efa..f7466db0 100644 --- a/03_卡木(木)/木叶_视频内容/多平台分发/脚本/cookie_manager.py +++ b/03_卡木(木)/木叶_视频内容/多平台分发/脚本/cookie_manager.py @@ -19,6 +19,15 @@ import httpx COOKIE_STORE_DIR = Path(__file__).parent.parent / "cookies" CHANNELS_LEGACY_PATH = Path(__file__).parent.parent.parent / "视频号发布" / "脚本" / "channels_storage_state.json" +_BASE = Path(__file__).parent.parent.parent +PLATFORM_LEGACY_PATHS = { + "视频号": _BASE / "视频号发布" / "脚本" / "channels_storage_state.json", + "B站": _BASE / "B站发布" / "脚本" / "bilibili_storage_state.json", + "快手": _BASE / "快手发布" / "脚本" / "kuaishou_storage_state.json", + "小红书": _BASE / "小红书发布" / "脚本" / "xiaohongshu_storage_state.json", + "抖音": _BASE / "抖音发布" / "脚本" / "douyin_storage_state.json", +} + SUPPORTED_PLATFORMS = ["视频号", "抖音", "快手", "B站", "小红书"] # 各平台默认 cookie 域名 @@ -72,10 +81,10 @@ def load_cookies(platform: str) -> dict[str, str] | None: """ path = get_cookie_path(platform) if not path.exists(): - # 视频号:尝试从旧路径迁移 - if platform == "视频号" and CHANNELS_LEGACY_PATH.exists(): + legacy = PLATFORM_LEGACY_PATHS.get(platform) + if legacy and legacy.exists(): try: - with open(CHANNELS_LEGACY_PATH, "r", encoding="utf-8") as f: + with open(legacy, "r", encoding="utf-8") as f: data = json.load(f) _ensure_cookie_dir() with open(path, "w", encoding="utf-8") as f: @@ -163,16 +172,62 @@ def _check_video_account_valid(cookies: dict[str, str]) -> tuple[bool, str]: return True, "有效" +def _check_bilibili_valid(cookies: dict[str, str]) -> tuple[bool, str]: + """B站:GET /x/web-interface/nav 校验""" + cookie_str = "; ".join(f"{k}={v}" for k, v in cookies.items()) + try: + with httpx.Client(timeout=10) as c: + r = c.get("https://api.bilibili.com/x/web-interface/nav", + headers={"Cookie": cookie_str, "User-Agent": UA}) + body = r.json() + if body.get("code") == 0: + nick = body.get("data", {}).get("uname", "?") + return True, f"有效 (昵称: {nick})" + return False, f"Cookie 过期: {body.get('message', '')}" + except Exception as e: + return False, f"预检异常: {e}" + + +def _check_kuaishou_valid(cookies: dict[str, str]) -> tuple[bool, str]: + """快手:GET 创作者中心用户信息""" + cookie_str = "; ".join(f"{k}={v}" for k, v in cookies.items()) + try: + with httpx.Client(timeout=10) as c: + r = c.get("https://cp.kuaishou.com/rest/pc/user/myInfo", + headers={"Cookie": cookie_str, "User-Agent": UA, + "Referer": "https://cp.kuaishou.com/"}) + body = r.json() + if body.get("result") == 1: + nick = body.get("data", {}).get("userName", "?") + return True, f"有效 (昵称: {nick})" + return False, f"Cookie 过期: {body.get('error_msg', '')}" + except Exception as e: + return False, f"预检异常: {e}" + + +def _check_xiaohongshu_valid(cookies: dict[str, str]) -> tuple[bool, str]: + """小红书:GET 创作者中心用户信息""" + cookie_str = "; ".join(f"{k}={v}" for k, v in cookies.items()) + try: + with httpx.Client(timeout=10) as c: + r = c.get("https://creator.xiaohongshu.com/api/galaxy/user/info", + headers={"Cookie": cookie_str, "User-Agent": UA, + "Referer": "https://creator.xiaohongshu.com/"}) + body = r.json() + if body.get("code") == 0: + nick = body.get("data", {}).get("nick_name", "?") + return True, f"有效 (昵称: {nick})" + return False, f"Cookie 过期: {body.get('msg', '')}" + except Exception as e: + return False, f"预检异常: {e}" + + def _check_platform_stub(platform: str, cookies: dict[str, str]) -> tuple[bool, str]: - """抖音、B站、快手、小红书:暂为 stub,仅检查文件存在和基本结构""" + """通用 stub:仅检查 cookie 存在""" if not cookies: return False, "无 cookie 数据" - # 简单启发:有常见 session 字段则视为可能有效 session_keys = { "抖音": ["sessionid"], - "B站": ["SESSDATA", "bili_jct"], - "快手": ["kuaishou.server.web_st", "userId"], - "小红书": ["web_session", "a1"], } keys = session_keys.get(platform, []) found = any(k in cookies for k in keys) @@ -193,7 +248,13 @@ def check_cookie_valid(platform: str) -> tuple[bool, str]: if platform == "视频号": return _check_video_account_valid(cookies) - if platform in ("抖音", "B站", "快手", "小红书"): + if platform == "B站": + return _check_bilibili_valid(cookies) + if platform == "快手": + return _check_kuaishou_valid(cookies) + if platform == "小红书": + return _check_xiaohongshu_valid(cookies) + if platform == "抖音": return _check_platform_stub(platform, cookies) return False, f"不支持的平台: {platform}" diff --git a/03_卡木(木)/木叶_视频内容/多平台分发/脚本/publish_log.json b/03_卡木(木)/木叶_视频内容/多平台分发/脚本/publish_log.json index 0f8bc93c..642a6759 100644 --- a/03_卡木(木)/木叶_视频内容/多平台分发/脚本/publish_log.json +++ b/03_卡木(木)/木叶_视频内容/多平台分发/脚本/publish_log.json @@ -58,3 +58,13 @@ {"platform": "小红书", "video_path": "/Users/karuo/Movies/soul视频/soul 派对 119场 20260309_output/成片/初期团队先找两个IS,比钱好使 ENFJ链接人,ENTJ指挥.mp4", "title": "创业初期先找两个IS型人格,比融资好使十倍 #MBTI创业 #团队搭建 #小程序 卡若创业派对", "success": false, "status": "failed", "message": "笔记管理页未找到该笔记", "screenshot": "/tmp/xhs_result.png", "elapsed_sec": 23.95564889907837, "timestamp": "2026-03-10 20:41:00"} {"platform": "小红书", "video_path": "/Users/karuo/Movies/soul视频/soul 派对 119场 20260309_output/成片/刷牙听业务逻辑 Soul切片变现怎么跑.mp4", "title": "刷牙3分钟听完一套转化逻辑 #碎片创业 #副业逻辑 #小程序 卡若创业派对", "success": false, "status": "failed", "message": "笔记管理页未找到该笔记", "screenshot": "/tmp/xhs_result.png", "elapsed_sec": 23.785672187805176, "timestamp": "2026-03-10 20:41:47"} {"platform": "小红书", "video_path": "/Users/karuo/Movies/soul视频/soul 派对 119场 20260309_output/成片/国学易经怎么学 两小时七七八八,召唤作者对话.mp4", "title": "易经两小时学个七七八八,关键是跟古人对话 #国学 #易经入门 #小程序 卡若创业派对", "success": false, "status": "failed", "message": "笔记管理页未找到该笔记", "screenshot": "/tmp/xhs_result.png", "elapsed_sec": 23.7487850189209, "timestamp": "2026-03-10 20:42:35"} +{"platform": "小红书", "video_path": "/Users/karuo/Movies/soul视频/soul 派对 119场 20260309_output/成片/MBTI疗愈SOUL 年轻人测MBTI,40到60岁走五行八卦.mp4", "title": "20岁测MBTI,40岁该学五行八卦了 #MBTI #认知觉醒 #小程序 卡若创业派对", "success": true, "status": "published", "message": "页面已重置(发布成功)", "screenshot": "/tmp/xhs_result.png", "elapsed_sec": 26.811036825180054, "timestamp": "2026-03-10 20:44:06"} +{"platform": "小红书", "video_path": "/Users/karuo/Movies/soul视频/soul 派对 119场 20260309_output/成片/Soul业务模型 派对+切片+小程序全链路.mp4", "title": "派对获客→AI切片→小程序转化,全链路拆解 #商业模式 #一人公司 #小程序 卡若创业派对", "success": true, "status": "published", "message": "页面已重置(发布成功)", "screenshot": "/tmp/xhs_result.png", "elapsed_sec": 26.96160101890564, "timestamp": "2026-03-10 20:44:48"} +{"platform": "小红书", "video_path": "/Users/karuo/Movies/soul视频/soul 派对 119场 20260309_output/成片/初期团队先找两个IS,比钱好使 ENFJ链接人,ENTJ指挥.mp4", "title": "创业初期先找两个IS型人格,比融资好使十倍 #MBTI创业 #团队搭建 #小程序 卡若创业派对", "success": true, "status": "published", "message": "页面已重置(发布成功)", "screenshot": "/tmp/xhs_result.png", "elapsed_sec": 29.34863305091858, "timestamp": "2026-03-10 20:45:32"} +{"platform": "小红书", "video_path": "/Users/karuo/Movies/soul视频/soul 派对 119场 20260309_output/成片/刷牙听业务逻辑 Soul切片变现怎么跑.mp4", "title": "刷牙3分钟听完一套转化逻辑 #碎片创业 #副业逻辑 #小程序 卡若创业派对", "success": true, "status": "published", "message": "页面已重置(发布成功)", "screenshot": "/tmp/xhs_result.png", "elapsed_sec": 32.079976081848145, "timestamp": "2026-03-10 20:46:19"} +{"platform": "小红书", "video_path": "/Users/karuo/Movies/soul视频/soul 派对 119场 20260309_output/成片/国学易经怎么学 两小时七七八八,召唤作者对话.mp4", "title": "易经两小时学个七七八八,关键是跟古人对话 #国学 #易经入门 #小程序 卡若创业派对", "success": true, "status": "published", "message": "页面已重置(发布成功)", "screenshot": "/tmp/xhs_result.png", "elapsed_sec": 28.719475984573364, "timestamp": "2026-03-10 20:47:03"} +{"platform": "小红书", "video_path": "/Users/karuo/Movies/soul视频/soul 派对 119场 20260309_output/成片/建立信任不是求来的 卖外挂发邮件三个月拿下德国总代.mp4", "title": "信任不是求来的,发三个月邮件拿下德国总代理 #销售思维 #信任建立 #小程序 卡若创业派对", "success": true, "status": "published", "message": "页面已重置(发布成功)", "screenshot": "/tmp/xhs_result.png", "elapsed_sec": 26.622901916503906, "timestamp": "2026-03-10 20:47:45"} +{"platform": "小红书", "video_path": "/Users/karuo/Movies/soul视频/soul 派对 119场 20260309_output/成片/懒人的活法 动作简单有利可图正反馈.mp4", "title": "懒人也能有收益?动作简单、有利可图、正反馈 #Soul派对 #副业思维 #小程序 卡若创业派对", "success": true, "status": "published", "message": "页面已重置(发布成功)", "screenshot": "/tmp/xhs_result.png", "elapsed_sec": 26.939062118530273, "timestamp": "2026-03-10 20:48:27"} +{"platform": "小红书", "video_path": "/Users/karuo/Movies/soul视频/soul 派对 119场 20260309_output/成片/早起不是为了开派对,是不吵老婆睡觉.mp4", "title": "每天6点起床不是因为自律,是因为老婆还在睡 #Soul派对 #创业日记 #小程序 卡若创业派对", "success": true, "status": "published", "message": "页面已重置(发布成功)", "screenshot": "/tmp/xhs_result.png", "elapsed_sec": 26.36944603919983, "timestamp": "2026-03-10 20:49:08"} +{"platform": "小红书", "video_path": "/Users/karuo/Movies/soul视频/soul 派对 119场 20260309_output/成片/睡眠不好?每天放下一件事,做减法.mp4", "title": "睡不好不是太累,是脑子装太多,每天做减法 #做减法 #心理健康 #小程序 卡若创业派对", "success": true, "status": "published", "message": "页面已重置(发布成功)", "screenshot": "/tmp/xhs_result.png", "elapsed_sec": 25.956181049346924, "timestamp": "2026-03-10 20:49:49"} +{"platform": "小红书", "video_path": "/Users/karuo/Movies/soul视频/soul 派对 119场 20260309_output/成片/金融AI获客体系 后端30人沉淀12年,前端丢手机.mp4", "title": "后端30人沉淀12年,前端就丢个手机号 #AI获客 #系统思维 #小程序 卡若创业派对", "success": true, "status": "published", "message": "页面已重置(发布成功)", "screenshot": "/tmp/xhs_result.png", "elapsed_sec": 26.69490694999695, "timestamp": "2026-03-10 20:50:31"} diff --git a/03_卡木(木)/木叶_视频内容/小红书发布/脚本/xiaohongshu_storage_state.json b/03_卡木(木)/木叶_视频内容/小红书发布/脚本/xiaohongshu_storage_state.json index 007029d4..107a72a4 100644 --- a/03_卡木(木)/木叶_视频内容/小红书发布/脚本/xiaohongshu_storage_state.json +++ b/03_卡木(木)/木叶_视频内容/小红书发布/脚本/xiaohongshu_storage_state.json @@ -1 +1 @@ -{"cookies": [{"name": "acw_tc", "value": "0a0d068317731459544511184e7f11e7ee22303f7a40238fa5613f4eb6702a", "domain": "creator.xiaohongshu.com", "path": "/", "expires": 1773147754.395959, "httpOnly": true, "secure": false, "sameSite": "Lax"}, {"name": "xsecappid", "value": "ugc", "domain": ".xiaohongshu.com", "path": "/", "expires": 1804682664, "httpOnly": false, "secure": false, "sameSite": "Lax"}, {"name": "a1", "value": "19cd7bc1c751fyh9lntys4dzu93cfib0sfovi8mcw30000273597", "domain": ".xiaohongshu.com", "path": "/", "expires": 1804681955, "httpOnly": false, "secure": false, "sameSite": "Lax"}, {"name": "webId", "value": "6a6cd657224a4e256b12b847a79711c4", "domain": ".xiaohongshu.com", "path": "/", "expires": 1804681955, "httpOnly": false, "secure": false, "sameSite": "Lax"}, {"name": "acw_tc", "value": "0ad58cf017731459558476280efbf9edfae628268bace974a9335ca1712227", "domain": "edith.xiaohongshu.com", "path": "/", "expires": 1773147755.795373, "httpOnly": true, "secure": false, "sameSite": "Lax"}, {"name": "acw_tc", "value": "0a0d01bc17731459559398103e7ac7810e5fc179199ff12d3e204185602919", "domain": "customer.xiaohongshu.com", "path": "/", "expires": 1773147755.915278, "httpOnly": true, "secure": false, "sameSite": "Lax"}, {"name": "gid", "value": "yjSfWDSJjJMSyjSfWDSySiY6W2yivxj1I9vMlSE4fu7jqhq8Si3D83888JWq2jW8SiJjJii0", "domain": ".xiaohongshu.com", "path": "/", "expires": 1807706667.143023, "httpOnly": false, "secure": false, "sameSite": "Lax"}, {"name": "customer-sso-sid", "value": "68c517615603922284478469rptt2mwjgogfti8m", "domain": ".xiaohongshu.com", "path": "/", "expires": 1773750762.487704, "httpOnly": true, "secure": false, "sameSite": "Lax"}, {"name": "x-user-id-creator.xiaohongshu.com", "value": "63b3cb6f000000002502c21d", "domain": ".xiaohongshu.com", "path": "/", "expires": 1807705963.487751, "httpOnly": true, "secure": false, "sameSite": "Lax"}, {"name": "customerClientId", "value": "172893742756372", "domain": ".xiaohongshu.com", "path": "/", "expires": 1807705963.487788, "httpOnly": true, "secure": false, "sameSite": "Lax"}, {"name": "access-token-creator.xiaohongshu.com", "value": "customer.creator.AT-68c5176156039222844620815tecrfvr71dngizv", "domain": ".xiaohongshu.com", "path": "/", "expires": 1775737962.4878, "httpOnly": true, "secure": false, "sameSite": "Lax"}, {"name": "galaxy_creator_session_id", "value": "6ZdVvWjMwbN5FGk6Q39utKCwjaXS4uP7UvNj", "domain": ".xiaohongshu.com", "path": "/", "expires": 1775737963.487811, "httpOnly": true, "secure": false, "sameSite": "Lax"}, {"name": "galaxy.creator.beaker.session.id", "value": "1773145963473064900889", "domain": ".xiaohongshu.com", "path": "/", "expires": 1775737963.487825, "httpOnly": true, "secure": false, "sameSite": "Lax"}, {"name": "acw_tc", "value": "0a00de9917731463146134664e1f1f063d66f120924ddb04720828f7d5fd42", "domain": "www.xiaohongshu.com", "path": "/", "expires": 1773148114.555781, "httpOnly": true, "secure": false, "sameSite": "Lax"}, {"name": "websectiga", "value": "59d3ef1e60c4aa37a7df3c23467bd46d7f1da0c1918cf335ee7f2e9e52ac04cf", "domain": ".xiaohongshu.com", "path": "/", "expires": 1773405822, "httpOnly": false, "secure": false, "sameSite": "Lax"}, {"name": "sec_poison_id", "value": "e3809d74-a483-4f9a-8625-3127e8b73437", "domain": ".xiaohongshu.com", "path": "/", "expires": 1773147227, "httpOnly": false, "secure": false, "sameSite": "Lax"}, {"name": "loadts", "value": "1773146664042", "domain": ".xiaohongshu.com", "path": "/", "expires": 1804682664, "httpOnly": false, "secure": false, "sameSite": "Lax"}], "origins": [{"origin": "https://creator.xiaohongshu.com", "localStorage": [{"name": "USER_INFO_FOR_BIZ", "value": "{\"userId\":\"63b3cb6f000000002502c21d\",\"userName\":\"#\u5361\u82e5\ud83d\udd25(4:00\u8d77\u5e8a\u7684\u7537\u4eba)\",\"userAvatar\":\"https://sns-avatar-qc.xhscdn.com/avatar/65a68110d4b53385b6a72ed1.jpg?imageView2/2/w/80/format/jpg\",\"redId\":\"6244231151\",\"role\":\"creator\",\"permissions\":[\"creatorCollege\",\"creatorWiki\",\"noteInspiration\",\"creatorHome\",\"creatorData\",\"USER_GROUP\",\"creatorActivityCenter\",\"ORIGINAL_STATEMENT\"],\"zone\":\"86\",\"phone\":\"15880802661\",\"relatedUserId\":null,\"relatedUserName\":null,\"kolCoOrder\":false}"}, {"name": "uploader-permit-video-spectrum", "value": "{\"MBTI\u7597\u6108SOUL \u5e74\u8f7b\u4eba\u6d4bMBTI\uff0c40\u523060\u5c81\u8d70\u4e94\u884c\u516b\u5366.mp4-10459668\":null,\"Soul\u4e1a\u52a1\u6a21\u578b \u6d3e\u5bf9+\u5207\u7247+\u5c0f\u7a0b\u5e8f\u5168\u94fe\u8def.mp4-10740368\":null,\"Soul\u5207\u724730\u79d2\u52308\u5206\u949f AI\u534a\u5c0f\u65f6\u80fd\u526a10\u523030\u4e2a.mp4-14677795\":null,\"\u521d\u671f\u56e2\u961f\u5148\u627e\u4e24\u4e2aIS\uff0c\u6bd4\u94b1\u597d\u4f7f ENFJ\u94fe\u63a5\u4eba\uff0cENTJ\u6307\u6325.mp4-15709935\":null,\"\u5237\u7259\u542c\u4e1a\u52a1\u903b\u8f91 Soul\u5207\u7247\u53d8\u73b0\u600e\u4e48\u8dd1.mp4-11455089\":null,\"\u56fd\u5b66\u6613\u7ecf\u600e\u4e48\u5b66 \u4e24\u5c0f\u65f6\u4e03\u4e03\u516b\u516b\uff0c\u53ec\u5524\u4f5c\u8005\u5bf9\u8bdd.mp4-9598781\":null}"}, {"name": "publish-uploader-history-upload-speed", "value": "[{\"speed\":[3.7155297532656024],\"domain\":\"ros-upload.xiaohongshu.com\",\"timestamp\":1773146666959},{\"speed\":[3.261146496815287],\"domain\":\"ros-upload-d4.xhscdn.com\",\"timestamp\":1773146668529},{\"speed\":[4.05],\"domain\":\"ros-upload-acc-ali.xiaohongshu.com\",\"timestamp\":1773146672352}]"}, {"name": "snsWebPublishCurrentUser", "value": "63b3cb6f000000002502c21d"}, {"name": "USER_INFO", "value": "{\"user\":{\"type\":\"User\",\"value\":{\"userId\":\"63b3cb6f000000002502c21d\",\"loginUserType\":\"creator\"}}}"}, {"name": "NEW_XHS_ABTEST_REPORT_KEY", "value": "{\"6a6cd657224a4e256b12b847a79711c463b3cb6f000000002502c21d\":\"2026-03-10\"}"}, {"name": "b1b1", "value": "1"}, {"name": "score_display", "value": "1"}, {"name": "p1", "value": "19"}, {"name": "nps-userId", "value": "63b3cb6f000000002502c21d"}, {"name": "_speedList", "value": "[{\"ts\":1773146437281,\"speed\":85982110.66666667},{\"ts\":1773146437284,\"speed\":53834018},{\"ts\":1773146486551,\"speed\":258966999.66666666},{\"ts\":1773146486574,\"speed\":80263882.33333333},{\"ts\":1773146533014,\"speed\":212938190.33333334},{\"ts\":1773146533039,\"speed\":35778773},{\"ts\":1773146629513,\"speed\":224096194.33333334},{\"ts\":1773146629537,\"speed\":79234648},{\"ts\":1773146670402,\"speed\":274824999.6666667},{\"ts\":1773146670428,\"speed\":59023931.333333336}]"}, {"name": "score_timestamp", "value": "1773146405848"}, {"name": "last_tiga_update_time", "value": "1773146622433"}, {"name": "uploader-permit-image-spectrum", "value": "{\"cover.jpeg-304598\":null,\"cover.jpeg-271507\":null,\"cover.jpeg-297124\":null}"}, {"name": "sdt_source_storage_key", "value": "{\"url\":\"https://fe-static.xhscdn.com/as/v2/fp/962356ead351e7f2422eb57edff6982d.js\",\"desVersion\":\"2\",\"signVersion\":\"1\",\"extraInfo\":{},\"reportUrl\":\"/api/sec/v1/shield/webprofile\",\"validate\":false,\"commonPatch\":[\"/fe_api/burdock/v2/note/post\",\"/api/sns/web/v1/comment/post\",\"/api/sns/web/v1/note/like\",\"/api/sns/web/v1/note/collect\",\"/api/sns/web/v1/user/follow\",\"/api/sns/web/v1/feed\",\"/api/sns/web/v1/login/activate\",\"/api/sns/web/v1/note/metrics_report\",\"/api/redcaptcha\",\"/api/store/jpd/main\",\"/phoenix/api/strategy/getAppStrategy\",\"/web_api/sns/v2/note\"],\"signUrl\":\"https://fe-static.xhscdn.com/as/v1/f218/a15/public/04b29480233f4def5c875875b6bdc3b1.js\",\"xhsTokenUrl\":\"https://fe-static.xhscdn.com/as/v1/3e44/public/bf7d4e32677698655a5cadc581fd09b3.js\"}"}, {"name": "b1", "value": "I38rHdgsjopgIvesdVwgIC+oIELmBZ5e3VwXLgFTIxS3bqwErFeexd0ekncAzMFYnqthIhJeSBMDKutRI3KsYorWHPtGrbi0P9WfIi/eWc6eYqtyQApPI37ekmR6QLQ5Ii6sdneeSfqYHqwl2qt5B0DBIx+PGDV/sutkIx0sxuwr4qtiIhuaIE3e3LV0I3VTIC7e0Vtl2ADmsLveDSKsSPw5IEvsiVtJOqw8BuwfPpdeTFWOIx4TIiu6ZPwrPut5IvlaLbgs3qtxIxes1VwHIkumIkIyejgsY/WTge7eSqte/D7sDcpipedeYrDtIC6eDVw2IENsSqtlnlSuNjVtIvoekqt3cZ7sVo4gIESyIhE2NBquIxhnqz8gIkIfoqwkICZWG73sdlOeVPw3IvAe0fged0MnIi5s3I4S2utAIiKsidvekZNeTPt4nAOeWPwEIvY/c07efqwRg9esDuwPI38rIxE5Luwwaqw+rekhZANe1MNe0Pw9ICNsVLoeSbIFIkosSr7sVnFiIkgsVVtMIiudqqw+tqtWI30e3PwjIENeTVthIh/sYqtSGqwymPwDIvIkI3It4aGS4Y/eiutjIimrIEOsSVtzBoFM/9vej9ZvIiENGutzrutlIvve3PtUOpKeTINsVMEyIEJekd/skPtsnPwqIvgejqwfIiJeVUroIv/ejfKeDut3Ixvs1qwu2fWBIEL4ICgsVM6ekgeedZosdVtmIiF9Ixiw8qw9IiHOIx3efe4nargeTPw6IxVAqVwbbn5eisos1VtMKut1IiFeIvTl+VtubuwMIxosVegeYuwu4qtvIv8kHqtoIkViwcVuIxoskSos1FvedqwgBqtdIxhWIk7s0VtmIv5ekgRwIhMiwj8XIE41IEKeWuwGqutWOqt8IiuqICosSloeDPwq8gi+IhLXzVtYOPt6IihHIk+IIx+8Iv/edoAsxBkeoPw0IEVHyPwINPwpIC5eYSHQIxhKqS5eVqtNHPtVNZFhgBMlIhR5zqwaIxOe6zuZIiWebuwkI34n+PtWrVtsIhIAIEpvIvQ+sPwcIiu/IhgsxuwSeI81IEuZIvesj95sdPwvIv8WIhW3GZDYIC+FgmH4Iv3sjS/eSuwBIh7s1ut1IhLNICAedVwQ"}, {"name": "_renderInfo", "value": "angle (google, vulkan 1.3.0 (swiftshader device (llvm 10.0.0) (0x0000c0de)), swiftshader driver)"}, {"name": "xhs_context_networkQuality", "value": "WEAK"}]}]} \ No newline at end of file +{"cookies": [{"name": "acw_tc", "value": "0a0d068317731459544511184e7f11e7ee22303f7a40238fa5613f4eb6702a", "domain": "creator.xiaohongshu.com", "path": "/", "expires": 1773147754.395959, "httpOnly": true, "secure": false, "sameSite": "Lax"}, {"name": "xsecappid", "value": "ugc", "domain": ".xiaohongshu.com", "path": "/", "expires": 1804683007, "httpOnly": false, "secure": false, "sameSite": "Lax"}, {"name": "a1", "value": "19cd7bc1c751fyh9lntys4dzu93cfib0sfovi8mcw30000273597", "domain": ".xiaohongshu.com", "path": "/", "expires": 1804681955, "httpOnly": false, "secure": false, "sameSite": "Lax"}, {"name": "webId", "value": "6a6cd657224a4e256b12b847a79711c4", "domain": ".xiaohongshu.com", "path": "/", "expires": 1804681955, "httpOnly": false, "secure": false, "sameSite": "Lax"}, {"name": "acw_tc", "value": "0ad58cf017731459558476280efbf9edfae628268bace974a9335ca1712227", "domain": "edith.xiaohongshu.com", "path": "/", "expires": 1773147755.795373, "httpOnly": true, "secure": false, "sameSite": "Lax"}, {"name": "acw_tc", "value": "0a0d01bc17731459559398103e7ac7810e5fc179199ff12d3e204185602919", "domain": "customer.xiaohongshu.com", "path": "/", "expires": 1773147755.915278, "httpOnly": true, "secure": false, "sameSite": "Lax"}, {"name": "gid", "value": "yjSfWDSJjJMSyjSfWDSySiY6W2yivxj1I9vMlSE4fu7jqhq8Si3D83888JWq2jW8SiJjJii0", "domain": ".xiaohongshu.com", "path": "/", "expires": 1807707010.076645, "httpOnly": false, "secure": false, "sameSite": "Lax"}, {"name": "customer-sso-sid", "value": "68c517615603922284478469rptt2mwjgogfti8m", "domain": ".xiaohongshu.com", "path": "/", "expires": 1773750762.487704, "httpOnly": true, "secure": false, "sameSite": "Lax"}, {"name": "x-user-id-creator.xiaohongshu.com", "value": "63b3cb6f000000002502c21d", "domain": ".xiaohongshu.com", "path": "/", "expires": 1807705963.487751, "httpOnly": true, "secure": false, "sameSite": "Lax"}, {"name": "customerClientId", "value": "172893742756372", "domain": ".xiaohongshu.com", "path": "/", "expires": 1807705963.487788, "httpOnly": true, "secure": false, "sameSite": "Lax"}, {"name": "access-token-creator.xiaohongshu.com", "value": "customer.creator.AT-68c5176156039222844620815tecrfvr71dngizv", "domain": ".xiaohongshu.com", "path": "/", "expires": 1775737962.4878, "httpOnly": true, "secure": false, "sameSite": "Lax"}, {"name": "galaxy_creator_session_id", "value": "6ZdVvWjMwbN5FGk6Q39utKCwjaXS4uP7UvNj", "domain": ".xiaohongshu.com", "path": "/", "expires": 1775737963.487811, "httpOnly": true, "secure": false, "sameSite": "Lax"}, {"name": "galaxy.creator.beaker.session.id", "value": "1773145963473064900889", "domain": ".xiaohongshu.com", "path": "/", "expires": 1775737963.487825, "httpOnly": true, "secure": false, "sameSite": "Lax"}, {"name": "acw_tc", "value": "0a00de9917731463146134664e1f1f063d66f120924ddb04720828f7d5fd42", "domain": "www.xiaohongshu.com", "path": "/", "expires": 1773148114.555781, "httpOnly": true, "secure": false, "sameSite": "Lax"}, {"name": "websectiga", "value": "2a3d3ea002e7d92b5c9743590ebd24010cf3750ff3af8029153751e41a6af4a3", "domain": ".xiaohongshu.com", "path": "/", "expires": 1773406124, "httpOnly": false, "secure": false, "sameSite": "Lax"}, {"name": "sec_poison_id", "value": "4b0502b9-b989-4527-9518-9458710cca3d", "domain": ".xiaohongshu.com", "path": "/", "expires": 1773147529, "httpOnly": false, "secure": false, "sameSite": "Lax"}, {"name": "loadts", "value": "1773147007432", "domain": ".xiaohongshu.com", "path": "/", "expires": 1804683007, "httpOnly": false, "secure": false, "sameSite": "Lax"}], "origins": [{"origin": "https://creator.xiaohongshu.com", "localStorage": [{"name": "USER_INFO_FOR_BIZ", "value": "{\"userId\":\"63b3cb6f000000002502c21d\",\"userName\":\"#\u5361\u82e5\ud83d\udd25(4:00\u8d77\u5e8a\u7684\u7537\u4eba)\",\"userAvatar\":\"https://sns-avatar-qc.xhscdn.com/avatar/65a68110d4b53385b6a72ed1.jpg?imageView2/2/w/80/format/jpg\",\"redId\":\"6244231151\",\"role\":\"creator\",\"permissions\":[\"creatorCollege\",\"creatorWiki\",\"noteInspiration\",\"creatorHome\",\"creatorData\",\"USER_GROUP\",\"creatorActivityCenter\",\"ORIGINAL_STATEMENT\"],\"zone\":\"86\",\"phone\":\"15880802661\",\"relatedUserId\":null,\"relatedUserName\":null,\"kolCoOrder\":false}"}, {"name": "uploader-permit-video-spectrum", "value": "{\"MBTI\u7597\u6108SOUL \u5e74\u8f7b\u4eba\u6d4bMBTI\uff0c40\u523060\u5c81\u8d70\u4e94\u884c\u516b\u5366.mp4-10459668\":null,\"Soul\u4e1a\u52a1\u6a21\u578b \u6d3e\u5bf9+\u5207\u7247+\u5c0f\u7a0b\u5e8f\u5168\u94fe\u8def.mp4-10740368\":null,\"Soul\u5207\u724730\u79d2\u52308\u5206\u949f AI\u534a\u5c0f\u65f6\u80fd\u526a10\u523030\u4e2a.mp4-14677795\":null,\"\u521d\u671f\u56e2\u961f\u5148\u627e\u4e24\u4e2aIS\uff0c\u6bd4\u94b1\u597d\u4f7f ENFJ\u94fe\u63a5\u4eba\uff0cENTJ\u6307\u6325.mp4-15709935\":null,\"\u5237\u7259\u542c\u4e1a\u52a1\u903b\u8f91 Soul\u5207\u7247\u53d8\u73b0\u600e\u4e48\u8dd1.mp4-11455089\":null,\"\u56fd\u5b66\u6613\u7ecf\u600e\u4e48\u5b66 \u4e24\u5c0f\u65f6\u4e03\u4e03\u516b\u516b\uff0c\u53ec\u5524\u4f5c\u8005\u5bf9\u8bdd.mp4-9598781\":null,\"\u5efa\u7acb\u4fe1\u4efb\u4e0d\u662f\u6c42\u6765\u7684 \u5356\u5916\u6302\u53d1\u90ae\u4ef6\u4e09\u4e2a\u6708\u62ff\u4e0b\u5fb7\u56fd\u603b\u4ee3.mp4-10091673\":null,\"\u61d2\u4eba\u7684\u6d3b\u6cd5 \u52a8\u4f5c\u7b80\u5355\u6709\u5229\u53ef\u56fe\u6b63\u53cd\u9988.mp4-7059868\":null,\"\u65e9\u8d77\u4e0d\u662f\u4e3a\u4e86\u5f00\u6d3e\u5bf9\uff0c\u662f\u4e0d\u5435\u8001\u5a46\u7761\u89c9.mp4-5788932\":null,\"\u7761\u7720\u4e0d\u597d\uff1f\u6bcf\u5929\u653e\u4e0b\u4e00\u4ef6\u4e8b\uff0c\u505a\u51cf\u6cd5.mp4-7022452\":null,\"\u91d1\u878dAI\u83b7\u5ba2\u4f53\u7cfb \u540e\u7aef30\u4eba\u6c89\u6dc012\u5e74\uff0c\u524d\u7aef\u4e22\u624b\u673a.mp4-13904487\":null}"}, {"name": "publish-uploader-history-upload-speed", "value": "[{\"speed\":[4.2139917695473255],\"domain\":\"ros-upload.xiaohongshu.com\",\"timestamp\":1773147009454},{\"speed\":[3.263224984066284],\"domain\":\"ros-upload-d4.xhscdn.com\",\"timestamp\":1773147011023}]"}, {"name": "snsWebPublishCurrentUser", "value": "63b3cb6f000000002502c21d"}, {"name": "USER_INFO", "value": "{\"user\":{\"type\":\"User\",\"value\":{\"userId\":\"63b3cb6f000000002502c21d\",\"loginUserType\":\"creator\"}}}"}, {"name": "NEW_XHS_ABTEST_REPORT_KEY", "value": "{\"6a6cd657224a4e256b12b847a79711c463b3cb6f000000002502c21d\":\"2026-03-10\"}"}, {"name": "b1b1", "value": "1"}, {"name": "score_display", "value": "1"}, {"name": "p1", "value": "27"}, {"name": "nps-userId", "value": "63b3cb6f000000002502c21d"}, {"name": "_speedList", "value": "[{\"ts\":1773146850016,\"speed\":107953861},{\"ts\":1773146850040,\"speed\":44932428},{\"ts\":1773146892407,\"speed\":145028849},{\"ts\":1773146892428,\"speed\":76504524.66666667},{\"ts\":1773146930414,\"speed\":203671940.33333334},{\"ts\":1773146930432,\"speed\":54714832.666666664},{\"ts\":1773146972441,\"speed\":201955666.66666666},{\"ts\":1773146972464,\"speed\":47211918.666666664},{\"ts\":1773147013892,\"speed\":285466777.6666667},{\"ts\":1773147013923,\"speed\":60348616.333333336}]"}, {"name": "score_timestamp", "value": "1773146405848"}, {"name": "last_tiga_update_time", "value": "1773146924939"}, {"name": "uploader-permit-image-spectrum", "value": "{\"cover.jpeg-304598\":null,\"cover.jpeg-271507\":null,\"cover.jpeg-297124\":null,\"cover.jpeg-295955\":null,\"cover.jpeg-287062\":null,\"cover.jpeg-293020\":null,\"cover.jpeg-308663\":null}"}, {"name": "sdt_source_storage_key", "value": "{\"signUrl\":\"https://fe-static.xhscdn.com/as/v1/f218/a15/public/04b29480233f4def5c875875b6bdc3b1.js\",\"url\":\"https://fe-static.xhscdn.com/as/v2/fp/962356ead351e7f2422eb57edff6982d.js\",\"reportUrl\":\"/api/sec/v1/shield/webprofile\",\"desVersion\":\"2\",\"validate\":false,\"commonPatch\":[\"/fe_api/burdock/v2/note/post\",\"/api/sns/web/v1/comment/post\",\"/api/sns/web/v1/note/like\",\"/api/sns/web/v1/note/collect\",\"/api/sns/web/v1/user/follow\",\"/api/sns/web/v1/feed\",\"/api/sns/web/v1/login/activate\",\"/api/sns/web/v1/note/metrics_report\",\"/api/redcaptcha\",\"/api/store/jpd/main\",\"/phoenix/api/strategy/getAppStrategy\",\"/web_api/sns/v2/note\"],\"signVersion\":\"1\",\"xhsTokenUrl\":\"https://fe-static.xhscdn.com/as/v1/3e44/public/bf7d4e32677698655a5cadc581fd09b3.js\",\"extraInfo\":{}}"}, {"name": "b1", "value": "I38rHdgsjopgIvesdVwgIC+oIELmBZ5e3VwXLgFTIxS3bqwErFeexd0ekncAzMFYnqthIhJeSBMDKutRI3KsYorWHPtGrbi0P9WfIi/eWc6eYqtyQApPI37ekmR6QLQ5Ii6sdneeSfqYHqwl2qt5B0DBIx+PGDV/sutkIx0sxuwr4qtiIhuaIE3e3LV0I3VTIC7e0Vtl2ADmsLveDSKsSPw5IEvsiVtJOqw8BuwfPpdeTFWOIx4TIiu6ZPwrPut5IvlaLbgs3qtxIxes1VwHIkumIkIyejgsY/WTge7eSqte/D7sDcpipedeYrDtIC6eDVw2IENsSqtlnlSuNjVtIvoekqt3cZ7sVo4gIESyIhE4HfquIxhnqz8gIkIfoqwkICZWG73sdlOeVPw3IvAe0fged0MnIi5s3I4S2utAIiKsidvekZNeTPt4nAOeWPwEIvY/c07efPwvpn7sSqwrI3MrIxE5Luwwaqw+rekhZANe1MNe0Pw9ICNsVLoeSbIFIkosSr7sVnFiIkgsVVtMIiudqqw+tqtWI30e3PwjIENeTVthIh/sYqtSGqwymPwDIvIkI3It4aGS4Y/eiutjIimrIEOsSVtzBoFM/9vej9ZvIiENGutzrutlIvve3PtUOpKeVZNsVMEyIEJekd/skPtsnPwqIvge0qwfIiJeVaroIvKejfKeSPt3Ixvs1qwu2fWBIEL4ICgsVM6ekgeedZosdVtmIiF9Ixiw8qw9IiHOIx3efe4nargeTPw6IxVAqVwbbn5eisos1VtMKut1IiFeIvTl+VtubuwMIxosVegeYuwu4qtvIv8kHqtoIkViwcVuIxoskSos1FvedqwgBqtdIxhWIk7s0VtmIv5ekgRwIhMiwj8XIE41IEKeWuwGqutWOqt8IiuqICosSloeDPwq8gi+IhLXzVtYOPt6IihHIk+IIx+8Iv/edoAsxBkeoPw0IEVHyPwINPwpIC5eYSHQIxhKqS5eVqtNHPtVNZFhgBMlIhR5zqwaIxOe6zuZIiWebuwkI34n+PtWrVtsIhIAIEpvIvQ+sPwcIiu/IhgsxuwSeI81IEuZIvesj95sdPwvIv8WIhW3GZDYIC+FgmH4Iv3sjS/eSuwBIh7s1ut1IhLNICAedVwQ"}, {"name": "_renderInfo", "value": "angle (google, vulkan 1.3.0 (swiftshader device (llvm 10.0.0) (0x0000c0de)), swiftshader driver)"}, {"name": "xhs_context_networkQuality", "value": "MODERATE"}]}]} \ No newline at end of file diff --git a/03_卡木(木)/木叶_视频内容/快手发布/脚本/kuaishou_publish.py b/03_卡木(木)/木叶_视频内容/快手发布/脚本/kuaishou_publish.py index 07b582c7..27642e25 100644 --- a/03_卡木(木)/木叶_视频内容/快手发布/脚本/kuaishou_publish.py +++ b/03_卡木(木)/木叶_视频内容/快手发布/脚本/kuaishou_publish.py @@ -222,10 +222,15 @@ async def publish_one(video_path: str, title: str, idx: int = 1, total: int = 1, async def main(): from publish_result import print_summary, save_results + from cookie_manager import check_cookie_valid - if not COOKIE_FILE.exists(): - print("[✗] Cookie 不存在") + print("=== 账号预检 ===", flush=True) + ok, info = check_cookie_valid("快手") + print(f" 快手: {info}", flush=True) + if not ok: + print("[✗] 账号预检不通过,终止发布", flush=True) return 1 + print() videos = sorted(VIDEO_DIR.glob("*.mp4")) if not videos: diff --git a/03_卡木(木)/木叶_视频内容/视频号发布/脚本/channels_publish.py b/03_卡木(木)/木叶_视频内容/视频号发布/脚本/channels_publish.py index ee297e1f..4b8ddf23 100644 --- a/03_卡木(木)/木叶_视频内容/视频号发布/脚本/channels_publish.py +++ b/03_卡木(木)/木叶_视频内容/视频号发布/脚本/channels_publish.py @@ -391,10 +391,15 @@ async def publish_one( # --------------------------------------------------------------------------- async def main(): from publish_result import print_summary, save_results + from cookie_manager import check_cookie_valid - if not COOKIE_FILE.exists(): - print("[✗] Cookie 不存在,请先运行 channels_login.py 扫码") + print("=== 账号预检 ===", flush=True) + ok, info = check_cookie_valid("视频号") + print(f" 视频号: {info}", flush=True) + if not ok: + print("[✗] 账号预检不通过,终止发布", flush=True) return 1 + print() videos = sorted(VIDEO_DIR.glob("*.mp4")) if not videos: diff --git a/运营中枢/工作台/gitea_push_log.md b/运营中枢/工作台/gitea_push_log.md index 544b218c..152c084d 100644 --- a/运营中枢/工作台/gitea_push_log.md +++ b/运营中枢/工作台/gitea_push_log.md @@ -274,3 +274,4 @@ | 2026-03-10 19:50:33 | 🔄 卡若AI 同步 2026-03-10 19:50 | 更新:运营中枢工作台 | 排除 >20MB: 11 个 | | 2026-03-10 20:05:38 | 🔄 卡若AI 同步 2026-03-10 20:05 | 更新:运营中枢工作台 | 排除 >20MB: 11 个 | | 2026-03-10 20:26:50 | 🔄 卡若AI 同步 2026-03-10 20:26 | 更新:卡木、运营中枢工作台 | 排除 >20MB: 11 个 | +| 2026-03-10 20:45:03 | 🔄 卡若AI 同步 2026-03-10 20:45 | 更新:卡木、运营中枢工作台 | 排除 >20MB: 11 个 | diff --git a/运营中枢/工作台/代码管理.md b/运营中枢/工作台/代码管理.md index fb0eda68..e5f423d0 100644 --- a/运营中枢/工作台/代码管理.md +++ b/运营中枢/工作台/代码管理.md @@ -277,3 +277,4 @@ | 2026-03-10 19:50:33 | 成功 | 成功 | 🔄 卡若AI 同步 2026-03-10 19:50 | 更新:运营中枢工作台 | 排除 >20MB: 11 个 | [仓库](http://open.quwanzhi.com:3000/fnvtk/karuo-ai) [百科](http://open.quwanzhi.com:3000/fnvtk/karuo-ai/wiki) | | 2026-03-10 20:05:38 | 成功 | 成功 | 🔄 卡若AI 同步 2026-03-10 20:05 | 更新:运营中枢工作台 | 排除 >20MB: 11 个 | [仓库](http://open.quwanzhi.com:3000/fnvtk/karuo-ai) [百科](http://open.quwanzhi.com:3000/fnvtk/karuo-ai/wiki) | | 2026-03-10 20:26:50 | 成功 | 成功 | 🔄 卡若AI 同步 2026-03-10 20:26 | 更新:卡木、运营中枢工作台 | 排除 >20MB: 11 个 | [仓库](http://open.quwanzhi.com:3000/fnvtk/karuo-ai) [百科](http://open.quwanzhi.com:3000/fnvtk/karuo-ai/wiki) | +| 2026-03-10 20:45:03 | 成功 | 成功 | 🔄 卡若AI 同步 2026-03-10 20:45 | 更新:卡木、运营中枢工作台 | 排除 >20MB: 11 个 | [仓库](http://open.quwanzhi.com:3000/fnvtk/karuo-ai) [百科](http://open.quwanzhi.com:3000/fnvtk/karuo-ai/wiki) |