From 3a0a0a5dc464f7f4025c19a77b3fd9797de0e5c1 Mon Sep 17 00:00:00 2001
From: SessionHu <102411014+SessionHu@users.noreply.github.com>
Date: Fri, 11 Jul 2025 21:00:29 +0800
Subject: [PATCH] feat(dynamic): merge topic & tag_dynamic
---
README.md | 4 +-
docs/dynamic/card_info.md | 2 +-
docs/dynamic/tag_dynamics.md | 7931 ---------------------------------
docs/dynamic/topic.md | 7933 +++++++++++++++++++++++++++++++++-
4 files changed, 7934 insertions(+), 7936 deletions(-)
delete mode 100644 docs/dynamic/tag_dynamics.md
diff --git a/README.md b/README.md
index ea7d182..3c67126 100644
--- a/README.md
+++ b/README.md
@@ -172,12 +172,10 @@ B站 API 采用 C/S 结构,大多数接口为 REST API 和 gRPC,少部分接
- [ ] [获取动态详情](docs/dynamic/detail.md)
- [ ] [动态类型对照](docs/dynamic/dynamic_enum.md)
- [ ] [动态信息](docs/dynamic/content.md)
- - [ ] [话题搜索](docs/dynamic/topic.md)
- [ ] [发送 & 转载动态](docs/dynamic/publish.md)
- [ ] [根据关键字搜索用户(at 别人时的填充列表)](docs/dynamic/atlist.md)
- [ ] [操作](docs/dynamic/action.md)
- - [ ] 动态列表
- - [x] [特定话题动态列表](docs/dynamic/tag_dynamics.md)
+ - [ ] [话题](docs/dynamic/topic.md)
- [ ] [动态内容](docs/dynamic/get_dynamic_detail.md)
- [ ] [导航栏动态](docs/dynamic/nav.md)
- [x] [首页公告栏](docs/dynamic/banner.md)
diff --git a/docs/dynamic/card_info.md b/docs/dynamic/card_info.md
index d0ff84c..cf7195d 100644
--- a/docs/dynamic/card_info.md
+++ b/docs/dynamic/card_info.md
@@ -1,6 +1,6 @@
# 动态详细信息字段
-不同动态内容卡片的具体信息。包含在***获取特定动态卡片信息,话题下特定动态信息***等API的Json回复中。
+不同动态内容卡片的具体信息。包含在 [获取特定动态卡片信息](get_dynamic_detail.md#获取特定动态卡片信息),[话题下特定动态信息](topic.md#话题下特定动态信息) 等 API 的 JSON 回复中
以card字段的形式出现,内容为一个可被解析为Json对象的字符串。
diff --git a/docs/dynamic/tag_dynamics.md b/docs/dynamic/tag_dynamics.md
deleted file mode 100644
index e4d8dcc..0000000
--- a/docs/dynamic/tag_dynamics.md
+++ /dev/null
@@ -1,7931 +0,0 @@
-# 话题下特定动态信息
-
-## 获取包含置顶及热门的动态列表
-
-> https://api.vc.bilibili.com/topic_svr/v1/topic_svr/fetch_dynamics
-
-*请求方式:GET*
-
-**url参数:**
-
-| 参数名 | 类型 | 内容 | 必要性 | 备注 |
-| ------------ | ---- | ---------- | ------ | -------- |
-| topic_name | str | 话题名称 | 必要(可选) | topic_id与topic_name任选一个 |
-| topic_id | num | 话题id | 必要(可选) | topic_id与topic_name任选一个 |
-| sortby | num | 排序方式 | 非必要 | 一般情况下带上参数2,在部分话题中使用可以排除热门部分|
-| offset | num | 偏移值 | 非必要| 可用于偏移显示的动态列表(为`0`时获取不包含置顶及热门的最新动态) |
-
-**json回复:**
-
-根对象:
-
-| 字段 | 类型 | 内容 | 备注 |
-| ------- | ---- | -------- | ------- |
-| code | num | 返回值 | 0:成功 |
-| data | obj | 信息本体 | |
-| message | str | 错误信息 | 默认为空 |
-| msg | num | 空 | |
-
-`data`对象:
-
-| 字段 | 类型 | 内容 | 备注 |
-| ----------- | ----- | ---------- | ------------ |
-| attentions | obj | 当前登录账户关注列表(仅在传递了登录信息时出现) | |
-| cards | array | 动态列表 | |
-| founder_uid | num | 0 | 作用尚不明确 |
-| has_more | num | 当前话题是否有额外的动态 | 0:无额外动态
1:有额外动态 |
-| is_drawer_topic | num | 0 | 作用尚不明确 |
-| offset | str | 接下来获取列表时的偏移值 | 一般为当前获取的话题列表下最后一个动态id |
-| \_gt\_ | num | 0 | 作用尚不明确 |
-
-`data`中的`cards`数组:
-
-| 项 | 类型 | 内容 | 备注 |
-| ---- | ---- | ------------- | ---- |
-| 0 | obj | 第1条动态卡片 | |
-| n | obj | 第(n+1)条动态卡片 | |
-| …… | obj | …… | …… |
-
-`data`中的`cards`数组中的对象:
-
-基本同「[获取特定动态卡片信息](get_dynamic_detail.md)」中的data对象
-
-**示例:**
-
-获取话题`哔哩哔哩漫画`(话题id`7539944`)的当前动态列表(包含置顶&热门)
-
-topic_name方式:
-```shell
-curl -G 'https://api.vc.bilibili.com/topic_svr/v1/topic_svr/fetch_dynamics' \
---data-urlencode 'topic_name=哔哩哔哩漫画&sortby=2'
-```
-topic_id方式:
-```shell
-curl -G 'https://api.vc.bilibili.com/topic_svr/v1/topic_svr/fetch_dynamics' \
---data-urlencode 'topic_id=7539944&sortby=2'
-```
-
-
-查看响应示例:
-
-```json
-{
- "code": 0,
- "msg": "",
- "message": "",
- "data": {
- "has_more": 1,
- "cards": [
- {
- "desc": {
- "uid": 628215255,
- "type": 8,
- "rid": 332648194,
- "view": 4768,
- "repost": 18,
- "like": 8325,
- "is_liked": 0,
- "dynamic_id": 516720707860453704,
- "timestamp": 1619146815,
- "orig_type": 0,
- "user_profile": {
- "info": {
- "uid": 628215255,
- "uname": "faguowenhua",
- "face": "https://i0.hdslb.com/bfs/face/341a390cbae7efc021d3c492da56665f2a4944ee.jpg"
- },
- "card": {
- "official_verify": {
- "type": 1,
- "desc": "法国文化官方账号"
- }
- },
- "vip": {
- "vipType": 0,
- "vipDueDate": 0,
- "vipStatus": 0,
- "themeType": 0,
- "label": {
- "path": "",
- "text": "",
- "label_theme": "",
- "text_color": "",
- "bg_style": 0,
- "bg_color": "",
- "border_color": ""
- },
- "avatar_subscript": 0,
- "nickname_color": "",
- "role": 0,
- "avatar_subscript_url": ""
- },
- "pendant": {
- "pid": 0,
- "name": "",
- "image": "",
- "expire": 0,
- "image_enhance": "",
- "image_enhance_frame": ""
- },
- "rank": "10000",
- "sign": "法国驻华使馆文化处官方平台",
- "level_info": {
- "current_level": 2
- }
- },
- "uid_type": 1,
- "recommend_info": {
- "is_attention": 0
- },
- "r_type": 1,
- "topic_board": "A",
- "topic_board_desc": "热门",
- "status": 1,
- "dynamic_id_str": "516720707860453704",
- "pre_dy_id_str": "0",
- "orig_dy_id_str": "0",
- "rid_str": "332648194",
- "bvid": "BV1eA411L7Ck"
- },
- "card": "{\"aid\":332648194,\"attribute\":0,\"cid\":327661869,\"copyright\":1,\"ctime\":1619091334,\"desc\":\"漫画节之际,恰逢世界读书日,哔哩哔哩漫画联合欧漫达高,邀请到了法国驻上海总领事馆文化领事柯梅燕女士在线推荐漫画啦!\\n被称为“图像小说”的纯正法国漫画是什么样呢?让我们一起跟着柯梅燕女士的介绍看看这本《莫奈逐光者》,领略欧陆漫画艺术的独特魅力吧~\",\"dimension\":{\"height\":2160,\"rotate\":0,\"width\":3840},\"duration\":219,\"dynamic\":\"漫画节之际,恰逢世界读书日,法国驻上海总领事馆文化领事柯梅燕女士应哔哩哔哩漫画与@欧漫达高 邀请,来给大家推荐漫画啦!\",\"item\":{\"at_control\":\"\"},\"jump_url\":\"bilibili:\\/\\/video\\/332648194\\/?page=1&player_preload=null&player_width=3840&player_height=2160&player_rotate=0\",\"mission_id\":20024,\"owner\":{\"face\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/face\\/341a390cbae7efc021d3c492da56665f2a4944ee.jpg\",\"mid\":628215255,\"name\":\"faguowenhua\"},\"pic\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/archive\\/7de60703c311c2afae10fab44a18bd3fbb5b3a13.jpg\",\"player_info\":null,\"pubdate\":1619146812,\"rights\":{\"autoplay\":1,\"bp\":0,\"download\":0,\"elec\":0,\"hd5\":1,\"is_cooperation\":1,\"movie\":0,\"no_background\":0,\"no_reprint\":1,\"pay\":0,\"ugc_pay\":0,\"ugc_pay_preview\":0},\"short_link\":\"https:\\/\\/b23.tv\\/BV1eA411L7Ck\",\"short_link_v2\":\"https:\\/\\/b23.tv\\/BV1eA411L7Ck\",\"stat\":{\"aid\":332648194,\"coin\":291,\"danmaku\":18,\"dislike\":0,\"favorite\":295,\"his_rank\":0,\"like\":8325,\"now_rank\":0,\"reply\":148,\"share\":95,\"view\":42916},\"state\":0,\"tid\":124,\"title\":\"大师的故事《莫奈逐光者》——来自法国文化领事的漫画推荐│哔哩哔哩漫画节\",\"tname\":\"社科人文\",\"videos\":1}",
- "extend_json": "{\"\":{\"ogv\":{\"ogv_id\":0}},\"dispute\":{\"content\":\"\"},\"from\":{\"from\":\"\",\"verify\":{}},\"like_icon\":{\"action\":\"\",\"action_url\":\"\",\"end\":\"\",\"end_url\":\"\",\"start\":\"\",\"start_url\":\"\"},\"topic\":{\"is_attach_topic\":1}}",
- "activity_infos": {
- "details": [
- {
- "type": 1,
- "detail": "{\"is_show\":1,\"topic_id\":877418,\"topic_link\":\"https:\\/\\/www.bilibili.com\\/blackboard\\/activity-7uSyvlCGRS.html\",\"topic_name\":\"漫画节\"}"
- }
- ]
- },
- "display": {
- "topic_info": {
- "topic_details": [
- {
- "topic_id": 19380831,
- "topic_name": "2021读书日",
- "is_activity": 0,
- "topic_link": ""
- },
- {
- "topic_id": 7539944,
- "topic_name": "哔哩哔哩漫画",
- "is_activity": 0,
- "topic_link": ""
- },
- {
- "topic_id": 1449371,
- "topic_name": "法国漫画",
- "is_activity": 0,
- "topic_link": ""
- },
- {
- "topic_id": 877418,
- "topic_name": "漫画节",
- "is_activity": 1,
- "topic_link": "https://www.bilibili.com/blackboard/activity-7uSyvlCGRS.html"
- },
- {
- "topic_id": 591844,
- "topic_name": "莫奈",
- "is_activity": 0,
- "topic_link": ""
- },
- {
- "topic_id": 507003,
- "topic_name": "欧漫",
- "is_activity": 0,
- "topic_link": ""
- }
- ]
- },
- "usr_action_txt": "投稿了视频",
- "relation": {
- "status": 1,
- "is_follow": 0,
- "is_followed": 0
- },
- "tags": [
- {
- "tag_type": 3,
- "sub_type": 1,
- "icon": "https://i0.hdslb.com/bfs/album/4c1880a3e9d5fd2c72b339929a73a4b83d2bab93.png",
- "text": "漫画节",
- "link": "https://www.bilibili.com/blackboard/activity-7uSyvlCGRS.html?topic_from=topic-card&name=%E6%BC%AB%E7%94%BB%E8%8A%82",
- "rid": 877418,
- "sub_module": "topic"
- }
- ],
- "up_act_button": {
- "report_title": "举报",
- "founder_report_title": "举报(发起人)",
- "top_title": "置顶",
- "top_confirm_title": "确定将此动态置顶吗",
- "top_cancel_title": "确定将此动态取消置顶吗"
- },
- "show_tip": {
- "del_tip": "要删除动态吗?"
- },
- "cover_play_icon_url": "https://i0.hdslb.com/bfs/album/2269afa7897830b397797ebe5f032b899b405c67.png"
- }
- },
- {
- "desc": {
- "uid": 7435683,
- "type": 8,
- "rid": 630241940,
- "acl": 0,
- "view": 32187,
- "repost": 13,
- "like": 10044,
- "is_liked": 0,
- "dynamic_id": 516457881633694548,
- "timestamp": 1619085621,
- "pre_dy_id": 0,
- "orig_dy_id": 0,
- "orig_type": 0,
- "user_profile": {
- "info": {
- "uid": 7435683,
- "uname": "葉月Mashiro灬",
- "face": "https://i0.hdslb.com/bfs/face/a536ad1c4c66e17113cfb599fcbb97e03bcdae44.jpg"
- },
- "card": {
- "official_verify": {
- "type": 0,
- "desc": "bilibili 知名动漫UP主"
- }
- },
- "vip": {
- "vipType": 2,
- "vipDueDate": 1642694400000,
- "vipStatus": 1,
- "themeType": 0,
- "label": {
- "path": "",
- "text": "年度大会员",
- "label_theme": "annual_vip",
- "text_color": "#FFFFFF",
- "bg_style": 1,
- "bg_color": "#FB7299",
- "border_color": ""
- },
- "avatar_subscript": 1,
- "nickname_color": "#FB7299",
- "role": 3,
- "avatar_subscript_url": "https://i0.hdslb.com/bfs/vip/icon_Certification_big_member_22_3x.png"
- },
- "pendant": {
- "pid": 2701,
- "name": "七濑胡桃",
- "image": "https://i0.hdslb.com/bfs/garb/item/2c40fe802d1935d96e4fc63ec42274d8846a34b7.png",
- "expire": 0,
- "image_enhance": "https://i0.hdslb.com/bfs/garb/item/2c40fe802d1935d96e4fc63ec42274d8846a34b7.png",
- "image_enhance_frame": ""
- },
- "rank": "10000",
- "sign": "个人up主 商业合作QQ:740998177月月本人 动漫交流群:958318991 约稿请私信",
- "level_info": {
- "current_level": 6
- }
- },
- "uid_type": 1,
- "recommend_info": {
- "is_attention": 0
- },
- "stype": 0,
- "r_type": 1,
- "inner_id": 0,
- "topic_board": "A",
- "topic_board_desc": "热门",
- "status": 1,
- "dynamic_id_str": "516457881633694548",
- "pre_dy_id_str": "0",
- "orig_dy_id_str": "0",
- "rid_str": "630241940",
- "bvid": "BV1b84y1F7qT"
- },
- "card": "{\"aid\":630241940,\"attribute\":0,\"cid\":325729439,\"copyright\":1,\"ctime\":1618830035,\"desc\":\"BGM:No Rainbows In The Desert (Pluto Tapes),歌手名:Unlike Pluto\\n咒术回战单素材,帅就完事!求3连!\",\"dimension\":{\"height\":1080,\"rotate\":0,\"width\":1920},\"duration\":94,\"dynamic\":\"\",\"item\":{\"at_control\":\"\"},\"jump_url\":\"bilibili:\\/\\/video\\/630241940\\/?page=1&player_preload=null&player_width=1920&player_height=1080&player_rotate=0\",\"owner\":{\"face\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/face\\/a536ad1c4c66e17113cfb599fcbb97e03bcdae44.jpg\",\"mid\":7435683,\"name\":\"葉月Mashiro灬\"},\"pic\":\"https:\\/\\/i2.hdslb.com\\/bfs\\/archive\\/663b7f275b0f93356523880aa7e626803168df93.jpg\",\"player_info\":null,\"pubdate\":1619085619,\"rights\":{\"autoplay\":1,\"bp\":0,\"download\":0,\"elec\":0,\"hd5\":1,\"is_cooperation\":1,\"movie\":0,\"no_background\":0,\"no_reprint\":1,\"pay\":0,\"ugc_pay\":0,\"ugc_pay_preview\":0},\"short_link\":\"https:\\/\\/b23.tv\\/BV1b84y1F7qT\",\"short_link_v2\":\"https:\\/\\/b23.tv\\/BV1b84y1F7qT\",\"stat\":{\"aid\":630241940,\"coin\":889,\"danmaku\":146,\"dislike\":0,\"favorite\":1163,\"his_rank\":0,\"like\":10044,\"now_rank\":0,\"reply\":95,\"share\":205,\"view\":61268},\"state\":0,\"tid\":24,\"title\":\"全员高能!这才是咒术回战!\",\"tname\":\"MAD·AMV\",\"videos\":1}",
- "extend_json": "{\"\":{\"decoration\":{\"decoration_id\":0},\"game\":{\"game_id\":0},\"manga\":{\"manga_id\":26505},\"match\":{\"match_id\":0},\"official_activity\":{\"official_activity_id\":0},\"ogv\":{\"auto_bind\":0,\"ogv_id\":0},\"pgc\":0,\"pugv\":{\"pugv_id\":0},\"reserve\":{\"reserve_id\":0},\"ugc\":{\"ugc_id\":0}},\"bottom\":{},\"dispute\":{\"content\":\"\"},\"from\":{\"from\":\"\"},\"like_icon\":{\"action\":\"\",\"action_url\":\"\",\"end\":\"\",\"end_url\":\"\",\"start\":\"\",\"start_url\":\"\"},\"topic\":{\"is_attach_topic\":1}}",
- "display": {
- "topic_info": {
- "topic_details": [
- {
- "topic_id": 391,
- "topic_name": "AMV",
- "is_activity": 0,
- "topic_link": ""
- },
- {
- "topic_id": 281,
- "topic_name": "MAD",
- "is_activity": 0,
- "topic_link": ""
- },
- {
- "topic_id": 7662089,
- "topic_name": "五条悟",
- "is_activity": 1,
- "topic_link": "https://www.bilibili.com/blackboard/dynamic/66796"
- },
- {
- "topic_id": 7539944,
- "topic_name": "哔哩哔哩漫画",
- "is_activity": 0,
- "topic_link": ""
- },
- {
- "topic_id": 6497596,
- "topic_name": "咒术回战",
- "is_activity": 0,
- "topic_link": ""
- },
- {
- "topic_id": 3545,
- "topic_name": "热血",
- "is_activity": 0,
- "topic_link": ""
- }
- ]
- },
- "usr_action_txt": "投稿了视频",
- "relation": {
- "status": 1,
- "is_follow": 0,
- "is_followed": 0
- },
- "attach_card": {
- "type": "manga",
- "head_text": "相关漫画作品",
- "cover_url": "https://i0.hdslb.com/bfs/manga-static/ca4c24bd8bf896545811f401106c19588b80549d.png",
- "cover_type": 2,
- "title": "咒术回战",
- "desc_first": "更新至146",
- "desc_second": "冒险,热血,奇幻",
- "jump_url": "https://manga.bilibili.com/m/detail/mc26505?from=sub_card",
- "button": {
- "type": 2,
- "uncheck": {
- "icon": "https://i0.hdslb.com/bfs/bangumi/154b6898d2b2c20c21ccef9e41fcf809b518ebb4.png",
- "text": "追漫"
- },
- "check": {
- "icon": "",
- "text": "已追漫"
- },
- "status": 1
- },
- "oid_str": "26505"
- },
- "add_on_card_info": [
- {
- "add_on_card_show_type": 2,
- "attach_card": {
- "type": "manga",
- "head_text": "相关漫画作品",
- "cover_url": "https://i0.hdslb.com/bfs/manga-static/ca4c24bd8bf896545811f401106c19588b80549d.png",
- "cover_type": 2,
- "title": "咒术回战",
- "desc_first": "更新至146",
- "desc_second": "冒险,热血,奇幻",
- "jump_url": "https://manga.bilibili.com/m/detail/mc26505?from=sub_card",
- "button": {
- "type": 2,
- "uncheck": {
- "icon": "https://i0.hdslb.com/bfs/bangumi/154b6898d2b2c20c21ccef9e41fcf809b518ebb4.png",
- "text": "追漫"
- },
- "check": {
- "icon": "",
- "text": "已追漫"
- },
- "status": 1
- },
- "oid_str": "26505"
- }
- }
- ],
- "up_act_button": {
- "report_title": "举报",
- "founder_report_title": "举报(发起人)",
- "top_title": "置顶",
- "top_confirm_title": "确定将此动态置顶吗",
- "top_cancel_title": "确定将此动态取消置顶吗"
- },
- "show_tip": {
- "del_tip": "要删除动态吗?"
- },
- "cover_play_icon_url": "https://i0.hdslb.com/bfs/album/2269afa7897830b397797ebe5f032b899b405c67.png"
- }
- },
- {
- "desc": {
- "uid": 381355897,
- "type": 2,
- "rid": 131242904,
- "acl": 0,
- "view": 20829,
- "repost": 0,
- "comment": 0,
- "like": 99,
- "is_liked": 0,
- "dynamic_id": 516859813265346703,
- "timestamp": 1619179203,
- "pre_dy_id": 0,
- "orig_dy_id": 0,
- "orig_type": 0,
- "user_profile": {
- "info": {
- "uid": 381355897,
- "uname": "电绘狂",
- "face": "https://i1.hdslb.com/bfs/face/19c52b3c93e12698cd1e23093f8e2661e32e2533.jpg"
- },
- "card": {
- "official_verify": {
- "type": -1,
- "desc": ""
- }
- },
- "vip": {
- "vipType": 1,
- "vipDueDate": 1580486400000,
- "vipStatus": 0,
- "themeType": 0,
- "label": {
- "path": "",
- "text": "",
- "label_theme": "",
- "text_color": "",
- "bg_style": 0,
- "bg_color": "",
- "border_color": ""
- },
- "avatar_subscript": 0,
- "nickname_color": "",
- "role": 0,
- "avatar_subscript_url": ""
- },
- "pendant": {
- "pid": 1823,
- "name": "春日樱花",
- "image": "https://i1.hdslb.com/bfs/garb/item/dbe7d6c13cfa15ee717f7219501dc4613affbb9c.png",
- "expire": 0,
- "image_enhance": "https://i1.hdslb.com/bfs/garb/item/dbe7d6c13cfa15ee717f7219501dc4613affbb9c.png",
- "image_enhance_frame": ""
- },
- "rank": "10000",
- "sign": "交流群:100931574、cctalk&B站每周三天 直播绘画教学+改图",
- "level_info": {
- "current_level": 6
- }
- },
- "uid_type": 1,
- "recommend_info": {
- "is_attention": 0
- },
- "stype": 0,
- "r_type": 1,
- "inner_id": 0,
- "topic_board": "A",
- "topic_board_desc": "热门",
- "status": 1,
- "dynamic_id_str": "516859813265346703",
- "pre_dy_id_str": "0",
- "orig_dy_id_str": "0",
- "rid_str": "131242904"
- },
- "card": "{\"item\":{\"at_control\":\"\",\"category\":\"daily\",\"description\":\"【#寒远#第十话:你穿什么都好看!!】\\n新角色登场!!猜猜他们是小公主的谁呢?[妙啊]\\n彩色条漫+每周五更新+ :https:\\/\\/manga.bilibili.com\\/detail\\/mc29468 \\n\\n#哔哩哔哩漫画# \",\"id\":131242904,\"is_fav\":0,\"pictures\":[{\"img_height\":1260,\"img_size\":151.478515625,\"img_src\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/album\\/cce04242486413faf4299ba0fd4e6cb072cd376e.jpg\",\"img_tags\":null,\"img_width\":750},{\"img_height\":1040,\"img_size\":126.9970703125,\"img_src\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/album\\/678a826ac0e2e869e4ee2c1556a60c69d626dbfd.jpg\",\"img_tags\":null,\"img_width\":750}],\"pictures_count\":2,\"reply\":0,\"role\":[],\"settings\":{\"copy_forbidden\":\"0\"},\"source\":[],\"title\":\"\",\"upload_time\":1619179203},\"user\":{\"head_url\":\"https:\\/\\/i1.hdslb.com\\/bfs\\/face\\/19c52b3c93e12698cd1e23093f8e2661e32e2533.jpg\",\"name\":\"电绘狂\",\"uid\":381355897,\"vip\":{\"avatar_subscript\":0,\"due_date\":1580486400000,\"label\":{\"label_theme\":\"\",\"path\":\"\",\"text\":\"\"},\"nickname_color\":\"\",\"status\":0,\"theme_type\":0,\"type\":1,\"vip_pay_type\":0}}}",
- "extend_json": "{\"from\":{\"emoji_type\":1,\"from\":\"timer.publish\",\"up_close_comment\":0,\"verify\":{\"cc\":{\"nv\":1}}},\"like_icon\":{\"action\":\"\",\"action_url\":\"\",\"end\":\"\",\"end_url\":\"\",\"start\":\"\",\"start_url\":\"\"},\"topic\":{\"is_attach_topic\":1}}",
- "display": {
- "topic_info": {
- "topic_details": [
- {
- "topic_id": 17996793,
- "topic_name": "寒远",
- "is_activity": 0,
- "topic_link": ""
- },
- {
- "topic_id": 7539944,
- "topic_name": "哔哩哔哩漫画",
- "is_activity": 0,
- "topic_link": ""
- }
- ]
- },
- "emoji_info": {
- "emoji_details": [
- {
- "emoji_name": "[妙啊]",
- "id": 435,
- "package_id": 1,
- "state": 0,
- "type": 1,
- "attr": 0,
- "text": "[妙啊]",
- "url": "https://i0.hdslb.com/bfs/emote/b4cb77159d58614a9b787b91b1cd22a81f383535.png",
- "meta": {
- "size": 1
- },
- "mtime": 1617293741
- }
- ]
- },
- "relation": {
- "status": 1,
- "is_follow": 0,
- "is_followed": 0
- },
- "up_act_button": {
- "report_title": "举报",
- "founder_report_title": "举报(发起人)",
- "top_title": "置顶",
- "top_confirm_title": "确定将此动态置顶吗",
- "top_cancel_title": "确定将此动态取消置顶吗"
- },
- "show_tip": {
- "del_tip": "要删除动态吗?"
- }
- }
- },
- {
- "desc": {
- "uid": 350963773,
- "type": 8,
- "rid": 972741830,
- "acl": 0,
- "view": 2059,
- "repost": 5,
- "like": 53,
- "is_liked": 0,
- "dynamic_id": 515066247810442308,
- "timestamp": 1618761606,
- "pre_dy_id": 0,
- "orig_dy_id": 0,
- "orig_type": 0,
- "user_profile": {
- "info": {
- "uid": 350963773,
- "uname": "届不到_Zula",
- "face": "https://i1.hdslb.com/bfs/face/613e6dcd59feaecf875092ae945834a362b37f6c.jpg"
- },
- "card": {
- "official_verify": {
- "type": -1,
- "desc": ""
- }
- },
- "vip": {
- "vipType": 2,
- "vipDueDate": 1674403200000,
- "vipStatus": 1,
- "themeType": 0,
- "label": {
- "path": "",
- "text": "年度大会员",
- "label_theme": "annual_vip",
- "text_color": "#FFFFFF",
- "bg_style": 1,
- "bg_color": "#FB7299",
- "border_color": ""
- },
- "avatar_subscript": 1,
- "nickname_color": "#FB7299",
- "role": 3,
- "avatar_subscript_url": "https://i0.hdslb.com/bfs/vip/icon_Certification_big_member_22_3x.png"
- },
- "pendant": {
- "pid": 0,
- "name": "",
- "image": "",
- "expire": 0,
- "image_enhance": "",
- "image_enhance_frame": ""
- },
- "rank": "10000",
- "sign": "什么时候来个卡车,善良的送我去异世界",
- "level_info": {
- "current_level": 5
- }
- },
- "uid_type": 1,
- "recommend_info": {
- "is_attention": 0
- },
- "stype": 0,
- "r_type": 1,
- "inner_id": 0,
- "topic_board": "A",
- "topic_board_desc": "热门",
- "status": 1,
- "dynamic_id_str": "515066247810442308",
- "pre_dy_id_str": "0",
- "orig_dy_id_str": "0",
- "rid_str": "972741830",
- "bvid": "BV1Mp4y1b7vk"
- },
- "card": "{\"aid\":972741830,\"attribute\":0,\"cid\":325740795,\"copyright\":1,\"ctime\":1618713447,\"desc\":\"我永远喜欢水原千鹤!\\n水原千鹤应援群:605563880\\n欢迎加入!\",\"dimension\":{\"height\":1080,\"rotate\":0,\"width\":1920},\"duration\":207,\"dynamic\":\"水原千鹤,生日快乐\",\"item\":{\"at_control\":\"\"},\"jump_url\":\"bilibili:\\/\\/video\\/972741830\\/?page=1&player_preload=null&player_width=1920&player_height=1080&player_rotate=0\",\"owner\":{\"face\":\"https:\\/\\/i1.hdslb.com\\/bfs\\/face\\/613e6dcd59feaecf875092ae945834a362b37f6c.jpg\",\"mid\":350963773,\"name\":\"届不到_Zula\"},\"pic\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/archive\\/5e8a7e26b2b386626f3ddc54d1999ee3f1978888.jpg\",\"player_info\":null,\"pubdate\":1618761602,\"rights\":{\"autoplay\":1,\"bp\":0,\"download\":0,\"elec\":0,\"hd5\":0,\"is_cooperation\":0,\"movie\":0,\"no_background\":0,\"no_reprint\":1,\"pay\":0,\"ugc_pay\":0,\"ugc_pay_preview\":0},\"short_link\":\"https:\\/\\/b23.tv\\/BV1Mp4y1b7vk\",\"short_link_v2\":\"https:\\/\\/b23.tv\\/BV1Mp4y1b7vk\",\"stat\":{\"aid\":972741830,\"coin\":58,\"danmaku\":15,\"dislike\":0,\"favorite\":29,\"his_rank\":0,\"like\":53,\"now_rank\":0,\"reply\":45,\"share\":15,\"view\":427},\"state\":0,\"tid\":24,\"title\":\"【2021水原千鹤生贺】此生能遇见你,真是太好了\",\"tname\":\"MAD·AMV\",\"up_from_v2\":19,\"videos\":2}",
- "extend_json": "{\"\":{\"ogv\":{\"ogv_id\":0}},\"bottom\":{},\"dispute\":{\"content\":\"\"},\"from\":{\"from\":\"\",\"verify\":{}},\"like_icon\":{\"action\":\"\",\"action_url\":\"\",\"end\":\"\",\"end_url\":\"\",\"start\":\"\",\"start_url\":\"\"},\"topic\":{\"is_attach_topic\":1}}",
- "display": {
- "topic_info": {
- "topic_details": [
- {
- "topic_id": 7539944,
- "topic_name": "哔哩哔哩漫画",
- "is_activity": 0,
- "topic_link": ""
- },
- {
- "topic_id": 170379,
- "topic_name": "生贺",
- "is_activity": 0,
- "topic_link": ""
- },
- {
- "topic_id": 4145,
- "topic_name": "恋爱",
- "is_activity": 0,
- "topic_link": ""
- },
- {
- "topic_id": 391,
- "topic_name": "AMV",
- "is_activity": 0,
- "topic_link": ""
- },
- {
- "topic_id": 281,
- "topic_name": "MAD",
- "is_activity": 0,
- "topic_link": ""
- },
- {
- "topic_id": 7382791,
- "topic_name": "水原千鹤",
- "is_activity": 1,
- "topic_link": "https://www.bilibili.com/blackboard/dynamic/43055"
- }
- ]
- },
- "usr_action_txt": "投稿了视频",
- "relation": {
- "status": 1,
- "is_follow": 0,
- "is_followed": 0
- },
- "tags": [
- {
- "tag_type": 5,
- "icon": "https://i0.hdslb.com/bfs/album/969bfb96b77f12acb2e36068fa03de3b418b2219.png",
- "text": "领取专属形象赢大奖",
- "link": "https://www.bilibili.com/blackboard/activity-K4Yvj51WtJ.html",
- "sub_module": "diversion",
- "show_action": 0
- }
- ],
- "up_act_button": {
- "report_title": "举报",
- "founder_report_title": "举报(发起人)",
- "top_title": "置顶",
- "top_confirm_title": "确定将此动态置顶吗",
- "top_cancel_title": "确定将此动态取消置顶吗"
- },
- "show_tip": {
- "del_tip": "要删除动态吗?"
- },
- "cover_play_icon_url": "https://i0.hdslb.com/bfs/album/2269afa7897830b397797ebe5f032b899b405c67.png"
- }
- },
- {
- "desc": {
- "uid": 326499679,
- "type": 2,
- "rid": 131534120,
- "acl": 0,
- "view": 196445,
- "repost": 2,
- "comment": 54,
- "like": 1048,
- "is_liked": 0,
- "dynamic_id": 517602000793534062,
- "timestamp": 1619352007,
- "pre_dy_id": 0,
- "orig_dy_id": 0,
- "orig_type": 0,
- "user_profile": {
- "info": {
- "uid": 326499679,
- "uname": "哔哩哔哩漫画",
- "face": "https://i1.hdslb.com/bfs/face/2254162161a60b528cfec449f3450409a81ebc37.jpg"
- },
- "card": {
- "official_verify": {
- "type": 1,
- "desc": "哔哩哔哩漫画官方账号"
- }
- },
- "vip": {
- "vipType": 2,
- "vipDueDate": 1941033600000,
- "vipStatus": 1,
- "themeType": 0,
- "label": {
- "path": "",
- "text": "十年大会员",
- "label_theme": "ten_annual_vip",
- "text_color": "#FFFFFF",
- "bg_style": 1,
- "bg_color": "#FB7299",
- "border_color": ""
- },
- "avatar_subscript": 1,
- "nickname_color": "#FB7299",
- "role": 7,
- "avatar_subscript_url": "https://i0.hdslb.com/bfs/vip/icon_Certification_big_member_22_3x.png"
- },
- "pendant": {
- "pid": 0,
- "name": "",
- "image": "",
- "expire": 0,
- "image_enhance": "",
- "image_enhance_frame": ""
- },
- "rank": "10000",
- "sign": "↑ 【关注漫画姬】就送【漫读券5张】,当日或次日登录哔哩哔哩漫画APP即可领取,快来关注领券吧(°∀°)ノ ↑",
- "level_info": {
- "current_level": 6
- }
- },
- "uid_type": 1,
- "recommend_info": {
- "is_attention": 0
- },
- "stype": 0,
- "r_type": 1,
- "inner_id": 0,
- "topic_board": "C",
- "topic_board_desc": "最新",
- "status": 1,
- "dynamic_id_str": "517602000793534062",
- "pre_dy_id_str": "0",
- "orig_dy_id_str": "0",
- "rid_str": "131534120"
- },
- "card": "{\"item\":{\"at_control\":\"\",\"category\":\"daily\",\"description\":\"【#哔哩哔哩漫画# 作品推荐】兽人控狂喜!《#不莱梅乐队#》:https:\\/\\/manga.bilibili.com\\/m\\/detail\\/mc28880\\n[思考]大家小时候看过一篇叫做《不莱梅的音乐家》的格林童话吗?\\n[惊喜]只不过在这部#欧漫#里,这四个动物的目的不是赶走强盗,而是追逐梦想、爱情、自由、正义。在这个充满混沌的世界里,他们将用音乐的力量改写自己和他人的命运。 \",\"id\":131534120,\"is_fav\":0,\"pictures\":[{\"img_height\":1922,\"img_size\":1163.9267578125,\"img_src\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/album\\/f5a82f03475eed52973b3cecb2b5180b090cc5f0.png\",\"img_tags\":null,\"img_width\":1080},{\"img_height\":757,\"img_size\":273.130859375,\"img_src\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/album\\/ca4055c7b9c246e7e922190102d5c87cd4dbcea8.png\",\"img_tags\":null,\"img_width\":436},{\"img_height\":1067,\"img_size\":640.29296875,\"img_src\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/album\\/9de3ece4d374d07fb7b192db4520779a477cdf97.png\",\"img_tags\":null,\"img_width\":542},{\"img_height\":972,\"img_size\":374.8349609375,\"img_src\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/album\\/cac12d548a3686335d3154cce672f1823ca92517.png\",\"img_tags\":null,\"img_width\":487}],\"pictures_count\":4,\"reply\":54,\"role\":[],\"settings\":{\"copy_forbidden\":\"0\"},\"source\":[],\"title\":\"\",\"upload_time\":1619352007},\"user\":{\"head_url\":\"https:\\/\\/i1.hdslb.com\\/bfs\\/face\\/2254162161a60b528cfec449f3450409a81ebc37.jpg\",\"name\":\"哔哩哔哩漫画\",\"uid\":326499679,\"vip\":{\"avatar_subscript\":1,\"due_date\":1941033600000,\"label\":{\"label_theme\":\"ten_annual_vip\",\"path\":\"\",\"text\":\"十年大会员\"},\"nickname_color\":\"#FB7299\",\"status\":1,\"theme_type\":0,\"type\":2,\"vip_pay_type\":0}}}",
- "extend_json": "{\"from\":{\"emoji_type\":1,\"from\":\"timer.publish\",\"up_close_comment\":0,\"verify\":{\"asw\":{\"fl\":15,\"nv\":1},\"cc\":{\"nv\":1},\"sw\":{\"fl\":15,\"nv\":1}}},\"like_icon\":{\"action\":\"\",\"action_url\":\"\",\"end\":\"\",\"end_url\":\"\",\"start\":\"\",\"start_url\":\"\"},\"topic\":{\"is_attach_topic\":1}}",
- "display": {
- "topic_info": {
- "topic_details": [
- {
- "topic_id": 7539944,
- "topic_name": "哔哩哔哩漫画",
- "is_activity": 0,
- "topic_link": ""
- },
- {
- "topic_id": 15149492,
- "topic_name": "不莱梅乐队",
- "is_activity": 0,
- "topic_link": ""
- },
- {
- "topic_id": 507003,
- "topic_name": "欧漫",
- "is_activity": 0,
- "topic_link": ""
- }
- ]
- },
- "emoji_info": {
- "emoji_details": [
- {
- "emoji_name": "[思考]",
- "id": 1941,
- "package_id": 1,
- "state": 0,
- "type": 1,
- "attr": 0,
- "text": "[思考]",
- "url": "https://i0.hdslb.com/bfs/emote/cfa9b7e89e4bfe04bbcd34ccb1b0df37f4fa905c.png",
- "meta": {
- "size": 1
- },
- "mtime": 1597738918
- },
- {
- "emoji_name": "[惊喜]",
- "id": 19,
- "package_id": 1,
- "state": 0,
- "type": 1,
- "attr": 0,
- "text": "[惊喜]",
- "url": "https://i0.hdslb.com/bfs/emote/0afecaf3a3499479af946f29749e1a6c285b6f65.png",
- "meta": {
- "size": 1
- },
- "mtime": 1597738918
- }
- ]
- },
- "relation": {
- "status": 1,
- "is_follow": 0,
- "is_followed": 0
- },
- "up_act_button": {
- "report_title": "举报",
- "founder_report_title": "举报(发起人)",
- "top_title": "置顶",
- "top_confirm_title": "确定将此动态置顶吗",
- "top_cancel_title": "确定将此动态取消置顶吗"
- },
- "show_tip": {
- "del_tip": "要删除动态吗?"
- }
- }
- },
- {
- "desc": {
- "uid": 240911350,
- "type": 1,
- "rid": 517516389208371264,
- "acl": 0,
- "view": 237,
- "repost": 0,
- "comment": 0,
- "like": 2,
- "is_liked": 0,
- "dynamic_id": 517516389214088892,
- "timestamp": 1619332074,
- "pre_dy_id": 517479366596833835,
- "orig_dy_id": 517479366596833835,
- "orig_type": 2,
- "user_profile": {
- "info": {
- "uid": 240911350,
- "uname": "Kekkai-piano",
- "face": "https://i1.hdslb.com/bfs/face/f9b56adf0e9fb16d556fb5af93fc8367a255e4af.jpg"
- },
- "card": {
- "official_verify": {
- "type": -1,
- "desc": ""
- }
- },
- "vip": {
- "vipType": 2,
- "vipDueDate": 1658851200000,
- "vipStatus": 1,
- "themeType": 0,
- "label": {
- "path": "",
- "text": "年度大会员",
- "label_theme": "annual_vip",
- "text_color": "#FFFFFF",
- "bg_style": 1,
- "bg_color": "#FB7299",
- "border_color": ""
- },
- "avatar_subscript": 1,
- "nickname_color": "#FB7299",
- "role": 3,
- "avatar_subscript_url": "https://i0.hdslb.com/bfs/vip/icon_Certification_big_member_22_3x.png"
- },
- "pendant": {
- "pid": 2511,
- "name": "初音未来13周年",
- "image": "https://i1.hdslb.com/bfs/garb/item/4f8f3f1f2d47f0dad84f66aa57acd4409ea46361.png",
- "expire": 0,
- "image_enhance": "https://i1.hdslb.com/bfs/garb/item/fe0b83b53e2342b16646f6e7a9370d8a867decdb.webp",
- "image_enhance_frame": "https://i1.hdslb.com/bfs/garb/item/127c507ec8448be30cf5f79500ecc6ef2fd32f2c.png"
- },
- "rank": "10000",
- "sign": "看动画片的88键音游爱好者 \n专业人士轻喷 \n正在寻找缺失之物 \n超天変地異みたいな狂騒にも慣れて\n高三备考ing,莫要取关(bushi)",
- "level_info": {
- "current_level": 5
- }
- },
- "uid_type": 1,
- "recommend_info": {
- "is_attention": 0
- },
- "stype": 0,
- "r_type": 1,
- "inner_id": 0,
- "topic_board": "C",
- "topic_board_desc": "最新",
- "status": 1,
- "dynamic_id_str": "517516389214088892",
- "pre_dy_id_str": "517479366596833835",
- "orig_dy_id_str": "517479366596833835",
- "rid_str": "517516389208371264",
- "origin": {
- "uid": 326499679,
- "type": 2,
- "rid": 131479206,
- "acl": 1024,
- "view": 1379492,
- "repost": 11233,
- "dynamic_id": 517479366596833835,
- "timestamp": 1619323454,
- "uid_type": 1,
- "r_type": 1,
- "status": 1,
- "dynamic_id_str": "517479366596833835",
- "pre_dy_id_str": "0",
- "orig_dy_id_str": "0",
- "rid_str": "131479206"
- }
- },
- "card": "{ \"user\": { \"uid\": 240911350, \"uname\": \"Kekkai-piano\", \"face\": \"https:\\/\\/i1.hdslb.com\\/bfs\\/face\\/f9b56adf0e9fb16d556fb5af93fc8367a255e4af.jpg\" }, \"item\": { \"rp_id\": 517516389208371264, \"uid\": 240911350, \"content\": \"分母报道[doge]#哔哩哔哩漫画#,#AISHA#\", \"orig_dy_id\": 517479366596833835, \"pre_dy_id\": 517479366596833835, \"timestamp\": 1619332074, \"reply\": 0, \"orig_type\": 2 }, \"origin\": \"{\\\"item\\\":{\\\"at_control\\\":\\\"[{\\\\\\\"data\\\\\\\":\\\\\\\"5\\\\\\\",\\\\\\\"length\\\\\\\":0,\\\\\\\"location\\\\\\\":0,\\\\\\\"type\\\\\\\":2},{\\\\\\\"location\\\\\\\":19,\\\\\\\"type\\\\\\\":1,\\\\\\\"length\\\\\\\":8,\\\\\\\"data\\\\\\\":\\\\\\\"1425490690\\\\\\\"}]\\\",\\\"category\\\":\\\"daily\\\",\\\"description\\\":\\\"互动抽奖 关+转,抽3位幸运小伙伴送@漫画家法吉特 【《逆光》画集作者签名版】~\\\\n #哔哩哔哩漫画#重磅安利之《#AISHA#》\\\\n当当当当!剧情党福音~\\\\n答题就有机会赢得礼物?还有法吉特太太亲签精美画集?\\\\n活动入口→https:\\\\\\/\\\\\\/www.bilibili.com\\\\\\/blackboard\\\\\\/topic\\\\\\/activity-oPISh007wv.html\\\\n\\\\n你以为这样就结束了了吗?\\\\nNONONO~\\\\n法吉特老师首次出版个人作品集《逆光》~商城4月25日0点首发开售!\\\\n有法吉特老师签名版掉落哦!随书额外附赠专属书签特典!\\\\n活动指路:哔哩哔哩漫画APP-我的-商城-banner\\\",\\\"id\\\":131479206,\\\"is_fav\\\":0,\\\"pictures\\\":[{\\\"img_height\\\":782,\\\"img_size\\\":1097.2451171875,\\\"img_src\\\":\\\"https:\\\\\\/\\\\\\/i0.hdslb.com\\\\\\/bfs\\\\\\/album\\\\\\/8965a784f77e2545f4f2f168df4f417ed3ace818.png\\\",\\\"img_tags\\\":null,\\\"img_width\\\":750}],\\\"pictures_count\\\":1,\\\"reply\\\":573,\\\"role\\\":[],\\\"settings\\\":{\\\"copy_forbidden\\\":\\\"0\\\"},\\\"source\\\":[],\\\"title\\\":\\\"\\\",\\\"upload_time\\\":1619323454},\\\"user\\\":{\\\"head_url\\\":\\\"https:\\\\\\/\\\\\\/i1.hdslb.com\\\\\\/bfs\\\\\\/face\\\\\\/2254162161a60b528cfec449f3450409a81ebc37.jpg\\\",\\\"name\\\":\\\"哔哩哔哩漫画\\\",\\\"uid\\\":326499679,\\\"vip\\\":{\\\"avatar_subscript\\\":1,\\\"due_date\\\":1941033600000,\\\"label\\\":{\\\"label_theme\\\":\\\"ten_annual_vip\\\",\\\"path\\\":\\\"\\\",\\\"text\\\":\\\"十年大会员\\\"},\\\"nickname_color\\\":\\\"#FB7299\\\",\\\"status\\\":1,\\\"theme_type\\\":0,\\\"type\\\":2,\\\"vip_pay_type\\\":0}}}\", \"origin_extension\": { \"lott\": \"{\\\"lottery_id\\\":61398}\" }, \"origin_extend_json\": \"{\\\"ctrl\\\":[{\\\"data\\\":\\\"5\\\",\\\"length\\\":0,\\\"location\\\":0,\\\"type\\\":2},{\\\"data\\\":\\\"1425490690\\\",\\\"length\\\":8,\\\"location\\\":19,\\\"type\\\":1}],\\\"from\\\":{\\\"emoji_type\\\":1,\\\"from\\\":\\\"create.dynamic.web\\\",\\\"up_close_comment\\\":0,\\\"verify\\\":{\\\"asw\\\":{\\\"fl\\\":15,\\\"nv\\\":1},\\\"cc\\\":{\\\"vf\\\":1},\\\"sw\\\":{\\\"fl\\\":15,\\\"nv\\\":1}}},\\\"like_icon\\\":{\\\"action\\\":\\\"\\\",\\\"action_url\\\":\\\"\\\",\\\"end\\\":\\\"\\\",\\\"end_url\\\":\\\"\\\",\\\"start\\\":\\\"\\\",\\\"start_url\\\":\\\"\\\"},\\\"lott\\\":{\\\"lottery_id\\\":61398},\\\"topic\\\":{\\\"is_attach_topic\\\":1}}\", \"origin_user\": { \"info\": { \"uid\": 326499679, \"uname\": \"哔哩哔哩漫画\", \"face\": \"https:\\/\\/i1.hdslb.com\\/bfs\\/face\\/2254162161a60b528cfec449f3450409a81ebc37.jpg\" }, \"card\": { \"official_verify\": { \"type\": 1, \"desc\": \"哔哩哔哩漫画官方账号\" } }, \"vip\": { \"vipType\": 2, \"vipDueDate\": 1941033600000, \"vipStatus\": 1, \"themeType\": 0, \"label\": { \"path\": \"\", \"text\": \"十年大会员\", \"label_theme\": \"ten_annual_vip\", \"text_color\": \"#FFFFFF\", \"bg_style\": 1, \"bg_color\": \"#FB7299\", \"border_color\": \"\" }, \"avatar_subscript\": 1, \"nickname_color\": \"#FB7299\", \"role\": 7, \"avatar_subscript_url\": \"https:\\/\\/i0.hdslb.com\\/bfs\\/vip\\/icon_Certification_big_member_22_3x.png\" }, \"pendant\": { \"pid\": 0, \"name\": \"\", \"image\": \"\", \"expire\": 0, \"image_enhance\": \"\", \"image_enhance_frame\": \"\" }, \"rank\": \"10000\", \"sign\": \"↑ 【关注漫画姬】就送【漫读券5张】,当日或次日登录哔哩哔哩漫画APP即可领取,快来关注领券吧(°∀°)ノ ↑\", \"level_info\": { \"current_level\": 6 } } }",
- "extend_json": "{\"from\":{\"emoji_type\":1,\"from\":\"create.comment\",\"up_close_comment\":0},\"like_icon\":{\"action\":\"\",\"action_url\":\"\",\"end\":\"\",\"end_url\":\"\",\"start\":\"\",\"start_url\":\"\"},\"topic\":{\"is_attach_topic\":1}}",
- "display": {
- "topic_info": {
- "topic_details": [
- {
- "topic_id": 7539944,
- "topic_name": "哔哩哔哩漫画",
- "is_activity": 0,
- "topic_link": ""
- },
- {
- "topic_id": 148830,
- "topic_name": "AISHA",
- "is_activity": 1,
- "topic_link": "https://www.bilibili.com/blackboard/dynamic/18159"
- },
- {
- "topic_id": 2514603,
- "topic_name": "aisha",
- "is_activity": 0,
- "topic_link": ""
- }
- ]
- },
- "origin": {
- "topic_info": {
- "topic_details": [
- {
- "topic_id": 7539944,
- "topic_name": "哔哩哔哩漫画",
- "is_activity": 0,
- "topic_link": ""
- },
- {
- "topic_id": 148830,
- "topic_name": "AISHA",
- "is_activity": 1,
- "topic_link": "https://www.bilibili.com/blackboard/dynamic/18159"
- },
- {
- "topic_id": 2514603,
- "topic_name": "aisha",
- "is_activity": 0,
- "topic_link": ""
- }
- ]
- },
- "relation": {
- "status": 1,
- "is_follow": 0,
- "is_followed": 0
- },
- "show_tip": {
- "del_tip": "要删除动态吗?"
- }
- },
- "emoji_info": {
- "emoji_details": [
- {
- "emoji_name": "[doge]",
- "id": 26,
- "package_id": 1,
- "state": 0,
- "type": 1,
- "attr": 0,
- "text": "[doge]",
- "url": "https://i0.hdslb.com/bfs/emote/3087d273a78ccaff4bb1e9972e2ba2a7583c9f11.png",
- "meta": {
- "size": 1
- },
- "mtime": 1617293741
- }
- ]
- },
- "relation": {
- "status": 1,
- "is_follow": 0,
- "is_followed": 0
- },
- "up_act_button": {
- "report_title": "举报",
- "founder_report_title": "举报(发起人)",
- "top_title": "置顶",
- "top_confirm_title": "确定将此动态置顶吗",
- "top_cancel_title": "确定将此动态取消置顶吗"
- },
- "show_tip": {
- "del_tip": "要删除动态吗?"
- }
- }
- },
- {
- "desc": {
- "uid": 1192711092,
- "type": 1,
- "rid": 517505230885402892,
- "acl": 0,
- "view": 2,
- "repost": 0,
- "comment": 0,
- "like": 0,
- "is_liked": 0,
- "dynamic_id": 517505230886905525,
- "timestamp": 1619329476,
- "pre_dy_id": 517241610091321208,
- "orig_dy_id": 517241610091321208,
- "orig_type": 2,
- "user_profile": {
- "info": {
- "uid": 1192711092,
- "uname": "会发光的偶恰",
- "face": "https://i0.hdslb.com/bfs/face/b85a508793bd96deec61e2491d60e68f10378395.jpg"
- },
- "card": {
- "official_verify": {
- "type": -1,
- "desc": ""
- }
- },
- "vip": {
- "vipType": 0,
- "vipDueDate": 0,
- "vipStatus": 0,
- "themeType": 0,
- "label": {
- "path": "",
- "text": "",
- "label_theme": "",
- "text_color": "",
- "bg_style": 0,
- "bg_color": "",
- "border_color": ""
- },
- "avatar_subscript": 0,
- "nickname_color": "",
- "role": 0,
- "avatar_subscript_url": ""
- },
- "pendant": {
- "pid": 0,
- "name": "",
- "image": "",
- "expire": 0,
- "image_enhance": "",
- "image_enhance_frame": ""
- },
- "rank": "10000",
- "sign": "",
- "level_info": {
- "current_level": 3
- }
- },
- "uid_type": 1,
- "recommend_info": {
- "is_attention": 0
- },
- "stype": 0,
- "r_type": 1,
- "inner_id": 0,
- "topic_board": "C",
- "topic_board_desc": "最新",
- "status": 1,
- "dynamic_id_str": "517505230886905525",
- "pre_dy_id_str": "517241610091321208",
- "orig_dy_id_str": "517241610091321208",
- "rid_str": "517505230885402892",
- "origin": {
- "uid": 326499679,
- "type": 2,
- "rid": 131403515,
- "acl": 1024,
- "view": 1951519,
- "repost": 16543,
- "dynamic_id": 517241610091321208,
- "timestamp": 1619268097,
- "uid_type": 1,
- "r_type": 1,
- "status": 1,
- "dynamic_id_str": "517241610091321208",
- "pre_dy_id_str": "0",
- "orig_dy_id_str": "0",
- "rid_str": "131403515"
- }
- },
- "card": "{ \"user\": { \"uid\": 1192711092, \"uname\": \"会发光的偶恰\", \"face\": \"https:\\/\\/i0.hdslb.com\\/bfs\\/face\\/b85a508793bd96deec61e2491d60e68f10378395.jpg\" }, \"item\": { \"rp_id\": 517505230885402892, \"uid\": 1192711092, \"content\": \"我最喜欢这个了,我也想要#哔哩哔哩漫画#\", \"orig_dy_id\": 517241610091321208, \"pre_dy_id\": 517241610091321208, \"timestamp\": 1619329476, \"reply\": 0, \"orig_type\": 2 }, \"origin\": \"{\\\"item\\\":{\\\"at_control\\\":\\\"[{\\\\\\\"type\\\\\\\":2,\\\\\\\"location\\\\\\\":0,\\\\\\\"length\\\\\\\":0,\\\\\\\"data\\\\\\\":\\\\\\\"5\\\\\\\"}]\\\",\\\"category\\\":\\\"daily\\\",\\\"description\\\":\\\"互动抽奖 【关+转】抽1位小伙伴送【哔哩哔哩小电视兔子包】~\\\\n【#哔哩哔哩漫画# 作品推荐】大量西幻少女漫爆更来啦———\\\\n[干杯] 即日起,《重生成为公爵家的丑女》《暴君的监护人是反派魔女》《姐姐捡回了男主》等大量西幻少女精品漫画爆更,追漫更有樱花立牌\\\\\\/玩偶等福利好礼相送!\\\\n[干杯] 快来哔哩哔哩漫画追漫吧~\\\",\\\"id\\\":131403515,\\\"is_fav\\\":0,\\\"pictures\\\":[{\\\"img_height\\\":1357,\\\"img_size\\\":1759.1650390625,\\\"img_src\\\":\\\"https:\\\\\\/\\\\\\/i0.hdslb.com\\\\\\/bfs\\\\\\/album\\\\\\/1ce565e7f36e0ae5a3809df21bb39aa2fe578a88.png\\\",\\\"img_tags\\\":null,\\\"img_width\\\":1080},{\\\"img_height\\\":1238,\\\"img_size\\\":832.51953125,\\\"img_src\\\":\\\"https:\\\\\\/\\\\\\/i0.hdslb.com\\\\\\/bfs\\\\\\/album\\\\\\/6df0150c77a7f42a5d31cce8bb006105a660dad9.png\\\",\\\"img_tags\\\":null,\\\"img_width\\\":1080},{\\\"img_height\\\":2193,\\\"img_size\\\":3424.060546875,\\\"img_src\\\":\\\"https:\\\\\\/\\\\\\/i0.hdslb.com\\\\\\/bfs\\\\\\/album\\\\\\/adce81c59436184b56d84e5394583d2ab491b2e6.png\\\",\\\"img_tags\\\":null,\\\"img_width\\\":1080},{\\\"img_height\\\":800,\\\"img_size\\\":166.1552734375,\\\"img_src\\\":\\\"https:\\\\\\/\\\\\\/i0.hdslb.com\\\\\\/bfs\\\\\\/album\\\\\\/9c4e8d6fc04d5a1f3df225d5967fb65c7a3f5f09.jpg\\\",\\\"img_tags\\\":null,\\\"img_width\\\":800}],\\\"pictures_count\\\":4,\\\"reply\\\":1003,\\\"role\\\":[],\\\"settings\\\":{\\\"copy_forbidden\\\":\\\"0\\\"},\\\"source\\\":[],\\\"title\\\":\\\"\\\",\\\"upload_time\\\":1619268097},\\\"user\\\":{\\\"head_url\\\":\\\"https:\\\\\\/\\\\\\/i1.hdslb.com\\\\\\/bfs\\\\\\/face\\\\\\/2254162161a60b528cfec449f3450409a81ebc37.jpg\\\",\\\"name\\\":\\\"哔哩哔哩漫画\\\",\\\"uid\\\":326499679,\\\"vip\\\":{\\\"avatar_subscript\\\":1,\\\"due_date\\\":1941033600000,\\\"label\\\":{\\\"label_theme\\\":\\\"ten_annual_vip\\\",\\\"path\\\":\\\"\\\",\\\"text\\\":\\\"十年大会员\\\"},\\\"nickname_color\\\":\\\"#FB7299\\\",\\\"status\\\":1,\\\"theme_type\\\":0,\\\"type\\\":2,\\\"vip_pay_type\\\":0}}}\", \"origin_extension\": { \"lott\": \"{\\\"callbackId\\\":10,\\\"lottery_id\\\":61382,\\\"lottery_time\\\":1620504000,\\\"title\\\":\\\"互动抽奖\\\"}\" }, \"origin_extend_json\": \"{\\\"ctrl\\\":[{\\\"data\\\":\\\"5\\\",\\\"length\\\":0,\\\"location\\\":0,\\\"type\\\":2}],\\\"from\\\":{\\\"emoji_type\\\":1,\\\"from\\\":\\\"\\\",\\\"up_close_comment\\\":0,\\\"verify\\\":{\\\"asw\\\":{\\\"fl\\\":15,\\\"nv\\\":1},\\\"cc\\\":{\\\"vf\\\":1},\\\"sw\\\":{\\\"fl\\\":15,\\\"nv\\\":1}}},\\\"like_icon\\\":{\\\"action\\\":\\\"\\\",\\\"action_url\\\":\\\"\\\",\\\"end\\\":\\\"\\\",\\\"end_url\\\":\\\"\\\",\\\"start\\\":\\\"\\\",\\\"start_url\\\":\\\"\\\"},\\\"lott\\\":{\\\"callbackId\\\":10,\\\"lottery_id\\\":61382,\\\"lottery_time\\\":1620504000,\\\"title\\\":\\\"互动抽奖\\\"},\\\"topic\\\":{\\\"is_attach_topic\\\":1}}\", \"origin_user\": { \"info\": { \"uid\": 326499679, \"uname\": \"哔哩哔哩漫画\", \"face\": \"https:\\/\\/i1.hdslb.com\\/bfs\\/face\\/2254162161a60b528cfec449f3450409a81ebc37.jpg\" }, \"card\": { \"official_verify\": { \"type\": 1, \"desc\": \"哔哩哔哩漫画官方账号\" } }, \"vip\": { \"vipType\": 2, \"vipDueDate\": 1941033600000, \"vipStatus\": 1, \"themeType\": 0, \"label\": { \"path\": \"\", \"text\": \"十年大会员\", \"label_theme\": \"ten_annual_vip\", \"text_color\": \"#FFFFFF\", \"bg_style\": 1, \"bg_color\": \"#FB7299\", \"border_color\": \"\" }, \"avatar_subscript\": 1, \"nickname_color\": \"#FB7299\", \"role\": 7, \"avatar_subscript_url\": \"https:\\/\\/i0.hdslb.com\\/bfs\\/vip\\/icon_Certification_big_member_22_3x.png\" }, \"pendant\": { \"pid\": 0, \"name\": \"\", \"image\": \"\", \"expire\": 0, \"image_enhance\": \"\", \"image_enhance_frame\": \"\" }, \"rank\": \"10000\", \"sign\": \"↑ 【关注漫画姬】就送【漫读券5张】,当日或次日登录哔哩哔哩漫画APP即可领取,快来关注领券吧(°∀°)ノ ↑\", \"level_info\": { \"current_level\": 6 } } }",
- "extend_json": "{\"from\":{\"emoji_type\":1,\"from\":\"create.comment\",\"up_close_comment\":0},\"like_icon\":{\"action\":\"\",\"action_url\":\"\",\"end\":\"\",\"end_url\":\"\",\"start\":\"\",\"start_url\":\"\"},\"topic\":{\"is_attach_topic\":1}}",
- "display": {
- "topic_info": {
- "topic_details": [
- {
- "topic_id": 7539944,
- "topic_name": "哔哩哔哩漫画",
- "is_activity": 0,
- "topic_link": ""
- }
- ]
- },
- "origin": {
- "topic_info": {
- "topic_details": [
- {
- "topic_id": 7539944,
- "topic_name": "哔哩哔哩漫画",
- "is_activity": 0,
- "topic_link": ""
- }
- ]
- },
- "emoji_info": {
- "emoji_details": [
- {
- "emoji_name": "[干杯]",
- "id": 1949,
- "package_id": 1,
- "state": 0,
- "type": 1,
- "attr": 0,
- "text": "[干杯]",
- "url": "https://i0.hdslb.com/bfs/emote/8da12d5f55a2c7e9778dcc05b40571979fe208e6.png",
- "meta": {
- "size": 1
- },
- "mtime": 1597738918
- }
- ]
- },
- "relation": {
- "status": 1,
- "is_follow": 0,
- "is_followed": 0
- },
- "show_tip": {
- "del_tip": "要删除动态吗?"
- }
- },
- "relation": {
- "status": 1,
- "is_follow": 0,
- "is_followed": 0
- },
- "up_act_button": {
- "report_title": "举报",
- "founder_report_title": "举报(发起人)",
- "top_title": "置顶",
- "top_confirm_title": "确定将此动态置顶吗",
- "top_cancel_title": "确定将此动态取消置顶吗"
- },
- "show_tip": {
- "del_tip": "要删除动态吗?"
- }
- }
- },
- {
- "desc": {
- "uid": 1365116,
- "type": 1,
- "rid": 517503525787575777,
- "acl": 0,
- "view": 1,
- "repost": 0,
- "comment": 0,
- "like": 0,
- "is_liked": 0,
- "dynamic_id": 517503525779637979,
- "timestamp": 1619329079,
- "pre_dy_id": 517241610091321208,
- "orig_dy_id": 517241610091321208,
- "orig_type": 2,
- "user_profile": {
- "info": {
- "uid": 1365116,
- "uname": "濑户的海参",
- "face": "https://i2.hdslb.com/bfs/face/8426c61be9c3ccd2296d080a54691c3bed5f2f9f.jpg"
- },
- "card": {
- "official_verify": {
- "type": -1,
- "desc": ""
- }
- },
- "vip": {
- "vipType": 0,
- "vipDueDate": 0,
- "vipStatus": 0,
- "themeType": 0,
- "label": {
- "path": "",
- "text": "",
- "label_theme": "",
- "text_color": "",
- "bg_style": 0,
- "bg_color": "",
- "border_color": ""
- },
- "avatar_subscript": 0,
- "nickname_color": "",
- "role": 0,
- "avatar_subscript_url": ""
- },
- "pendant": {
- "pid": 0,
- "name": "",
- "image": "",
- "expire": 0,
- "image_enhance": "",
- "image_enhance_frame": ""
- },
- "rank": "10000",
- "sign": "",
- "level_info": {
- "current_level": 5
- }
- },
- "uid_type": 1,
- "recommend_info": {
- "is_attention": 0
- },
- "stype": 0,
- "r_type": 1,
- "inner_id": 0,
- "topic_board": "C",
- "topic_board_desc": "最新",
- "status": 1,
- "dynamic_id_str": "517503525779637979",
- "pre_dy_id_str": "517241610091321208",
- "orig_dy_id_str": "517241610091321208",
- "rid_str": "517503525787575777",
- "origin": {
- "uid": 326499679,
- "type": 2,
- "rid": 131403515,
- "acl": 1024,
- "view": 1951519,
- "repost": 16543,
- "comment": 1003,
- "like": 6950,
- "is_liked": 0,
- "dynamic_id": 517241610091321208,
- "timestamp": 1619268097,
- "user_profile": {
- "info": {
- "uid": 326499679,
- "uname": "哔哩哔哩漫画",
- "face": "https://i1.hdslb.com/bfs/face/2254162161a60b528cfec449f3450409a81ebc37.jpg"
- },
- "card": {
- "official_verify": {
- "type": 1,
- "desc": "哔哩哔哩漫画官方账号"
- }
- },
- "vip": {
- "vipType": 2,
- "vipDueDate": 1941033600000,
- "vipStatus": 1,
- "themeType": 0,
- "label": {
- "path": "",
- "text": "十年大会员",
- "label_theme": "ten_annual_vip",
- "text_color": "#FFFFFF",
- "bg_style": 1,
- "bg_color": "#FB7299",
- "border_color": ""
- },
- "avatar_subscript": 1,
- "nickname_color": "#FB7299",
- "role": 7,
- "avatar_subscript_url": "https://i0.hdslb.com/bfs/vip/icon_Certification_big_member_22_3x.png"
- },
- "pendant": {
- "pid": 0,
- "name": "",
- "image": "",
- "expire": 0,
- "image_enhance": "",
- "image_enhance_frame": ""
- },
- "rank": "10000",
- "sign": "↑ 【关注漫画姬】就送【漫读券5张】,当日或次日登录哔哩哔哩漫画APP即可领取,快来关注领券吧(°∀°)ノ ↑",
- "level_info": {
- "current_level": 6
- }
- },
- "uid_type": 1,
- "r_type": 1,
- "status": 1,
- "dynamic_id_str": "517241610091321208",
- "pre_dy_id_str": "0",
- "orig_dy_id_str": "0",
- "rid_str": "131403515"
- }
- },
- "card": "{ \"user\": { \"uid\": 1365116, \"uname\": \"濑户的海参\", \"face\": \"https:\\/\\/i2.hdslb.com\\/bfs\\/face\\/8426c61be9c3ccd2296d080a54691c3bed5f2f9f.jpg\" }, \"item\": { \"rp_id\": 517503525787575777, \"uid\": 1365116, \"content\": \"嗯哼#哔哩哔哩漫画#\", \"orig_dy_id\": 517241610091321208, \"pre_dy_id\": 517241610091321208, \"timestamp\": 1619329079, \"reply\": 0, \"orig_type\": 2 }, \"origin\": \"{\\\"item\\\":{\\\"at_control\\\":\\\"[{\\\\\\\"type\\\\\\\":2,\\\\\\\"location\\\\\\\":0,\\\\\\\"length\\\\\\\":0,\\\\\\\"data\\\\\\\":\\\\\\\"5\\\\\\\"}]\\\",\\\"category\\\":\\\"daily\\\",\\\"description\\\":\\\"互动抽奖 【关+转】抽1位小伙伴送【哔哩哔哩小电视兔子包】~\\\\n【#哔哩哔哩漫画# 作品推荐】大量西幻少女漫爆更来啦———\\\\n[干杯] 即日起,《重生成为公爵家的丑女》《暴君的监护人是反派魔女》《姐姐捡回了男主》等大量西幻少女精品漫画爆更,追漫更有樱花立牌\\\\\\/玩偶等福利好礼相送!\\\\n[干杯] 快来哔哩哔哩漫画追漫吧~\\\",\\\"id\\\":131403515,\\\"is_fav\\\":0,\\\"pictures\\\":[{\\\"img_height\\\":1357,\\\"img_size\\\":1759.1650390625,\\\"img_src\\\":\\\"https:\\\\\\/\\\\\\/i0.hdslb.com\\\\\\/bfs\\\\\\/album\\\\\\/1ce565e7f36e0ae5a3809df21bb39aa2fe578a88.png\\\",\\\"img_tags\\\":null,\\\"img_width\\\":1080},{\\\"img_height\\\":1238,\\\"img_size\\\":832.51953125,\\\"img_src\\\":\\\"https:\\\\\\/\\\\\\/i0.hdslb.com\\\\\\/bfs\\\\\\/album\\\\\\/6df0150c77a7f42a5d31cce8bb006105a660dad9.png\\\",\\\"img_tags\\\":null,\\\"img_width\\\":1080},{\\\"img_height\\\":2193,\\\"img_size\\\":3424.060546875,\\\"img_src\\\":\\\"https:\\\\\\/\\\\\\/i0.hdslb.com\\\\\\/bfs\\\\\\/album\\\\\\/adce81c59436184b56d84e5394583d2ab491b2e6.png\\\",\\\"img_tags\\\":null,\\\"img_width\\\":1080},{\\\"img_height\\\":800,\\\"img_size\\\":166.1552734375,\\\"img_src\\\":\\\"https:\\\\\\/\\\\\\/i0.hdslb.com\\\\\\/bfs\\\\\\/album\\\\\\/9c4e8d6fc04d5a1f3df225d5967fb65c7a3f5f09.jpg\\\",\\\"img_tags\\\":null,\\\"img_width\\\":800}],\\\"pictures_count\\\":4,\\\"reply\\\":1003,\\\"role\\\":[],\\\"settings\\\":{\\\"copy_forbidden\\\":\\\"0\\\"},\\\"source\\\":[],\\\"title\\\":\\\"\\\",\\\"upload_time\\\":1619268097},\\\"user\\\":{\\\"head_url\\\":\\\"https:\\\\\\/\\\\\\/i1.hdslb.com\\\\\\/bfs\\\\\\/face\\\\\\/2254162161a60b528cfec449f3450409a81ebc37.jpg\\\",\\\"name\\\":\\\"哔哩哔哩漫画\\\",\\\"uid\\\":326499679,\\\"vip\\\":{\\\"avatar_subscript\\\":1,\\\"due_date\\\":1941033600000,\\\"label\\\":{\\\"label_theme\\\":\\\"ten_annual_vip\\\",\\\"path\\\":\\\"\\\",\\\"text\\\":\\\"十年大会员\\\"},\\\"nickname_color\\\":\\\"#FB7299\\\",\\\"status\\\":1,\\\"theme_type\\\":0,\\\"type\\\":2,\\\"vip_pay_type\\\":0}}}\", \"origin_extension\": { \"lott\": \"{\\\"callbackId\\\":10,\\\"lottery_id\\\":61382,\\\"lottery_time\\\":1620504000,\\\"title\\\":\\\"互动抽奖\\\"}\" }, \"origin_extend_json\": \"{\\\"ctrl\\\":[{\\\"data\\\":\\\"5\\\",\\\"length\\\":0,\\\"location\\\":0,\\\"type\\\":2}],\\\"from\\\":{\\\"emoji_type\\\":1,\\\"from\\\":\\\"\\\",\\\"up_close_comment\\\":0,\\\"verify\\\":{\\\"asw\\\":{\\\"fl\\\":15,\\\"nv\\\":1},\\\"cc\\\":{\\\"vf\\\":1},\\\"sw\\\":{\\\"fl\\\":15,\\\"nv\\\":1}}},\\\"like_icon\\\":{\\\"action\\\":\\\"\\\",\\\"action_url\\\":\\\"\\\",\\\"end\\\":\\\"\\\",\\\"end_url\\\":\\\"\\\",\\\"start\\\":\\\"\\\",\\\"start_url\\\":\\\"\\\"},\\\"lott\\\":{\\\"callbackId\\\":10,\\\"lottery_id\\\":61382,\\\"lottery_time\\\":1620504000,\\\"title\\\":\\\"互动抽奖\\\"},\\\"topic\\\":{\\\"is_attach_topic\\\":1}}\", \"origin_user\": { \"info\": { \"uid\": 326499679, \"uname\": \"哔哩哔哩漫画\", \"face\": \"https:\\/\\/i1.hdslb.com\\/bfs\\/face\\/2254162161a60b528cfec449f3450409a81ebc37.jpg\" }, \"card\": { \"official_verify\": { \"type\": 1, \"desc\": \"哔哩哔哩漫画官方账号\" } }, \"vip\": { \"vipType\": 2, \"vipDueDate\": 1941033600000, \"vipStatus\": 1, \"themeType\": 0, \"label\": { \"path\": \"\", \"text\": \"十年大会员\", \"label_theme\": \"ten_annual_vip\", \"text_color\": \"#FFFFFF\", \"bg_style\": 1, \"bg_color\": \"#FB7299\", \"border_color\": \"\" }, \"avatar_subscript\": 1, \"nickname_color\": \"#FB7299\", \"role\": 7, \"avatar_subscript_url\": \"https:\\/\\/i0.hdslb.com\\/bfs\\/vip\\/icon_Certification_big_member_22_3x.png\" }, \"pendant\": { \"pid\": 0, \"name\": \"\", \"image\": \"\", \"expire\": 0, \"image_enhance\": \"\", \"image_enhance_frame\": \"\" }, \"rank\": \"10000\", \"sign\": \"↑ 【关注漫画姬】就送【漫读券5张】,当日或次日登录哔哩哔哩漫画APP即可领取,快来关注领券吧(°∀°)ノ ↑\", \"level_info\": { \"current_level\": 6 } } }",
- "extend_json": "{\"from\":{\"emoji_type\":1,\"from\":\"create.comment\",\"up_close_comment\":0},\"like_icon\":{\"action\":\"\",\"action_url\":\"\",\"end\":\"\",\"end_url\":\"\",\"start\":\"\",\"start_url\":\"\"},\"topic\":{\"is_attach_topic\":1}}",
- "display": {
- "topic_info": {
- "topic_details": [
- {
- "topic_id": 7539944,
- "topic_name": "哔哩哔哩漫画",
- "is_activity": 0,
- "topic_link": ""
- }
- ]
- },
- "origin": {
- "topic_info": {
- "topic_details": [
- {
- "topic_id": 7539944,
- "topic_name": "哔哩哔哩漫画",
- "is_activity": 0,
- "topic_link": ""
- }
- ]
- },
- "emoji_info": {
- "emoji_details": [
- {
- "emoji_name": "[干杯]",
- "id": 1949,
- "package_id": 1,
- "state": 0,
- "type": 1,
- "attr": 0,
- "text": "[干杯]",
- "url": "https://i0.hdslb.com/bfs/emote/8da12d5f55a2c7e9778dcc05b40571979fe208e6.png",
- "meta": {
- "size": 1
- },
- "mtime": 1597738918
- }
- ]
- },
- "relation": {
- "status": 1,
- "is_follow": 0,
- "is_followed": 0
- },
- "show_tip": {
- "del_tip": "要删除动态吗?"
- }
- },
- "relation": {
- "status": 1,
- "is_follow": 0,
- "is_followed": 0
- },
- "up_act_button": {
- "report_title": "举报",
- "founder_report_title": "举报(发起人)",
- "top_title": "置顶",
- "top_confirm_title": "确定将此动态置顶吗",
- "top_cancel_title": "确定将此动态取消置顶吗"
- },
- "show_tip": {
- "del_tip": "要删除动态吗?"
- }
- }
- },
- {
- "desc": {
- "uid": 326499679,
- "type": 2,
- "rid": 131489076,
- "acl": 0,
- "view": 1385233,
- "repost": 31,
- "comment": 23,
- "like": 3737,
- "is_liked": 0,
- "dynamic_id": 517501494260096644,
- "timestamp": 1619328606,
- "pre_dy_id": 0,
- "orig_dy_id": 0,
- "orig_type": 0,
- "user_profile": {
- "info": {
- "uid": 326499679,
- "uname": "哔哩哔哩漫画",
- "face": "https://i1.hdslb.com/bfs/face/2254162161a60b528cfec449f3450409a81ebc37.jpg"
- },
- "card": {
- "official_verify": {
- "type": 1,
- "desc": "哔哩哔哩漫画官方账号"
- }
- },
- "vip": {
- "vipType": 2,
- "vipDueDate": 1941033600000,
- "vipStatus": 1,
- "themeType": 0,
- "label": {
- "path": "",
- "text": "十年大会员",
- "label_theme": "ten_annual_vip",
- "text_color": "#FFFFFF",
- "bg_style": 1,
- "bg_color": "#FB7299",
- "border_color": ""
- },
- "avatar_subscript": 1,
- "nickname_color": "#FB7299",
- "role": 7,
- "avatar_subscript_url": "https://i0.hdslb.com/bfs/vip/icon_Certification_big_member_22_3x.png"
- },
- "pendant": {
- "pid": 0,
- "name": "",
- "image": "",
- "expire": 0,
- "image_enhance": "",
- "image_enhance_frame": ""
- },
- "rank": "10000",
- "sign": "↑ 【关注漫画姬】就送【漫读券5张】,当日或次日登录哔哩哔哩漫画APP即可领取,快来关注领券吧(°∀°)ノ ↑",
- "level_info": {
- "current_level": 6
- }
- },
- "uid_type": 1,
- "recommend_info": {
- "is_attention": 0
- },
- "stype": 0,
- "r_type": 1,
- "inner_id": 0,
- "topic_board": "C",
- "topic_board_desc": "最新",
- "status": 1,
- "dynamic_id_str": "517501494260096644",
- "pre_dy_id_str": "0",
- "orig_dy_id_str": "0",
- "rid_str": "131489076"
- },
- "card": "{\"item\":{\"at_control\":\"\",\"category\":\"daily\",\"description\":\"【#哔哩哔哩漫画# 限免活动+周边路透】✿ヽ(°▽°)ノ✿ \\n《#天宝伏妖录#》漫画第二卷将在【4月25日至5月2日】限时免费1周[打call][打call],感谢大家一直以来的支持[W-哈哈]!精彩剧情,不容错过!\\n同时之前《#天宝伏妖录#》第三卷活动售卖的周边近期在准备开补款啦~\\n小伙伴们先看看限定周边的实物图透叭(P1-P8)[打call]! 新卷也一直在筹备中,新卷封面同时奉上(P9)! \\n【追漫传送】:https:\\/\\/manga.bilibili.com\\/m\\/detail\\/mc27592 \",\"id\":131489076,\"is_fav\":0,\"pictures\":[{\"img_height\":5046,\"img_size\":16654.3876953125,\"img_src\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/album\\/6bcd7a96fe7bc616a7ea334319b58a3ab451cda2.jpg\",\"img_tags\":null,\"img_width\":6728},{\"img_height\":5046,\"img_size\":15713.2236328125,\"img_src\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/album\\/41e9e8ed2f181ce84adbb1175dcfc47b6b32d270.jpg\",\"img_tags\":null,\"img_width\":6728},{\"img_height\":5136,\"img_size\":20368.2822265625,\"img_src\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/album\\/81936f0dacc1fa63264d18cdba738b3582562cdd.jpg\",\"img_tags\":null,\"img_width\":7705},{\"img_height\":4427,\"img_size\":15909.310546875,\"img_src\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/album\\/5116024add807a033cf63395683c5b6ade28fbcf.jpg\",\"img_tags\":null,\"img_width\":6641},{\"img_height\":5136,\"img_size\":20431.3994140625,\"img_src\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/album\\/61155f325c5a862b0dcdb1dacc95f252ac768a4e.jpg\",\"img_tags\":null,\"img_width\":7705},{\"img_height\":5261,\"img_size\":19335.5029296875,\"img_src\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/album\\/6f5a7241d8f0093952edf16195b4d0aecfa2c6cd.jpg\",\"img_tags\":null,\"img_width\":7014},{\"img_height\":1408,\"img_size\":4784.3037109375,\"img_src\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/album\\/0350c791822a980d72450da226b1d61fa7b68c8f.png\",\"img_tags\":null,\"img_width\":1878},{\"img_height\":1408,\"img_size\":4614.8251953125,\"img_src\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/album\\/271187137e9973d07f01763a9a41b9b7f25f68fd.png\",\"img_tags\":null,\"img_width\":1878},{\"img_height\":3508,\"img_size\":1452.4482421875,\"img_src\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/album\\/f818bb197c7cc914ed4c921a6f7488f87ca15faf.jpg\",\"img_tags\":null,\"img_width\":2480}],\"pictures_count\":9,\"reply\":23,\"role\":[],\"settings\":{\"copy_forbidden\":\"0\"},\"source\":[],\"title\":\"\",\"upload_time\":1619328606},\"user\":{\"head_url\":\"https:\\/\\/i1.hdslb.com\\/bfs\\/face\\/2254162161a60b528cfec449f3450409a81ebc37.jpg\",\"name\":\"哔哩哔哩漫画\",\"uid\":326499679,\"vip\":{\"avatar_subscript\":1,\"due_date\":1941033600000,\"label\":{\"label_theme\":\"ten_annual_vip\",\"path\":\"\",\"text\":\"十年大会员\"},\"nickname_color\":\"#FB7299\",\"status\":1,\"theme_type\":0,\"type\":2,\"vip_pay_type\":0}}}",
- "extend_json": "{\"from\":{\"emoji_type\":1,\"from\":\"timer.publish\",\"up_close_comment\":0,\"verify\":{\"cc\":{\"nv\":1}}},\"like_icon\":{\"action\":\"\",\"action_url\":\"\",\"end\":\"\",\"end_url\":\"\",\"start\":\"\",\"start_url\":\"\"},\"topic\":{\"is_attach_topic\":1}}",
- "display": {
- "topic_info": {
- "topic_details": [
- {
- "topic_id": 7539944,
- "topic_name": "哔哩哔哩漫画",
- "is_activity": 0,
- "topic_link": ""
- },
- {
- "topic_id": 3812656,
- "topic_name": "天宝伏妖录",
- "is_activity": 1,
- "topic_link": "https://www.bilibili.com/blackboard/dynamic/62601"
- }
- ]
- },
- "emoji_info": {
- "emoji_details": [
- {
- "emoji_name": "[W-哈哈]",
- "id": 3045,
- "package_id": 1,
- "state": 0,
- "type": 1,
- "attr": 0,
- "text": "[W-哈哈]",
- "url": "https://i0.hdslb.com/bfs/emote/83d527303c8f62f494e6971c48836487e7d87b1b.png",
- "meta": {
- "size": 1
- },
- "mtime": 1608785082
- },
- {
- "emoji_name": "[打call]",
- "id": 510,
- "package_id": 1,
- "state": 0,
- "type": 1,
- "attr": 0,
- "text": "[打call]",
- "url": "https://i0.hdslb.com/bfs/emote/431432c43da3ee5aab5b0e4f8931953e649e9975.png",
- "meta": {
- "size": 1
- },
- "mtime": 1617293741
- }
- ]
- },
- "relation": {
- "status": 1,
- "is_follow": 0,
- "is_followed": 0
- },
- "up_act_button": {
- "report_title": "举报",
- "founder_report_title": "举报(发起人)",
- "top_title": "置顶",
- "top_confirm_title": "确定将此动态置顶吗",
- "top_cancel_title": "确定将此动态取消置顶吗"
- },
- "show_tip": {
- "del_tip": "要删除动态吗?"
- }
- }
- },
- {
- "desc": {
- "uid": 1902548007,
- "type": 2,
- "rid": 131480564,
- "acl": 0,
- "view": 1056,
- "repost": 0,
- "comment": 0,
- "like": 16,
- "is_liked": 0,
- "dynamic_id": 517482725259184156,
- "timestamp": 1619324236,
- "pre_dy_id": 0,
- "orig_dy_id": 0,
- "orig_type": 0,
- "user_profile": {
- "info": {
- "uid": 1902548007,
- "uname": "BV社",
- "face": "https://i0.hdslb.com/bfs/face/48f8e6afa688e37b9f1e3721a86bea8ce02688dc.jpg"
- },
- "card": {
- "official_verify": {
- "type": 1,
- "desc": "BV社官方账号"
- }
- },
- "vip": {
- "vipType": 0,
- "vipDueDate": 0,
- "vipStatus": 0,
- "themeType": 0,
- "label": {
- "path": "",
- "text": "",
- "label_theme": "",
- "text_color": "",
- "bg_style": 0,
- "bg_color": "",
- "border_color": ""
- },
- "avatar_subscript": 0,
- "nickname_color": "",
- "role": 0,
- "avatar_subscript_url": ""
- },
- "pendant": {
- "pid": 0,
- "name": "",
- "image": "",
- "expire": 0,
- "image_enhance": "",
- "image_enhance_frame": ""
- },
- "rank": "10000",
- "sign": "Vomic,让你爱的漫画更动听",
- "level_info": {
- "current_level": 2
- }
- },
- "uid_type": 1,
- "recommend_info": {
- "is_attention": 0
- },
- "stype": 0,
- "r_type": 1,
- "inner_id": 0,
- "topic_board": "C",
- "topic_board_desc": "最新",
- "status": 1,
- "dynamic_id_str": "517482725259184156",
- "pre_dy_id_str": "0",
- "orig_dy_id_str": "0",
- "rid_str": "131480564"
- },
- "card": "{\"item\":{\"at_control\":\"[{\\\"location\\\":122,\\\"type\\\":1,\\\"length\\\":8,\\\"data\\\":\\\"326499679\\\"},{\\\"location\\\":133,\\\"type\\\":1,\\\"length\\\":5,\\\"data\\\":\\\"1902548007\\\"},{\\\"location\\\":141,\\\"type\\\":1,\\\"length\\\":9,\\\"data\\\":\\\"386135764\\\"},{\\\"location\\\":153,\\\"type\\\":1,\\\"length\\\":6,\\\"data\\\":\\\"1740792\\\"}]\",\"category\":\"daily\",\"description\":\"#哔哩哔哩漫画#独家\\n“女鬼”找上门,却是为了救人?\\n“养尸地?那是啥?里面有宝贝嘛?”\\n“有凶尸。”\\n哟,父子俩这是什么情况?\\n惊奇 #Vomic##幽冥诡匠#第五集正式上线!每周日更新!更多精彩,小剧场,花絮,尽在哔哩哔哩漫画APP\\n出品:@哔哩哔哩漫画\\n策划:@BV社\\n制作:@回声漫响工作室\\n录制:@音熊联萌 \",\"id\":131480564,\"is_fav\":0,\"pictures\":[{\"img_height\":2400,\"img_size\":2852.115234375,\"img_src\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/album\\/cb7632509c8cb8a7703f5ab289320b26a07ec62e.jpg\",\"img_tags\":null,\"img_width\":2400}],\"pictures_count\":1,\"reply\":0,\"role\":[],\"settings\":{\"copy_forbidden\":\"0\"},\"source\":[],\"title\":\"\",\"upload_time\":1619324236},\"user\":{\"head_url\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/face\\/48f8e6afa688e37b9f1e3721a86bea8ce02688dc.jpg\",\"name\":\"BV社\",\"uid\":1902548007,\"vip\":{\"avatar_subscript\":0,\"due_date\":0,\"label\":{\"label_theme\":\"\",\"path\":\"\",\"text\":\"\"},\"nickname_color\":\"\",\"status\":0,\"theme_type\":0,\"type\":0,\"vip_pay_type\":0}}}",
- "extend_json": "{\"ctrl\":[{\"data\":\"326499679\",\"length\":8,\"location\":122,\"type\":1},{\"data\":\"1902548007\",\"length\":5,\"location\":133,\"type\":1},{\"data\":\"386135764\",\"length\":9,\"location\":141,\"type\":1},{\"data\":\"1740792\",\"length\":6,\"location\":153,\"type\":1}],\"from\":{\"emoji_type\":1,\"from\":\"create.dynamic.web\",\"up_close_comment\":0,\"verify\":{\"asw\":{\"fl\":15,\"nv\":1},\"sw\":{\"fl\":15,\"nv\":1}}},\"like_icon\":{\"action\":\"\",\"action_url\":\"\",\"end\":\"\",\"end_url\":\"\",\"start\":\"\",\"start_url\":\"\"},\"topic\":{\"is_attach_topic\":1}}",
- "display": {
- "topic_info": {
- "topic_details": [
- {
- "topic_id": 7539944,
- "topic_name": "哔哩哔哩漫画",
- "is_activity": 0,
- "topic_link": ""
- },
- {
- "topic_id": 3208432,
- "topic_name": "Vomic",
- "is_activity": 1,
- "topic_link": "https://www.bilibili.com/blackboard/dynamic/106426"
- },
- {
- "topic_id": 7128092,
- "topic_name": "幽冥诡匠",
- "is_activity": 1,
- "topic_link": "https://www.bilibili.com/blackboard/dynamic/42527"
- },
- {
- "topic_id": 37542,
- "topic_name": "VOMIC",
- "is_activity": 1,
- "topic_link": "https://www.bilibili.com/blackboard/dynamic/106283"
- },
- {
- "topic_id": 8972604,
- "topic_name": "vomic",
- "is_activity": 1,
- "topic_link": "https://www.bilibili.com/blackboard/dynamic/106766"
- }
- ]
- },
- "relation": {
- "status": 1,
- "is_follow": 0,
- "is_followed": 0
- },
- "up_act_button": {
- "report_title": "举报",
- "founder_report_title": "举报(发起人)",
- "top_title": "置顶",
- "top_confirm_title": "确定将此动态置顶吗",
- "top_cancel_title": "确定将此动态取消置顶吗"
- },
- "show_tip": {
- "del_tip": "要删除动态吗?"
- }
- }
- },
- {
- "desc": {
- "uid": 255495142,
- "type": 1,
- "rid": 517480856950088884,
- "acl": 0,
- "view": 331,
- "repost": 0,
- "comment": 0,
- "like": 0,
- "is_liked": 0,
- "dynamic_id": 517480856947349138,
- "timestamp": 1619323801,
- "pre_dy_id": 517479366596833835,
- "orig_dy_id": 517479366596833835,
- "orig_type": 2,
- "user_profile": {
- "info": {
- "uid": 255495142,
- "uname": "坐怀不乱登徒子",
- "face": "https://i1.hdslb.com/bfs/face/fa18d118f6c58da704400909743fb895c4c47627.jpg"
- },
- "card": {
- "official_verify": {
- "type": -1,
- "desc": ""
- }
- },
- "vip": {
- "vipType": 2,
- "vipDueDate": 1626451200000,
- "vipStatus": 1,
- "themeType": 0,
- "label": {
- "path": "",
- "text": "年度大会员",
- "label_theme": "annual_vip",
- "text_color": "#FFFFFF",
- "bg_style": 1,
- "bg_color": "#FB7299",
- "border_color": ""
- },
- "avatar_subscript": 1,
- "nickname_color": "#FB7299",
- "role": 3,
- "avatar_subscript_url": "https://i0.hdslb.com/bfs/vip/icon_Certification_big_member_22_3x.png"
- },
- "pendant": {
- "pid": 204,
- "name": "至高守护",
- "image": "https://i1.hdslb.com/bfs/face/88162662c23c2768c9e9e5c25017375685e83798.png",
- "expire": 0,
- "image_enhance": "https://i1.hdslb.com/bfs/face/88162662c23c2768c9e9e5c25017375685e83798.png",
- "image_enhance_frame": ""
- },
- "rank": "10000",
- "sign": "",
- "level_info": {
- "current_level": 5
- }
- },
- "uid_type": 1,
- "recommend_info": {
- "is_attention": 0
- },
- "stype": 0,
- "r_type": 1,
- "inner_id": 0,
- "topic_board": "C",
- "topic_board_desc": "最新",
- "status": 1,
- "dynamic_id_str": "517480856947349138",
- "pre_dy_id_str": "517479366596833835",
- "orig_dy_id_str": "517479366596833835",
- "rid_str": "517480856950088884",
- "origin": {
- "uid": 326499679,
- "type": 2,
- "rid": 131479206,
- "acl": 1024,
- "view": 1379492,
- "repost": 11233,
- "comment": 573,
- "like": 6337,
- "is_liked": 0,
- "dynamic_id": 517479366596833835,
- "timestamp": 1619323454,
- "user_profile": {
- "info": {
- "uid": 326499679,
- "uname": "哔哩哔哩漫画",
- "face": "https://i1.hdslb.com/bfs/face/2254162161a60b528cfec449f3450409a81ebc37.jpg"
- },
- "card": {
- "official_verify": {
- "type": 1,
- "desc": "哔哩哔哩漫画官方账号"
- }
- },
- "vip": {
- "vipType": 2,
- "vipDueDate": 1941033600000,
- "vipStatus": 1,
- "themeType": 0,
- "label": {
- "path": "",
- "text": "十年大会员",
- "label_theme": "ten_annual_vip",
- "text_color": "#FFFFFF",
- "bg_style": 1,
- "bg_color": "#FB7299",
- "border_color": ""
- },
- "avatar_subscript": 1,
- "nickname_color": "#FB7299",
- "role": 7,
- "avatar_subscript_url": "https://i0.hdslb.com/bfs/vip/icon_Certification_big_member_22_3x.png"
- },
- "pendant": {
- "pid": 0,
- "name": "",
- "image": "",
- "expire": 0,
- "image_enhance": "",
- "image_enhance_frame": ""
- },
- "rank": "10000",
- "sign": "↑ 【关注漫画姬】就送【漫读券5张】,当日或次日登录哔哩哔哩漫画APP即可领取,快来关注领券吧(°∀°)ノ ↑",
- "level_info": {
- "current_level": 6
- }
- },
- "uid_type": 1,
- "r_type": 1,
- "status": 1,
- "dynamic_id_str": "517479366596833835",
- "pre_dy_id_str": "0",
- "orig_dy_id_str": "0",
- "rid_str": "131479206"
- }
- },
- "card": "{ \"user\": { \"uid\": 255495142, \"uname\": \"坐怀不乱登徒子\", \"face\": \"https:\\/\\/i1.hdslb.com\\/bfs\\/face\\/fa18d118f6c58da704400909743fb895c4c47627.jpg\" }, \"item\": { \"rp_id\": 517480856950088884, \"uid\": 255495142, \"content\": \"[doge]#哔哩哔哩漫画#,#AISHA#\", \"orig_dy_id\": 517479366596833835, \"pre_dy_id\": 517479366596833835, \"timestamp\": 1619323801, \"reply\": 0, \"orig_type\": 2 }, \"origin\": \"{\\\"item\\\":{\\\"at_control\\\":\\\"[{\\\\\\\"data\\\\\\\":\\\\\\\"5\\\\\\\",\\\\\\\"length\\\\\\\":0,\\\\\\\"location\\\\\\\":0,\\\\\\\"type\\\\\\\":2},{\\\\\\\"location\\\\\\\":19,\\\\\\\"type\\\\\\\":1,\\\\\\\"length\\\\\\\":8,\\\\\\\"data\\\\\\\":\\\\\\\"1425490690\\\\\\\"}]\\\",\\\"category\\\":\\\"daily\\\",\\\"description\\\":\\\"互动抽奖 关+转,抽3位幸运小伙伴送@漫画家法吉特 【《逆光》画集作者签名版】~\\\\n #哔哩哔哩漫画#重磅安利之《#AISHA#》\\\\n当当当当!剧情党福音~\\\\n答题就有机会赢得礼物?还有法吉特太太亲签精美画集?\\\\n活动入口→https:\\\\\\/\\\\\\/www.bilibili.com\\\\\\/blackboard\\\\\\/topic\\\\\\/activity-oPISh007wv.html\\\\n\\\\n你以为这样就结束了了吗?\\\\nNONONO~\\\\n法吉特老师首次出版个人作品集《逆光》~商城4月25日0点首发开售!\\\\n有法吉特老师签名版掉落哦!随书额外附赠专属书签特典!\\\\n活动指路:哔哩哔哩漫画APP-我的-商城-banner\\\",\\\"id\\\":131479206,\\\"is_fav\\\":0,\\\"pictures\\\":[{\\\"img_height\\\":782,\\\"img_size\\\":1097.2451171875,\\\"img_src\\\":\\\"https:\\\\\\/\\\\\\/i0.hdslb.com\\\\\\/bfs\\\\\\/album\\\\\\/8965a784f77e2545f4f2f168df4f417ed3ace818.png\\\",\\\"img_tags\\\":null,\\\"img_width\\\":750}],\\\"pictures_count\\\":1,\\\"reply\\\":573,\\\"role\\\":[],\\\"settings\\\":{\\\"copy_forbidden\\\":\\\"0\\\"},\\\"source\\\":[],\\\"title\\\":\\\"\\\",\\\"upload_time\\\":1619323454},\\\"user\\\":{\\\"head_url\\\":\\\"https:\\\\\\/\\\\\\/i1.hdslb.com\\\\\\/bfs\\\\\\/face\\\\\\/2254162161a60b528cfec449f3450409a81ebc37.jpg\\\",\\\"name\\\":\\\"哔哩哔哩漫画\\\",\\\"uid\\\":326499679,\\\"vip\\\":{\\\"avatar_subscript\\\":1,\\\"due_date\\\":1941033600000,\\\"label\\\":{\\\"label_theme\\\":\\\"ten_annual_vip\\\",\\\"path\\\":\\\"\\\",\\\"text\\\":\\\"十年大会员\\\"},\\\"nickname_color\\\":\\\"#FB7299\\\",\\\"status\\\":1,\\\"theme_type\\\":0,\\\"type\\\":2,\\\"vip_pay_type\\\":0}}}\", \"origin_extension\": { \"lott\": \"{\\\"lottery_id\\\":61398}\" }, \"origin_extend_json\": \"{\\\"ctrl\\\":[{\\\"data\\\":\\\"5\\\",\\\"length\\\":0,\\\"location\\\":0,\\\"type\\\":2},{\\\"data\\\":\\\"1425490690\\\",\\\"length\\\":8,\\\"location\\\":19,\\\"type\\\":1}],\\\"from\\\":{\\\"emoji_type\\\":1,\\\"from\\\":\\\"create.dynamic.web\\\",\\\"up_close_comment\\\":0,\\\"verify\\\":{\\\"asw\\\":{\\\"fl\\\":15,\\\"nv\\\":1},\\\"cc\\\":{\\\"vf\\\":1},\\\"sw\\\":{\\\"fl\\\":15,\\\"nv\\\":1}}},\\\"like_icon\\\":{\\\"action\\\":\\\"\\\",\\\"action_url\\\":\\\"\\\",\\\"end\\\":\\\"\\\",\\\"end_url\\\":\\\"\\\",\\\"start\\\":\\\"\\\",\\\"start_url\\\":\\\"\\\"},\\\"lott\\\":{\\\"lottery_id\\\":61398},\\\"topic\\\":{\\\"is_attach_topic\\\":1}}\", \"origin_user\": { \"info\": { \"uid\": 326499679, \"uname\": \"哔哩哔哩漫画\", \"face\": \"https:\\/\\/i1.hdslb.com\\/bfs\\/face\\/2254162161a60b528cfec449f3450409a81ebc37.jpg\" }, \"card\": { \"official_verify\": { \"type\": 1, \"desc\": \"哔哩哔哩漫画官方账号\" } }, \"vip\": { \"vipType\": 2, \"vipDueDate\": 1941033600000, \"vipStatus\": 1, \"themeType\": 0, \"label\": { \"path\": \"\", \"text\": \"十年大会员\", \"label_theme\": \"ten_annual_vip\", \"text_color\": \"#FFFFFF\", \"bg_style\": 1, \"bg_color\": \"#FB7299\", \"border_color\": \"\" }, \"avatar_subscript\": 1, \"nickname_color\": \"#FB7299\", \"role\": 7, \"avatar_subscript_url\": \"https:\\/\\/i0.hdslb.com\\/bfs\\/vip\\/icon_Certification_big_member_22_3x.png\" }, \"pendant\": { \"pid\": 0, \"name\": \"\", \"image\": \"\", \"expire\": 0, \"image_enhance\": \"\", \"image_enhance_frame\": \"\" }, \"rank\": \"10000\", \"sign\": \"↑ 【关注漫画姬】就送【漫读券5张】,当日或次日登录哔哩哔哩漫画APP即可领取,快来关注领券吧(°∀°)ノ ↑\", \"level_info\": { \"current_level\": 6 } } }",
- "extend_json": "{\"from\":{\"emoji_type\":1,\"from\":\"create.comment\",\"up_close_comment\":0},\"like_icon\":{\"action\":\"\",\"action_url\":\"\",\"end\":\"\",\"end_url\":\"\",\"start\":\"\",\"start_url\":\"\"},\"topic\":{\"is_attach_topic\":1}}",
- "display": {
- "topic_info": {
- "topic_details": [
- {
- "topic_id": 7539944,
- "topic_name": "哔哩哔哩漫画",
- "is_activity": 0,
- "topic_link": ""
- },
- {
- "topic_id": 148830,
- "topic_name": "AISHA",
- "is_activity": 1,
- "topic_link": "https://www.bilibili.com/blackboard/dynamic/18159"
- },
- {
- "topic_id": 2514603,
- "topic_name": "aisha",
- "is_activity": 0,
- "topic_link": ""
- }
- ]
- },
- "origin": {
- "topic_info": {
- "topic_details": [
- {
- "topic_id": 7539944,
- "topic_name": "哔哩哔哩漫画",
- "is_activity": 0,
- "topic_link": ""
- },
- {
- "topic_id": 148830,
- "topic_name": "AISHA",
- "is_activity": 1,
- "topic_link": "https://www.bilibili.com/blackboard/dynamic/18159"
- },
- {
- "topic_id": 2514603,
- "topic_name": "aisha",
- "is_activity": 0,
- "topic_link": ""
- }
- ]
- },
- "relation": {
- "status": 1,
- "is_follow": 0,
- "is_followed": 0
- },
- "show_tip": {
- "del_tip": "要删除动态吗?"
- }
- },
- "emoji_info": {
- "emoji_details": [
- {
- "emoji_name": "[doge]",
- "id": 26,
- "package_id": 1,
- "state": 0,
- "type": 1,
- "attr": 0,
- "text": "[doge]",
- "url": "https://i0.hdslb.com/bfs/emote/3087d273a78ccaff4bb1e9972e2ba2a7583c9f11.png",
- "meta": {
- "size": 1
- },
- "mtime": 1617293741
- }
- ]
- },
- "relation": {
- "status": 1,
- "is_follow": 0,
- "is_followed": 0
- },
- "up_act_button": {
- "report_title": "举报",
- "founder_report_title": "举报(发起人)",
- "top_title": "置顶",
- "top_confirm_title": "确定将此动态置顶吗",
- "top_cancel_title": "确定将此动态取消置顶吗"
- },
- "show_tip": {
- "del_tip": "要删除动态吗?"
- }
- }
- },
- {
- "desc": {
- "uid": 326499679,
- "type": 2,
- "rid": 131479206,
- "acl": 1024,
- "view": 1379492,
- "repost": 11233,
- "comment": 573,
- "like": 6337,
- "is_liked": 0,
- "dynamic_id": 517479366596833835,
- "timestamp": 1619323454,
- "orig_type": 0,
- "user_profile": {
- "info": {
- "uid": 326499679,
- "uname": "哔哩哔哩漫画",
- "face": "https://i1.hdslb.com/bfs/face/2254162161a60b528cfec449f3450409a81ebc37.jpg"
- },
- "card": {
- "official_verify": {
- "type": 1,
- "desc": "哔哩哔哩漫画官方账号"
- }
- },
- "vip": {
- "vipType": 2,
- "vipDueDate": 1941033600000,
- "vipStatus": 1,
- "themeType": 0,
- "label": {
- "path": "",
- "text": "十年大会员",
- "label_theme": "ten_annual_vip",
- "text_color": "#FFFFFF",
- "bg_style": 1,
- "bg_color": "#FB7299",
- "border_color": ""
- },
- "avatar_subscript": 1,
- "nickname_color": "#FB7299",
- "role": 7,
- "avatar_subscript_url": "https://i0.hdslb.com/bfs/vip/icon_Certification_big_member_22_3x.png"
- },
- "pendant": {
- "pid": 0,
- "name": "",
- "image": "",
- "expire": 0,
- "image_enhance": "",
- "image_enhance_frame": ""
- },
- "rank": "10000",
- "sign": "↑ 【关注漫画姬】就送【漫读券5张】,当日或次日登录哔哩哔哩漫画APP即可领取,快来关注领券吧(°∀°)ノ ↑",
- "level_info": {
- "current_level": 6
- }
- },
- "uid_type": 1,
- "recommend_info": {
- "is_attention": 0
- },
- "r_type": 1,
- "topic_board": "C",
- "topic_board_desc": "最新",
- "status": 1,
- "dynamic_id_str": "517479366596833835",
- "pre_dy_id_str": "0",
- "orig_dy_id_str": "0",
- "rid_str": "131479206"
- },
- "card": "{\"item\":{\"at_control\":\"[{\\\"data\\\":\\\"5\\\",\\\"length\\\":0,\\\"location\\\":0,\\\"type\\\":2},{\\\"location\\\":19,\\\"type\\\":1,\\\"length\\\":8,\\\"data\\\":\\\"1425490690\\\"}]\",\"category\":\"daily\",\"description\":\"互动抽奖 关+转,抽3位幸运小伙伴送@漫画家法吉特 【《逆光》画集作者签名版】~\\n #哔哩哔哩漫画#重磅安利之《#AISHA#》\\n当当当当!剧情党福音~\\n答题就有机会赢得礼物?还有法吉特太太亲签精美画集?\\n活动入口→https:\\/\\/www.bilibili.com\\/blackboard\\/topic\\/activity-oPISh007wv.html\\n\\n你以为这样就结束了了吗?\\nNONONO~\\n法吉特老师首次出版个人作品集《逆光》~商城4月25日0点首发开售!\\n有法吉特老师签名版掉落哦!随书额外附赠专属书签特典!\\n活动指路:哔哩哔哩漫画APP-我的-商城-banner\",\"id\":131479206,\"is_fav\":0,\"pictures\":[{\"img_height\":782,\"img_size\":1097.2451171875,\"img_src\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/album\\/8965a784f77e2545f4f2f168df4f417ed3ace818.png\",\"img_tags\":null,\"img_width\":750}],\"pictures_count\":1,\"reply\":573,\"role\":[],\"settings\":{\"copy_forbidden\":\"0\"},\"source\":[],\"title\":\"\",\"upload_time\":1619323454},\"user\":{\"head_url\":\"https:\\/\\/i1.hdslb.com\\/bfs\\/face\\/2254162161a60b528cfec449f3450409a81ebc37.jpg\",\"name\":\"哔哩哔哩漫画\",\"uid\":326499679,\"vip\":{\"avatar_subscript\":1,\"due_date\":1941033600000,\"label\":{\"label_theme\":\"ten_annual_vip\",\"path\":\"\",\"text\":\"十年大会员\"},\"nickname_color\":\"#FB7299\",\"status\":1,\"theme_type\":0,\"type\":2,\"vip_pay_type\":0}}}",
- "extension": {
- "lott": "{\"lottery_id\":61398}"
- },
- "extend_json": "{\"ctrl\":[{\"data\":\"5\",\"length\":0,\"location\":0,\"type\":2},{\"data\":\"1425490690\",\"length\":8,\"location\":19,\"type\":1}],\"from\":{\"emoji_type\":1,\"from\":\"create.dynamic.web\",\"up_close_comment\":0,\"verify\":{\"asw\":{\"fl\":15,\"nv\":1},\"cc\":{\"vf\":1},\"sw\":{\"fl\":15,\"nv\":1}}},\"like_icon\":{\"action\":\"\",\"action_url\":\"\",\"end\":\"\",\"end_url\":\"\",\"start\":\"\",\"start_url\":\"\"},\"lott\":{\"lottery_id\":61398},\"topic\":{\"is_attach_topic\":1}}",
- "display": {
- "topic_info": {
- "topic_details": [
- {
- "topic_id": 7539944,
- "topic_name": "哔哩哔哩漫画",
- "is_activity": 0,
- "topic_link": ""
- },
- {
- "topic_id": 148830,
- "topic_name": "AISHA",
- "is_activity": 1,
- "topic_link": "https://www.bilibili.com/blackboard/dynamic/18159"
- },
- {
- "topic_id": 2514603,
- "topic_name": "aisha",
- "is_activity": 0,
- "topic_link": ""
- }
- ]
- },
- "relation": {
- "status": 1,
- "is_follow": 0,
- "is_followed": 0
- },
- "up_act_button": {
- "report_title": "举报",
- "founder_report_title": "举报(发起人)",
- "top_title": "置顶",
- "top_confirm_title": "确定将此动态置顶吗",
- "top_cancel_title": "确定将此动态取消置顶吗"
- },
- "show_tip": {
- "del_tip": "要删除动态吗?"
- }
- }
- },
- {
- "desc": {
- "uid": 271873076,
- "type": 2,
- "rid": 131468623,
- "acl": 0,
- "view": 22,
- "repost": 0,
- "comment": 0,
- "like": 0,
- "is_liked": 0,
- "dynamic_id": 517452016241823721,
- "timestamp": 1619317086,
- "pre_dy_id": 0,
- "orig_dy_id": 0,
- "orig_type": 0,
- "user_profile": {
- "info": {
- "uid": 271873076,
- "uname": "爱乐果iLEGUO",
- "face": "https://i2.hdslb.com/bfs/face/fb79ac0f6de92c8ecc7d4cd1e958d19376c85fe8.jpg"
- },
- "card": {
- "official_verify": {
- "type": -1,
- "desc": ""
- }
- },
- "vip": {
- "vipType": 0,
- "vipDueDate": 0,
- "vipStatus": 0,
- "themeType": 0,
- "label": {
- "path": "",
- "text": "",
- "label_theme": "",
- "text_color": "",
- "bg_style": 0,
- "bg_color": "",
- "border_color": ""
- },
- "avatar_subscript": 0,
- "nickname_color": "",
- "role": 0,
- "avatar_subscript_url": ""
- },
- "pendant": {
- "pid": 0,
- "name": "",
- "image": "",
- "expire": 0,
- "image_enhance": "",
- "image_enhance_frame": ""
- },
- "rank": "10000",
- "sign": "龙俦纪+羞耻侠+妖怪IDOLS+偶像饲养手册+闪亮的家+神奇少年团+第8界+爱果系列+爱次元!研究社",
- "level_info": {
- "current_level": 4
- }
- },
- "uid_type": 1,
- "recommend_info": {
- "is_attention": 0
- },
- "stype": 0,
- "r_type": 1,
- "inner_id": 0,
- "topic_board": "C",
- "topic_board_desc": "最新",
- "status": 1,
- "dynamic_id_str": "517452016241823721",
- "pre_dy_id_str": "0",
- "orig_dy_id_str": "0",
- "rid_str": "131468623"
- },
- "card": "{\"item\":{\"at_control\":\"\",\"category\":\"daily\",\"description\":\"《龙俦纪》第99话4月25日更新!\\n高振采药遇险,竟然从悬崖上坠入万丈深渊?!!\\n苏郃首次展现能力,苏千屹又从苏郃身上发现了什么秘密?\\n《龙俦纪》正在好评连载中,逢“五”更新,欢迎追漫!\\n#哔哩哔哩漫画# https:\\/\\/manga.bilibili.com\\/m\\/detail\\/mc26014 \\n#宝藏漫画##爱乐果##漫画##二次元##古风##玄幻##二次元条漫# \",\"id\":131468623,\"is_fav\":0,\"pictures\":[{\"img_height\":720,\"img_size\":297.19140625,\"img_src\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/album\\/54e4f9e0c339f42484fcbe42cb7e7f69be4b87aa.jpg\",\"img_tags\":null,\"img_width\":1280}],\"pictures_count\":1,\"reply\":0,\"role\":[],\"settings\":{\"copy_forbidden\":\"0\"},\"source\":[],\"title\":\"\",\"upload_time\":1619317086},\"user\":{\"head_url\":\"https:\\/\\/i2.hdslb.com\\/bfs\\/face\\/fb79ac0f6de92c8ecc7d4cd1e958d19376c85fe8.jpg\",\"name\":\"爱乐果iLEGUO\",\"uid\":271873076,\"vip\":{\"avatar_subscript\":0,\"due_date\":0,\"label\":{\"label_theme\":\"\",\"path\":\"\",\"text\":\"\"},\"nickname_color\":\"\",\"status\":0,\"theme_type\":0,\"type\":0,\"vip_pay_type\":0}}}",
- "extend_json": "{\"from\":{\"emoji_type\":1,\"from\":\"timer.publish\",\"up_close_comment\":0,\"verify\":{}},\"like_icon\":{\"action\":\"\",\"action_url\":\"\",\"end\":\"\",\"end_url\":\"\",\"start\":\"\",\"start_url\":\"\"},\"topic\":{\"is_attach_topic\":1}}",
- "display": {
- "topic_info": {
- "topic_details": [
- {
- "topic_id": 7539944,
- "topic_name": "哔哩哔哩漫画",
- "is_activity": 0,
- "topic_link": ""
- },
- {
- "topic_id": 10182306,
- "topic_name": "宝藏漫画",
- "is_activity": 0,
- "topic_link": ""
- },
- {
- "topic_id": 9628017,
- "topic_name": "爱乐果",
- "is_activity": 0,
- "topic_link": ""
- },
- {
- "topic_id": 1184,
- "topic_name": "漫画",
- "is_activity": 0,
- "topic_link": ""
- },
- {
- "topic_id": 1907,
- "topic_name": "二次元",
- "is_activity": 1,
- "topic_link": "https://www.bilibili.com/blackboard/dynamic/7694"
- },
- {
- "topic_id": 8227,
- "topic_name": "古风",
- "is_activity": 0,
- "topic_link": ""
- },
- {
- "topic_id": 62935,
- "topic_name": "玄幻",
- "is_activity": 0,
- "topic_link": ""
- },
- {
- "topic_id": 12532729,
- "topic_name": "二次元条漫",
- "is_activity": 0,
- "topic_link": ""
- }
- ]
- },
- "relation": {
- "status": 1,
- "is_follow": 0,
- "is_followed": 0
- },
- "up_act_button": {
- "report_title": "举报",
- "founder_report_title": "举报(发起人)",
- "top_title": "置顶",
- "top_confirm_title": "确定将此动态置顶吗",
- "top_cancel_title": "确定将此动态取消置顶吗"
- },
- "show_tip": {
- "del_tip": "要删除动态吗?"
- }
- }
- },
- {
- "desc": {
- "uid": 1677019,
- "type": 1,
- "rid": 517443572335742626,
- "acl": 0,
- "view": 3,
- "repost": 0,
- "comment": 0,
- "like": 0,
- "is_liked": 0,
- "dynamic_id": 517443572332941328,
- "timestamp": 1619315120,
- "pre_dy_id": 517241610091321208,
- "orig_dy_id": 517241610091321208,
- "orig_type": 2,
- "user_profile": {
- "info": {
- "uid": 1677019,
- "uname": "逗妇卤",
- "face": "https://i1.hdslb.com/bfs/face/15a8f5d8c93f8f30bda71f192b92cfde2c76a1c7.jpg"
- },
- "card": {
- "official_verify": {
- "type": -1,
- "desc": ""
- }
- },
- "vip": {
- "vipType": 2,
- "vipDueDate": 1637510400000,
- "vipStatus": 1,
- "themeType": 0,
- "label": {
- "path": "",
- "text": "年度大会员",
- "label_theme": "annual_vip",
- "text_color": "#FFFFFF",
- "bg_style": 1,
- "bg_color": "#FB7299",
- "border_color": ""
- },
- "avatar_subscript": 1,
- "nickname_color": "#FB7299",
- "role": 3,
- "avatar_subscript_url": "https://i0.hdslb.com/bfs/vip/icon_Certification_big_member_22_3x.png"
- },
- "pendant": {
- "pid": 0,
- "name": "",
- "image": "",
- "expire": 0,
- "image_enhance": "",
- "image_enhance_frame": ""
- },
- "rank": "10000",
- "sign": "",
- "level_info": {
- "current_level": 5
- }
- },
- "uid_type": 1,
- "recommend_info": {
- "is_attention": 0
- },
- "stype": 0,
- "r_type": 1,
- "inner_id": 0,
- "topic_board": "C",
- "topic_board_desc": "最新",
- "status": 1,
- "dynamic_id_str": "517443572332941328",
- "pre_dy_id_str": "517241610091321208",
- "orig_dy_id_str": "517241610091321208",
- "rid_str": "517443572335742626",
- "origin": {
- "uid": 326499679,
- "type": 2,
- "rid": 131403515,
- "acl": 1024,
- "view": 1951519,
- "repost": 16543,
- "comment": 1003,
- "like": 6950,
- "is_liked": 0,
- "dynamic_id": 517241610091321208,
- "timestamp": 1619268097,
- "user_profile": {
- "info": {
- "uid": 326499679,
- "uname": "哔哩哔哩漫画",
- "face": "https://i1.hdslb.com/bfs/face/2254162161a60b528cfec449f3450409a81ebc37.jpg"
- },
- "card": {
- "official_verify": {
- "type": 1,
- "desc": "哔哩哔哩漫画官方账号"
- }
- },
- "vip": {
- "vipType": 2,
- "vipDueDate": 1941033600000,
- "vipStatus": 1,
- "themeType": 0,
- "label": {
- "path": "",
- "text": "十年大会员",
- "label_theme": "ten_annual_vip",
- "text_color": "#FFFFFF",
- "bg_style": 1,
- "bg_color": "#FB7299",
- "border_color": ""
- },
- "avatar_subscript": 1,
- "nickname_color": "#FB7299",
- "role": 7,
- "avatar_subscript_url": "https://i0.hdslb.com/bfs/vip/icon_Certification_big_member_22_3x.png"
- },
- "pendant": {
- "pid": 0,
- "name": "",
- "image": "",
- "expire": 0,
- "image_enhance": "",
- "image_enhance_frame": ""
- },
- "rank": "10000",
- "sign": "↑ 【关注漫画姬】就送【漫读券5张】,当日或次日登录哔哩哔哩漫画APP即可领取,快来关注领券吧(°∀°)ノ ↑",
- "level_info": {
- "current_level": 6
- }
- },
- "uid_type": 1,
- "r_type": 1,
- "status": 1,
- "dynamic_id_str": "517241610091321208",
- "pre_dy_id_str": "0",
- "orig_dy_id_str": "0",
- "rid_str": "131403515"
- }
- },
- "card": "{ \"user\": { \"uid\": 1677019, \"uname\": \"逗妇卤\", \"face\": \"https:\\/\\/i1.hdslb.com\\/bfs\\/face\\/15a8f5d8c93f8f30bda71f192b92cfde2c76a1c7.jpg\" }, \"item\": { \"rp_id\": 517443572335742626, \"uid\": 1677019, \"content\": \"【关+转】抽1位小伙伴送【哔哩哔哩小电视兔子包】~\\n【#哔哩哔哩漫画# 作品推荐】大量西幻少女漫爆更来啦———\\n[干杯] 即日起,《重生成为公爵家的丑女》《暴君的监护人是反派魔女》《姐姐捡回了男主》等大量西幻少女精品漫画爆更,追漫更有樱花立牌\\/玩偶等福利好礼相送!\\n[干杯] 快来哔哩哔哩漫画追漫吧~\", \"orig_dy_id\": 517241610091321208, \"pre_dy_id\": 517241610091321208, \"timestamp\": 1619315120, \"reply\": 0, \"orig_type\": 2 }, \"origin\": \"{\\\"item\\\":{\\\"at_control\\\":\\\"[{\\\\\\\"type\\\\\\\":2,\\\\\\\"location\\\\\\\":0,\\\\\\\"length\\\\\\\":0,\\\\\\\"data\\\\\\\":\\\\\\\"5\\\\\\\"}]\\\",\\\"category\\\":\\\"daily\\\",\\\"description\\\":\\\"互动抽奖 【关+转】抽1位小伙伴送【哔哩哔哩小电视兔子包】~\\\\n【#哔哩哔哩漫画# 作品推荐】大量西幻少女漫爆更来啦———\\\\n[干杯] 即日起,《重生成为公爵家的丑女》《暴君的监护人是反派魔女》《姐姐捡回了男主》等大量西幻少女精品漫画爆更,追漫更有樱花立牌\\\\\\/玩偶等福利好礼相送!\\\\n[干杯] 快来哔哩哔哩漫画追漫吧~\\\",\\\"id\\\":131403515,\\\"is_fav\\\":0,\\\"pictures\\\":[{\\\"img_height\\\":1357,\\\"img_size\\\":1759.1650390625,\\\"img_src\\\":\\\"https:\\\\\\/\\\\\\/i0.hdslb.com\\\\\\/bfs\\\\\\/album\\\\\\/1ce565e7f36e0ae5a3809df21bb39aa2fe578a88.png\\\",\\\"img_tags\\\":null,\\\"img_width\\\":1080},{\\\"img_height\\\":1238,\\\"img_size\\\":832.51953125,\\\"img_src\\\":\\\"https:\\\\\\/\\\\\\/i0.hdslb.com\\\\\\/bfs\\\\\\/album\\\\\\/6df0150c77a7f42a5d31cce8bb006105a660dad9.png\\\",\\\"img_tags\\\":null,\\\"img_width\\\":1080},{\\\"img_height\\\":2193,\\\"img_size\\\":3424.060546875,\\\"img_src\\\":\\\"https:\\\\\\/\\\\\\/i0.hdslb.com\\\\\\/bfs\\\\\\/album\\\\\\/adce81c59436184b56d84e5394583d2ab491b2e6.png\\\",\\\"img_tags\\\":null,\\\"img_width\\\":1080},{\\\"img_height\\\":800,\\\"img_size\\\":166.1552734375,\\\"img_src\\\":\\\"https:\\\\\\/\\\\\\/i0.hdslb.com\\\\\\/bfs\\\\\\/album\\\\\\/9c4e8d6fc04d5a1f3df225d5967fb65c7a3f5f09.jpg\\\",\\\"img_tags\\\":null,\\\"img_width\\\":800}],\\\"pictures_count\\\":4,\\\"reply\\\":1003,\\\"role\\\":[],\\\"settings\\\":{\\\"copy_forbidden\\\":\\\"0\\\"},\\\"source\\\":[],\\\"title\\\":\\\"\\\",\\\"upload_time\\\":1619268097},\\\"user\\\":{\\\"head_url\\\":\\\"https:\\\\\\/\\\\\\/i1.hdslb.com\\\\\\/bfs\\\\\\/face\\\\\\/2254162161a60b528cfec449f3450409a81ebc37.jpg\\\",\\\"name\\\":\\\"哔哩哔哩漫画\\\",\\\"uid\\\":326499679,\\\"vip\\\":{\\\"avatar_subscript\\\":1,\\\"due_date\\\":1941033600000,\\\"label\\\":{\\\"label_theme\\\":\\\"ten_annual_vip\\\",\\\"path\\\":\\\"\\\",\\\"text\\\":\\\"十年大会员\\\"},\\\"nickname_color\\\":\\\"#FB7299\\\",\\\"status\\\":1,\\\"theme_type\\\":0,\\\"type\\\":2,\\\"vip_pay_type\\\":0}}}\", \"origin_extension\": { \"lott\": \"{\\\"callbackId\\\":10,\\\"lottery_id\\\":61382,\\\"lottery_time\\\":1620504000,\\\"title\\\":\\\"互动抽奖\\\"}\" }, \"origin_extend_json\": \"{\\\"ctrl\\\":[{\\\"data\\\":\\\"5\\\",\\\"length\\\":0,\\\"location\\\":0,\\\"type\\\":2}],\\\"from\\\":{\\\"emoji_type\\\":1,\\\"from\\\":\\\"\\\",\\\"up_close_comment\\\":0,\\\"verify\\\":{\\\"asw\\\":{\\\"fl\\\":15,\\\"nv\\\":1},\\\"cc\\\":{\\\"vf\\\":1},\\\"sw\\\":{\\\"fl\\\":15,\\\"nv\\\":1}}},\\\"like_icon\\\":{\\\"action\\\":\\\"\\\",\\\"action_url\\\":\\\"\\\",\\\"end\\\":\\\"\\\",\\\"end_url\\\":\\\"\\\",\\\"start\\\":\\\"\\\",\\\"start_url\\\":\\\"\\\"},\\\"lott\\\":{\\\"callbackId\\\":10,\\\"lottery_id\\\":61382,\\\"lottery_time\\\":1620504000,\\\"title\\\":\\\"互动抽奖\\\"},\\\"topic\\\":{\\\"is_attach_topic\\\":1}}\", \"origin_user\": { \"info\": { \"uid\": 326499679, \"uname\": \"哔哩哔哩漫画\", \"face\": \"https:\\/\\/i1.hdslb.com\\/bfs\\/face\\/2254162161a60b528cfec449f3450409a81ebc37.jpg\" }, \"card\": { \"official_verify\": { \"type\": 1, \"desc\": \"哔哩哔哩漫画官方账号\" } }, \"vip\": { \"vipType\": 2, \"vipDueDate\": 1941033600000, \"vipStatus\": 1, \"themeType\": 0, \"label\": { \"path\": \"\", \"text\": \"十年大会员\", \"label_theme\": \"ten_annual_vip\", \"text_color\": \"#FFFFFF\", \"bg_style\": 1, \"bg_color\": \"#FB7299\", \"border_color\": \"\" }, \"avatar_subscript\": 1, \"nickname_color\": \"#FB7299\", \"role\": 7, \"avatar_subscript_url\": \"https:\\/\\/i0.hdslb.com\\/bfs\\/vip\\/icon_Certification_big_member_22_3x.png\" }, \"pendant\": { \"pid\": 0, \"name\": \"\", \"image\": \"\", \"expire\": 0, \"image_enhance\": \"\", \"image_enhance_frame\": \"\" }, \"rank\": \"10000\", \"sign\": \"↑ 【关注漫画姬】就送【漫读券5张】,当日或次日登录哔哩哔哩漫画APP即可领取,快来关注领券吧(°∀°)ノ ↑\", \"level_info\": { \"current_level\": 6 } } }",
- "extend_json": "{\"from\":{\"emoji_type\":1,\"up_close_comment\":0,\"verify\":{\"asw\":{\"fl\":15,\"nv\":1},\"sw\":{\"fl\":15,\"nv\":1}}},\"like_icon\":{\"action\":\"\",\"action_url\":\"\",\"end\":\"\",\"end_url\":\"\",\"start\":\"\",\"start_url\":\"\"},\"topic\":{\"is_attach_topic\":1}}",
- "display": {
- "topic_info": {
- "topic_details": [
- {
- "topic_id": 7539944,
- "topic_name": "哔哩哔哩漫画",
- "is_activity": 0,
- "topic_link": ""
- }
- ]
- },
- "origin": {
- "topic_info": {
- "topic_details": [
- {
- "topic_id": 7539944,
- "topic_name": "哔哩哔哩漫画",
- "is_activity": 0,
- "topic_link": ""
- }
- ]
- },
- "emoji_info": {
- "emoji_details": [
- {
- "emoji_name": "[干杯]",
- "id": 1949,
- "package_id": 1,
- "state": 0,
- "type": 1,
- "attr": 0,
- "text": "[干杯]",
- "url": "https://i0.hdslb.com/bfs/emote/8da12d5f55a2c7e9778dcc05b40571979fe208e6.png",
- "meta": {
- "size": 1
- },
- "mtime": 1597738918
- }
- ]
- },
- "relation": {
- "status": 1,
- "is_follow": 0,
- "is_followed": 0
- },
- "show_tip": {
- "del_tip": "要删除动态吗?"
- }
- },
- "emoji_info": {
- "emoji_details": [
- {
- "emoji_name": "[干杯]",
- "id": 1949,
- "package_id": 1,
- "state": 0,
- "type": 1,
- "attr": 0,
- "text": "[干杯]",
- "url": "https://i0.hdslb.com/bfs/emote/8da12d5f55a2c7e9778dcc05b40571979fe208e6.png",
- "meta": {
- "size": 1
- },
- "mtime": 1597738918
- }
- ]
- },
- "relation": {
- "status": 1,
- "is_follow": 0,
- "is_followed": 0
- },
- "up_act_button": {
- "report_title": "举报",
- "founder_report_title": "举报(发起人)",
- "top_title": "置顶",
- "top_confirm_title": "确定将此动态置顶吗",
- "top_cancel_title": "确定将此动态取消置顶吗"
- },
- "show_tip": {
- "del_tip": "要删除动态吗?"
- }
- }
- },
- {
- "desc": {
- "uid": 324540735,
- "type": 8,
- "rid": 672631542,
- "acl": 0,
- "view": 29,
- "repost": 0,
- "like": 1,
- "is_liked": 0,
- "dynamic_id": 517311278755293659,
- "timestamp": 1619284318,
- "pre_dy_id": 0,
- "orig_dy_id": 0,
- "orig_type": 0,
- "user_profile": {
- "info": {
- "uid": 324540735,
- "uname": "文雯兄",
- "face": "https://i0.hdslb.com/bfs/face/8000d5ad4652f8bf9074781a108eb54243a06889.jpg"
- },
- "card": {
- "official_verify": {
- "type": -1,
- "desc": ""
- }
- },
- "vip": {
- "vipType": 1,
- "vipDueDate": 1613491200000,
- "vipStatus": 0,
- "themeType": 0,
- "label": {
- "path": "",
- "text": "",
- "label_theme": "",
- "text_color": "",
- "bg_style": 0,
- "bg_color": "",
- "border_color": ""
- },
- "avatar_subscript": 0,
- "nickname_color": "",
- "role": 0,
- "avatar_subscript_url": ""
- },
- "pendant": {
- "pid": 0,
- "name": "",
- "image": "",
- "expire": 0,
- "image_enhance": "",
- "image_enhance_frame": ""
- },
- "rank": "10000",
- "sign": "游说万乘苦不早,著鞭跨马涉远道。",
- "level_info": {
- "current_level": 4
- }
- },
- "uid_type": 1,
- "recommend_info": {
- "is_attention": 0
- },
- "stype": 0,
- "r_type": 1,
- "inner_id": 0,
- "topic_board": "C",
- "topic_board_desc": "最新",
- "status": 1,
- "dynamic_id_str": "517311278755293659",
- "pre_dy_id_str": "0",
- "orig_dy_id_str": "0",
- "rid_str": "672631542",
- "bvid": "BV1dU4y1h78A"
- },
- "card": "{\"aid\":672631542,\"attribute\":0,\"cid\":328783995,\"copyright\":1,\"ctime\":1619284318,\"desc\":\"本漫画由哔哩哔哩漫画出品,本人配音,谢谢大家的支持。\",\"dimension\":{\"height\":1920,\"rotate\":0,\"width\":864},\"duration\":191,\"dynamic\":\"\",\"item\":{\"at_control\":\"\"},\"jump_url\":\"bilibili:\\/\\/video\\/672631542\\/?page=1&player_preload=null&player_width=864&player_height=1920&player_rotate=0\",\"mission_id\":18978,\"owner\":{\"face\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/face\\/8000d5ad4652f8bf9074781a108eb54243a06889.jpg\",\"mid\":324540735,\"name\":\"文雯兄\"},\"pic\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/archive\\/b2d2dc3a909696ea1db3fbfeeb7ab42dc37ced87.jpg\",\"player_info\":null,\"pubdate\":1619284318,\"rights\":{\"autoplay\":1,\"bp\":0,\"download\":0,\"elec\":0,\"hd5\":0,\"is_cooperation\":0,\"movie\":0,\"no_background\":0,\"no_reprint\":1,\"pay\":0,\"ugc_pay\":0,\"ugc_pay_preview\":0},\"short_link\":\"https:\\/\\/b23.tv\\/BV1dU4y1h78A\",\"short_link_v2\":\"https:\\/\\/b23.tv\\/BV1dU4y1h78A\",\"stat\":{\"aid\":672631542,\"coin\":0,\"danmaku\":0,\"dislike\":0,\"favorite\":0,\"his_rank\":0,\"like\":1,\"now_rank\":0,\"reply\":0,\"share\":0,\"view\":10},\"state\":0,\"tid\":138,\"title\":\"怎么办,我穿越成最弱小野怪了(三十九)【关于我不当人的这件事】\",\"tname\":\"搞笑\",\"up_from_v2\":8,\"videos\":1}",
- "extend_json": "{\"\":{\"ogv\":{\"ogv_id\":0}},\"dispute\":{\"content\":\"\"},\"from\":{\"from\":\"\"},\"like_icon\":{\"action\":\"\",\"action_url\":\"\",\"end\":\"\",\"end_url\":\"\",\"start\":\"\",\"start_url\":\"\"},\"topic\":{\"is_attach_topic\":1}}",
- "display": {
- "topic_info": {
- "topic_details": [
- {
- "topic_id": 19254944,
- "topic_name": "火力配音王-配音剧场",
- "is_activity": 1,
- "topic_link": "https://www.bilibili.com/blackboard/dynamic/108663"
- },
- {
- "topic_id": 7539944,
- "topic_name": "哔哩哔哩漫画",
- "is_activity": 0,
- "topic_link": ""
- },
- {
- "topic_id": 3844,
- "topic_name": "穿越",
- "is_activity": 0,
- "topic_link": ""
- },
- {
- "topic_id": 1833,
- "topic_name": "搞笑",
- "is_activity": 0,
- "topic_link": ""
- },
- {
- "topic_id": 1217,
- "topic_name": "自制",
- "is_activity": 0,
- "topic_link": ""
- },
- {
- "topic_id": 1184,
- "topic_name": "漫画",
- "is_activity": 0,
- "topic_link": ""
- }
- ]
- },
- "usr_action_txt": "投稿了视频",
- "relation": {
- "status": 1,
- "is_follow": 0,
- "is_followed": 0
- },
- "up_act_button": {
- "report_title": "举报",
- "founder_report_title": "举报(发起人)",
- "top_title": "置顶",
- "top_confirm_title": "确定将此动态置顶吗",
- "top_cancel_title": "确定将此动态取消置顶吗"
- },
- "show_tip": {
- "del_tip": "要删除动态吗?"
- },
- "cover_play_icon_url": "https://i0.hdslb.com/bfs/album/2269afa7897830b397797ebe5f032b899b405c67.png"
- }
- },
- {
- "desc": {
- "uid": 326499679,
- "type": 8,
- "rid": 972719486,
- "acl": 0,
- "view": 2745390,
- "repost": 4,
- "like": 5879,
- "is_liked": 0,
- "dynamic_id": 517261895213635612,
- "timestamp": 1619272820,
- "pre_dy_id": 0,
- "orig_dy_id": 0,
- "orig_type": 0,
- "user_profile": {
- "info": {
- "uid": 326499679,
- "uname": "哔哩哔哩漫画",
- "face": "https://i1.hdslb.com/bfs/face/2254162161a60b528cfec449f3450409a81ebc37.jpg"
- },
- "card": {
- "official_verify": {
- "type": 1,
- "desc": "哔哩哔哩漫画官方账号"
- }
- },
- "vip": {
- "vipType": 2,
- "vipDueDate": 1941033600000,
- "vipStatus": 1,
- "themeType": 0,
- "label": {
- "path": "",
- "text": "十年大会员",
- "label_theme": "ten_annual_vip",
- "text_color": "#FFFFFF",-
- "orig_dy_id_str": "0",
- "rid_str": "972719486",
- "bvid": "BV1Gp4y1b7ZB"
- },
- "card": "{\"aid\":972719486,\"attribute\":0,\"cid\":328058863,\"copyright\":1,\"ctime\":1619272820,\"desc\":\"#反派初始化# #Vomic#\\n圈圈叉叉,桃树开花,花瓣落下,生出新芽。\\n@哔哩哔哩漫画 出品、@BV社 策划、 @Antler_墨柚 原作、@叉叉叉叉叉口叉 主笔、@补天研究所 制作、@音熊联萌 录制、Vomic《反派初始化》第二集正式上线!\\n哔哩哔哩漫画独家播放,每周六更新!\\n还有小剧场,花絮不定时掉落、敬请期待~\\n\\n出品:@哔哩哔哩漫画\\n策划:@BV社\\n制作:@补天研究所\\n录制:@音熊联萌\",\"dimension\":{\"height\":1080,\"rotate\":0,\"width\":1920},\"duration\":62,\"dynamic\":\"#哔哩哔哩漫画#独家,#Vomic#2021年4月3日起每周六更新!更多精彩,小剧场,花絮,尽在哔哩哔哩漫画APP\",\"item\":{\"at_control\":\"\"},\"jump_url\":\"bilibili:\\/\\/video\\/972719486\\/?page=1&player_preload=null&player_width=1920&player_height=1080&player_rotate=0\",\"owner\":{\"face\":\"https:\\/\\/i1.hdslb.com\\/bfs\\/face\\/2254162161a60b528cfec449f3450409a81ebc37.jpg\",\"mid\":326499679,\"name\":\"哔哩哔哩漫画\"},\"pic\":\"https:\\/\\/i2.hdslb.com\\/bfs\\/archive\\/3c8a720b809153f95b1134acb991011eb79dc80b.jpg\",\"player_info\":null,\"pubdate\":1619272819,\"rights\":{\"autoplay\":1,\"bp\":0,\"download\":0,\"elec\":0,\"hd5\":1,\"is_cooperation\":0,\"movie\":0,\"no_background\":0,\"no_reprint\":1,\"pay\":0,\"ugc_pay\":0,\"ugc_pay_preview\":0},\"short_link\":\"https:\\/\\/b23.tv\\/BV1Gp4y1b7ZB\",\"short_link_v2\":\"https:\\/\\/b23.tv\\/BV1Gp4y1b7ZB\",\"stat\":{\"aid\":972719486,\"coin\":115,\"danmaku\":4,\"dislike\":0,\"favorite\":43,\"his_rank\":0,\"like\":5879,\"now_rank\":0,\"reply\":36,\"share\":145,\"view\":31840},\"state\":0,\"tid\":27,\"title\":\"【Vomic】滴——《反派初始化》第二集精彩片段!\",\"tname\":\"综合\",\"videos\":1}",
- "extend_json": "{\"\":{\"ogv\":{\"ogv_id\":0}},\"dispute\":{\"content\":\"\"},\"from\":{\"from\":\"\",\"verify\":{}},\"like_icon\":{\"action\":\"\",\"action_url\":\"\",\"end\":\"\",\"end_url\":\"\",\"start\":\"\",\"start_url\":\"\"},\"topic\":{\"is_attach_topic\":1}}",
- "display": {
- "topic_info": {
- "topic_details": [
- {
- "topic_id": 7539944,
- "topic_name": "哔哩哔哩漫画",
- "is_activity": 0,
- "topic_link": ""
- },
- {
- "topic_id": 3208432,
- "topic_name": "Vomic",
- "is_activity": 1,
- "topic_link": "https://www.bilibili.com/blackboard/dynamic/106426"
- },
- {
- "topic_id": 37542,
- "topic_name": "VOMIC",
- "is_activity": 1,
- "topic_link": "https://www.bilibili.com/blackboard/dynamic/106283"
- },
- {
- "topic_id": 8972604,
- "topic_name": "vomic",
- "is_activity": 1,
- "topic_link": "https://www.bilibili.com/blackboard/dynamic/106766"
- },
- {
- "topic_id": 210754,
- "topic_name": "夏磊",
- "is_activity": 0,
- "topic_link": ""
- },
- {
- "topic_id": 10526139,
- "topic_name": "反派初始化",
- "is_activity": 0,
- "topic_link": ""
- },
- {
- "topic_id": 1322133,
- "topic_name": "赵路",
- "is_activity": 0,
- "topic_link": ""
- },
- {
- "topic_id": 423864,
- "topic_name": "音熊联萌",
- "is_activity": 1,
- "topic_link": "https://www.bilibili.com/blackboard/dynamic/17389"
- }
- ]
- },
- "usr_action_txt": "投稿了视频",
- "relation": {
- "status": 1,
- "is_follow": 0,
- "is_followed": 0
- },
- "up_act_button": {
- "report_title": "举报",
- "founder_report_title": "举报(发起人)",
- "top_title": "置顶",
- "top_confirm_title": "确定将此动态置顶吗",
- "top_cancel_title": "确定将此动态取消置顶吗"
- },
- "show_tip": {
- "del_tip": "要删除动态吗?"
- },
- "cover_play_icon_url": "https://i0.hdslb.com/bfs/album/2269afa7897830b397797ebe5f032b899b405c67.png"
- }
- },
- {
- "desc": {
- "uid": 255495142,
- "type": 1,
- "rid": 517243774753706830,
- "acl": 0,
- "view": 8,
- "repost": 0,
- "comment": 0,
- "like": 0,
- "is_liked": 0,
- "dynamic_id": 517243774755903256,
- "timestamp": 1619268601,
- "pre_dy_id": 517241610091321208,
- "orig_dy_id": 517241610091321208,
- "orig_type": 2,
- "user_profile": {
- "info": {
- "uid": 255495142,
- "uname": "坐怀不乱登徒子",
- "face": "https://i1.hdslb.com/bfs/face/fa18d118f6c58da704400909743fb895c4c47627.jpg"
- },
- "card": {
- "official_verify": {
- "type": -1,
- "desc": ""
- }
- },
- "vip": {
- "vipType": 2,
- "vipDueDate": 1626451200000,
- "vipStatus": 1,
- "themeType": 0,
- "label": {
- "path": "",
- "text": "年度大会员",
- "label_theme": "annual_vip",
- "text_color": "#FFFFFF",
- "bg_style": 1,
- "bg_color": "#FB7299",
- "border_color": ""
- },
- "avatar_subscript": 1,
- "nickname_color": "#FB7299",
- "role": 3,
- "avatar_subscript_url": "https://i0.hdslb.com/bfs/vip/icon_Certification_big_member_22_3x.png"
- },
- "pendant": {
- "pid": 204,
- "name": "至高守护",
- "image": "https://i1.hdslb.com/bfs/face/88162662c23c2768c9e9e5c25017375685e83798.png",
- "expire": 0,
- "image_enhance": "https://i1.hdslb.com/bfs/face/88162662c23c2768c9e9e5c25017375685e83798.png",
- "image_enhance_frame": ""
- },
- "rank": "10000",
- "sign": "",
- "level_info": {
- "current_level": 5
- }
- },
- "uid_type": 1,
- "recommend_info": {
- "is_attention": 0
- },
- "stype": 0,
- "r_type": 1,
- "inner_id": 0,
- "topic_board": "C",
- "topic_board_desc": "最新",
- "status": 1,
- "dynamic_id_str": "517243774755903256",
- "pre_dy_id_str": "517241610091321208",
- "orig_dy_id_str": "517241610091321208",
- "rid_str": "517243774753706830",
- "origin": {
- "uid": 326499679,
- "type": 2,
- "rid": 131403515,
- "acl": 1024,
- "view": 1951519,
- "repost": 16543,
- "comment": 1003,
- "like": 6950,
- "is_liked": 0,
- "dynamic_id": 517241610091321208,
- "timestamp": 1619268097,
- "user_profile": {
- "info": {
- "uid": 326499679,
- "uname": "哔哩哔哩漫画",
- "face": "https://i1.hdslb.com/bfs/face/2254162161a60b528cfec449f3450409a81ebc37.jpg"
- },
- "card": {
- "official_verify": {
- "type": 1,
- "desc": "哔哩哔哩漫画官方账号"
- }
- },
- "vip": {
- "vipType": 2,
- "vipDueDate": 1941033600000,
- "vipStatus": 1,
- "themeType": 0,
- "label": {
- "path": "",
- "text": "十年大会员",
- "label_theme": "ten_annual_vip",
- "text_color": "#FFFFFF",
- "bg_style": 1,
- "bg_color": "#FB7299",
- "border_color": ""
- },
- "avatar_subscript": 1,
- "nickname_color": "#FB7299",
- "role": 7,
- "avatar_subscript_url": "https://i0.hdslb.com/bfs/vip/icon_Certification_big_member_22_3x.png"
- },
- "pendant": {
- "pid": 0,
- "name": "",
- "image": "",
- "expire": 0,
- "image_enhance": "",
- "image_enhance_frame": ""
- },
- "rank": "10000",
- "sign": "↑ 【关注漫画姬】就送【漫读券5张】,当日或次日登录哔哩哔哩漫画APP即可领取,快来关注领券吧(°∀°)ノ ↑",
- "level_info": {
- "current_level": 6
- }
- },
- "uid_type": 1,
- "r_type": 1,
- "status": 1,
- "dynamic_id_str": "517241610091321208",
- "pre_dy_id_str": "0",
- "orig_dy_id_str": "0",
- "rid_str": "131403515"
- }
- },
- "card": "{ \"user\": { \"uid\": 255495142, \"uname\": \"坐怀不乱登徒子\", \"face\": \"https:\\/\\/i1.hdslb.com\\/bfs\\/face\\/fa18d118f6c58da704400909743fb895c4c47627.jpg\" }, \"item\": { \"rp_id\": 517243774753706830, \"uid\": 255495142, \"content\": \"冲冲冲#哔哩哔哩漫画#\", \"orig_dy_id\": 517241610091321208, \"pre_dy_id\": 517241610091321208, \"timestamp\": 1619268601, \"reply\": 0, \"orig_type\": 2 }, \"origin\": \"{\\\"item\\\":{\\\"at_control\\\":\\\"[{\\\\\\\"type\\\\\\\":2,\\\\\\\"location\\\\\\\":0,\\\\\\\"length\\\\\\\":0,\\\\\\\"data\\\\\\\":\\\\\\\"5\\\\\\\"}]\\\",\\\"category\\\":\\\"daily\\\",\\\"description\\\":\\\"互动抽奖 【关+转】抽1位小伙伴送【哔哩哔哩小电视兔子包】~\\\\n【#哔哩哔哩漫画# 作品推荐】大量西幻少女漫爆更来啦———\\\\n[干杯] 即日起,《重生成为公爵家的丑女》《暴君的监护人是反派魔女》《姐姐捡回了男主》等大量西幻少女精品漫画爆更,追漫更有樱花立牌\\\\\\/玩偶等福利好礼相送!\\\\n[干杯] 快来哔哩哔哩漫画追漫吧~\\\",\\\"id\\\":131403515,\\\"is_fav\\\":0,\\\"pictures\\\":[{\\\"img_height\\\":1357,\\\"img_size\\\":1759.1650390625,\\\"img_src\\\":\\\"https:\\\\\\/\\\\\\/i0.hdslb.com\\\\\\/bfs\\\\\\/album\\\\\\/1ce565e7f36e0ae5a3809df21bb39aa2fe578a88.png\\\",\\\"img_tags\\\":null,\\\"img_width\\\":1080},{\\\"img_height\\\":1238,\\\"img_size\\\":832.51953125,\\\"img_src\\\":\\\"https:\\\\\\/\\\\\\/i0.hdslb.com\\\\\\/bfs\\\\\\/album\\\\\\/6df0150c77a7f42a5d31cce8bb006105a660dad9.png\\\",\\\"img_tags\\\":null,\\\"img_width\\\":1080},{\\\"img_height\\\":2193,\\\"img_size\\\":3424.060546875,\\\"img_src\\\":\\\"https:\\\\\\/\\\\\\/i0.hdslb.com\\\\\\/bfs\\\\\\/album\\\\\\/adce81c59436184b56d84e5394583d2ab491b2e6.png\\\",\\\"img_tags\\\":null,\\\"img_width\\\":1080},{\\\"img_height\\\":800,\\\"img_size\\\":166.1552734375,\\\"img_src\\\":\\\"https:\\\\\\/\\\\\\/i0.hdslb.com\\\\\\/bfs\\\\\\/album\\\\\\/9c4e8d6fc04d5a1f3df225d5967fb65c7a3f5f09.jpg\\\",\\\"img_tags\\\":null,\\\"img_width\\\":800}],\\\"pictures_count\\\":4,\\\"reply\\\":1003,\\\"role\\\":[],\\\"settings\\\":{\\\"copy_forbidden\\\":\\\"0\\\"},\\\"source\\\":[],\\\"title\\\":\\\"\\\",\\\"upload_time\\\":1619268097},\\\"user\\\":{\\\"head_url\\\":\\\"https:\\\\\\/\\\\\\/i1.hdslb.com\\\\\\/bfs\\\\\\/face\\\\\\/2254162161a60b528cfec449f3450409a81ebc37.jpg\\\",\\\"name\\\":\\\"哔哩哔哩漫画\\\",\\\"uid\\\":326499679,\\\"vip\\\":{\\\"avatar_subscript\\\":1,\\\"due_date\\\":1941033600000,\\\"label\\\":{\\\"label_theme\\\":\\\"ten_annual_vip\\\",\\\"path\\\":\\\"\\\",\\\"text\\\":\\\"十年大会员\\\"},\\\"nickname_color\\\":\\\"#FB7299\\\",\\\"status\\\":1,\\\"theme_type\\\":0,\\\"type\\\":2,\\\"vip_pay_type\\\":0}}}\", \"origin_extension\": { \"lott\": \"{\\\"callbackId\\\":10,\\\"lottery_id\\\":61382,\\\"lottery_time\\\":1620504000,\\\"title\\\":\\\"互动抽奖\\\"}\" }, \"origin_extend_json\": \"{\\\"ctrl\\\":[{\\\"data\\\":\\\"5\\\",\\\"length\\\":0,\\\"location\\\":0,\\\"type\\\":2}],\\\"from\\\":{\\\"emoji_type\\\":1,\\\"from\\\":\\\"\\\",\\\"up_close_comment\\\":0,\\\"verify\\\":{\\\"asw\\\":{\\\"fl\\\":15,\\\"nv\\\":1},\\\"cc\\\":{\\\"vf\\\":1},\\\"sw\\\":{\\\"fl\\\":15,\\\"nv\\\":1}}},\\\"like_icon\\\":{\\\"action\\\":\\\"\\\",\\\"action_url\\\":\\\"\\\",\\\"end\\\":\\\"\\\",\\\"end_url\\\":\\\"\\\",\\\"start\\\":\\\"\\\",\\\"start_url\\\":\\\"\\\"},\\\"lott\\\":{\\\"callbackId\\\":10,\\\"lottery_id\\\":61382,\\\"lottery_time\\\":1620504000,\\\"title\\\":\\\"互动抽奖\\\"},\\\"topic\\\":{\\\"is_attach_topic\\\":1}}\", \"origin_user\": { \"info\": { \"uid\": 326499679, \"uname\": \"哔哩哔哩漫画\", \"face\": \"https:\\/\\/i1.hdslb.com\\/bfs\\/face\\/2254162161a60b528cfec449f3450409a81ebc37.jpg\" }, \"card\": { \"official_verify\": { \"type\": 1, \"desc\": \"哔哩哔哩漫画官方账号\" } }, \"vip\": { \"vipType\": 2, \"vipDueDate\": 1941033600000, \"vipStatus\": 1, \"themeType\": 0, \"label\": { \"path\": \"\", \"text\": \"十年大会员\", \"label_theme\": \"ten_annual_vip\", \"text_color\": \"#FFFFFF\", \"bg_style\": 1, \"bg_color\": \"#FB7299\", \"border_color\": \"\" }, \"avatar_subscript\": 1, \"nickname_color\": \"#FB7299\", \"role\": 7, \"avatar_subscript_url\": \"https:\\/\\/i0.hdslb.com\\/bfs\\/vip\\/icon_Certification_big_member_22_3x.png\" }, \"pendant\": { \"pid\": 0, \"name\": \"\", \"image\": \"\", \"expire\": 0, \"image_enhance\": \"\", \"image_enhance_frame\": \"\" }, \"rank\": \"10000\", \"sign\": \"↑ 【关注漫画姬】就送【漫读券5张】,当日或次日登录哔哩哔哩漫画APP即可领取,快来关注领券吧(°∀°)ノ ↑\", \"level_info\": { \"current_level\": 6 } } }",
- "extend_json": "{\"from\":{\"emoji_type\":1,\"from\":\"create.comment\",\"up_close_comment\":0},\"like_icon\":{\"action\":\"\",\"action_url\":\"\",\"end\":\"\",\"end_url\":\"\",\"start\":\"\",\"start_url\":\"\"},\"topic\":{\"is_attach_topic\":1}}",
- "display": {
- "topic_info": {
- "topic_details": [
- {
- "topic_id": 7539944,
- "topic_name": "哔哩哔哩漫画",
- "is_activity": 0,
- "topic_link": ""
- }
- ]
- },
- "origin": {
- "topic_info": {
- "topic_details": [
- {
- "topic_id": 7539944,
- "topic_name": "哔哩哔哩漫画",
- "is_activity": 0,
- "topic_link": ""
- }
- ]
- },
- "emoji_info": {
- "emoji_details": [
- {
- "emoji_name": "[干杯]",
- "id": 1949,
- "package_id": 1,
- "state": 0,
- "type": 1,
- "attr": 0,
- "text": "[干杯]",
- "url": "https://i0.hdslb.com/bfs/emote/8da12d5f55a2c7e9778dcc05b40571979fe208e6.png",
- "meta": {
- "size": 1
- },
- "mtime": 1597738918
- }
- ]
- },
- "relation": {
- "status": 1,
- "is_follow": 0,
- "is_followed": 0
- },
- "show_tip": {
- "del_tip": "要删除动态吗?"
- }
- },
- "relation": {
- "status": 1,
- "is_follow": 0,
- "is_followed": 0
- },
- "up_act_button": {
- "report_title": "举报",
- "founder_report_title": "举报(发起人)",
- "top_title": "置顶",
- "top_confirm_title": "确定将此动态置顶吗",
- "top_cancel_title": "确定将此动态取消置顶吗"
- },
- "show_tip": {
- "del_tip": "要删除动态吗?"
- }
- }
- },
- {
- "desc": {
- "uid": 335270851,
- "type": 1,
- "rid": 517243658786443535,
- "acl": 0,
- "view": 24,
- "repost": 0,
- "comment": 0,
- "like": 1,
- "is_liked": 0,
- "dynamic_id": 517243658790736702,
- "timestamp": 1619268574,
- "pre_dy_id": 517241610091321208,
- "orig_dy_id": 517241610091321208,
- "orig_type": 2,
- "user_profile": {
- "info": {
- "uid": 335270851,
- "uname": "符号门",
- "face": "https://i1.hdslb.com/bfs/face/67371311c9e047543a70c1d41e7a03c3854f2981.jpg"
- },
- "card": {
- "official_verify": {
- "type": -1,
- "desc": ""
- }
- },
- "vip": {
- "vipType": 2,
- "vipDueDate": 1647014400000,
- "vipStatus": 1,
- "themeType": 0,
- "label": {
- "path": "",
- "text": "年度大会员",
- "label_theme": "annual_vip",
- "text_color": "#FFFFFF",
- "bg_style": 1,
- "bg_color": "#FB7299",
- "border_color": ""
- },
- "avatar_subscript": 1,
- "nickname_color": "#FB7299",
- "role": 3,
- "avatar_subscript_url": "https://i0.hdslb.com/bfs/vip/icon_Certification_big_member_22_3x.png"
- },
- "pendant": {
- "pid": 0,
- "name": "",
- "image": "",
- "expire": 0,
- "image_enhance": "",
- "image_enhance_frame": ""
- },
- "rank": "10000",
- "sign": "",
- "level_info": {
- "current_level": 4
- }
- },
- "uid_type": 1,
- "recommend_info": {
- "is_attention": 0
- },
- "stype": 0,
- "r_type": 1,
- "inner_id": 0,
- "topic_board": "C",
- "topic_board_desc": "最新",
- "status": 1,
- "dynamic_id_str": "517243658790736702",
- "pre_dy_id_str": "517241610091321208",
- "orig_dy_id_str": "517241610091321208",
- "rid_str": "517243658786443535",
- "origin": {
- "uid": 326499679,
- "type": 2,
- "rid": 131403515,
- "acl": 1024,
- "view": 1951519,
- "repost": 16543,
- "comment": 1003,
- "like": 6950,
- "is_liked": 0,
- "dynamic_id": 517241610091321208,
- "timestamp": 1619268097,
- "user_profile": {
- "info": {
- "uid": 326499679,
- "uname": "哔哩哔哩漫画",
- "face": "https://i1.hdslb.com/bfs/face/2254162161a60b528cfec449f3450409a81ebc37.jpg"
- },
- "card": {
- "official_verify": {
- "type": 1,
- "desc": "哔哩哔哩漫画官方账号"
- }
- },
- "vip": {
- "vipType": 2,
- "vipDueDate": 1941033600000,
- "vipStatus": 1,
- "themeType": 0,
- "label": {
- "path": "",
- "text": "十年大会员",
- "label_theme": "ten_annual_vip",
- "text_color": "#FFFFFF",
- "bg_style": 1,
- "bg_color": "#FB7299",
- "border_color": ""
- },
- "avatar_subscript": 1,
- "nickname_color": "#FB7299",
- "role": 7,
- "avatar_subscript_url": "https://i0.hdslb.com/bfs/vip/icon_Certification_big_member_22_3x.png"
- },
- "pendant": {
- "pid": 0,
- "name": "",
- "image": "",
- "expire": 0,
- "image_enhance": "",
- "image_enhance_frame": ""
- },
- "rank": "10000",
- "sign": "↑ 【关注漫画姬】就送【漫读券5张】,当日或次日登录哔哩哔哩漫画APP即可领取,快来关注领券吧(°∀°)ノ ↑",
- "level_info": {
- "current_level": 6
- }
- },
- "uid_type": 1,
- "r_type": 1,
- "status": 1,
- "dynamic_id_str": "517241610091321208",
- "pre_dy_id_str": "0",
- "orig_dy_id_str": "0",
- "rid_str": "131403515"
- }
- },
- "card": "{ \"user\": { \"uid\": 335270851, \"uname\": \"符号门\", \"face\": \"https:\\/\\/i1.hdslb.com\\/bfs\\/face\\/67371311c9e047543a70c1d41e7a03c3854f2981.jpg\" }, \"item\": { \"rp_id\": 517243658786443535, \"uid\": 335270851, \"content\": \"#哔哩哔哩漫画#[打call][打call][打call]\", \"orig_dy_id\": 517241610091321208, \"pre_dy_id\": 517241610091321208, \"timestamp\": 1619268574, \"reply\": 0, \"orig_type\": 2 }, \"origin\": \"{\\\"item\\\":{\\\"at_control\\\":\\\"[{\\\\\\\"type\\\\\\\":2,\\\\\\\"location\\\\\\\":0,\\\\\\\"length\\\\\\\":0,\\\\\\\"data\\\\\\\":\\\\\\\"5\\\\\\\"}]\\\",\\\"category\\\":\\\"daily\\\",\\\"description\\\":\\\"互动抽奖 【关+转】抽1位小伙伴送【哔哩哔哩小电视兔子包】~\\\\n【#哔哩哔哩漫画# 作品推荐】大量西幻少女漫爆更来啦———\\\\n[干杯] 即日起,《重生成为公爵家的丑女》《暴君的监护人是反派魔女》《姐姐捡回了男主》等大量西幻少女精品漫画爆更,追漫更有樱花立牌\\\\\\/玩偶等福利好礼相送!\\\\n[干杯] 快来哔哩哔哩漫画追漫吧~\\\",\\\"id\\\":131403515,\\\"is_fav\\\":0,\\\"pictures\\\":[{\\\"img_height\\\":1357,\\\"img_size\\\":1759.1650390625,\\\"img_src\\\":\\\"https:\\\\\\/\\\\\\/i0.hdslb.com\\\\\\/bfs\\\\\\/album\\\\\\/1ce565e7f36e0ae5a3809df21bb39aa2fe578a88.png\\\",\\\"img_tags\\\":null,\\\"img_width\\\":1080},{\\\"img_height\\\":1238,\\\"img_size\\\":832.51953125,\\\"img_src\\\":\\\"https:\\\\\\/\\\\\\/i0.hdslb.com\\\\\\/bfs\\\\\\/album\\\\\\/6df0150c77a7f42a5d31cce8bb006105a660dad9.png\\\",\\\"img_tags\\\":null,\\\"img_width\\\":1080},{\\\"img_height\\\":2193,\\\"img_size\\\":3424.060546875,\\\"img_src\\\":\\\"https:\\\\\\/\\\\\\/i0.hdslb.com\\\\\\/bfs\\\\\\/album\\\\\\/adce81c59436184b56d84e5394583d2ab491b2e6.png\\\",\\\"img_tags\\\":null,\\\"img_width\\\":1080},{\\\"img_height\\\":800,\\\"img_size\\\":166.1552734375,\\\"img_src\\\":\\\"https:\\\\\\/\\\\\\/i0.hdslb.com\\\\\\/bfs\\\\\\/album\\\\\\/9c4e8d6fc04d5a1f3df225d5967fb65c7a3f5f09.jpg\\\",\\\"img_tags\\\":null,\\\"img_width\\\":800}],\\\"pictures_count\\\":4,\\\"reply\\\":1003,\\\"role\\\":[],\\\"settings\\\":{\\\"copy_forbidden\\\":\\\"0\\\"},\\\"source\\\":[],\\\"title\\\":\\\"\\\",\\\"upload_time\\\":1619268097},\\\"user\\\":{\\\"head_url\\\":\\\"https:\\\\\\/\\\\\\/i1.hdslb.com\\\\\\/bfs\\\\\\/face\\\\\\/2254162161a60b528cfec449f3450409a81ebc37.jpg\\\",\\\"name\\\":\\\"哔哩哔哩漫画\\\",\\\"uid\\\":326499679,\\\"vip\\\":{\\\"avatar_subscript\\\":1,\\\"due_date\\\":1941033600000,\\\"label\\\":{\\\"label_theme\\\":\\\"ten_annual_vip\\\",\\\"path\\\":\\\"\\\",\\\"text\\\":\\\"十年大会员\\\"},\\\"nickname_color\\\":\\\"#FB7299\\\",\\\"status\\\":1,\\\"theme_type\\\":0,\\\"type\\\":2,\\\"vip_pay_type\\\":0}}}\", \"origin_extension\": { \"lott\": \"{\\\"callbackId\\\":10,\\\"lottery_id\\\":61382,\\\"lottery_time\\\":1620504000,\\\"title\\\":\\\"互动抽奖\\\"}\" }, \"origin_extend_json\": \"{\\\"ctrl\\\":[{\\\"data\\\":\\\"5\\\",\\\"length\\\":0,\\\"location\\\":0,\\\"type\\\":2}],\\\"from\\\":{\\\"emoji_type\\\":1,\\\"from\\\":\\\"\\\",\\\"up_close_comment\\\":0,\\\"verify\\\":{\\\"asw\\\":{\\\"fl\\\":15,\\\"nv\\\":1},\\\"cc\\\":{\\\"vf\\\":1},\\\"sw\\\":{\\\"fl\\\":15,\\\"nv\\\":1}}},\\\"like_icon\\\":{\\\"action\\\":\\\"\\\",\\\"action_url\\\":\\\"\\\",\\\"end\\\":\\\"\\\",\\\"end_url\\\":\\\"\\\",\\\"start\\\":\\\"\\\",\\\"start_url\\\":\\\"\\\"},\\\"lott\\\":{\\\"callbackId\\\":10,\\\"lottery_id\\\":61382,\\\"lottery_time\\\":1620504000,\\\"title\\\":\\\"互动抽奖\\\"},\\\"topic\\\":{\\\"is_attach_topic\\\":1}}\", \"origin_user\": { \"info\": { \"uid\": 326499679, \"uname\": \"哔哩哔哩漫画\", \"face\": \"https:\\/\\/i1.hdslb.com\\/bfs\\/face\\/2254162161a60b528cfec449f3450409a81ebc37.jpg\" }, \"card\": { \"official_verify\": { \"type\": 1, \"desc\": \"哔哩哔哩漫画官方账号\" } }, \"vip\": { \"vipType\": 2, \"vipDueDate\": 1941033600000, \"vipStatus\": 1, \"themeType\": 0, \"label\": { \"path\": \"\", \"text\": \"十年大会员\", \"label_theme\": \"ten_annual_vip\", \"text_color\": \"#FFFFFF\", \"bg_style\": 1, \"bg_color\": \"#FB7299\", \"border_color\": \"\" }, \"avatar_subscript\": 1, \"nickname_color\": \"#FB7299\", \"role\": 7, \"avatar_subscript_url\": \"https:\\/\\/i0.hdslb.com\\/bfs\\/vip\\/icon_Certification_big_member_22_3x.png\" }, \"pendant\": { \"pid\": 0, \"name\": \"\", \"image\": \"\", \"expire\": 0, \"image_enhance\": \"\", \"image_enhance_frame\": \"\" }, \"rank\": \"10000\", \"sign\": \"↑ 【关注漫画姬】就送【漫读券5张】,当日或次日登录哔哩哔哩漫画APP即可领取,快来关注领券吧(°∀°)ノ ↑\", \"level_info\": { \"current_level\": 6 } } }",
- "extend_json": "{\"from\":{\"emoji_type\":1,\"up_close_comment\":0},\"like_icon\":{\"action\":\"\",\"action_url\":\"\",\"end\":\"\",\"end_url\":\"\",\"start\":\"\",\"start_url\":\"\"},\"topic\":{\"is_attach_topic\":1}}",
- "display": {
- "topic_info": {
- "topic_details": [
- {
- "topic_id": 7539944,
- "topic_name": "哔哩哔哩漫画",
- "is_activity": 0,
- "topic_link": ""
- }
- ]
- },
- "origin": {
- "topic_info": {
- "topic_details": [
- {
- "topic_id": 7539944,
- "topic_name": "哔哩哔哩漫画",
- "is_activity": 0,
- "topic_link": ""
- }
- ]
- },
- "emoji_info": {
- "emoji_details": [
- {
- "emoji_name": "[干杯]",
- "id": 1949,
- "package_id": 1,
- "state": 0,
- "type": 1,
- "attr": 0,
- "text": "[干杯]",
- "url": "https://i0.hdslb.com/bfs/emote/8da12d5f55a2c7e9778dcc05b40571979fe208e6.png",
- "meta": {
- "size": 1
- },
- "mtime": 1597738918
- }
- ]
- },
- "relation": {
- "status": 1,
- "is_follow": 0,
- "is_followed": 0
- },
- "show_tip": {
- "del_tip": "要删除动态吗?"
- }
- },
- "emoji_info": {
- "emoji_details": [
- {
- "emoji_name": "[打call]",
- "id": 510,
- "package_id": 1,
- "state": 0,
- "type": 1,
- "attr": 0,
- "text": "[打call]",
- "url": "https://i0.hdslb.com/bfs/emote/431432c43da3ee5aab5b0e4f8931953e649e9975.png",
- "meta": {
- "size": 1
- },
- "mtime": 1617293741
- }
- ]
- },
- "relation": {
- "status": 1,
- "is_follow": 0,
- "is_followed": 0
- },
- "up_act_button": {
- "report_title": "举报",
- "founder_report_title": "举报(发起人)",
- "top_title": "置顶",
- "top_confirm_title": "确定将此动态置顶吗",
- "top_cancel_title": "确定将此动态取消置顶吗"
- },
- "show_tip": {
- "del_tip": "要删除动态吗?"
- }
- }
- },
- {
- "desc": {
- "uid": 326499679,
- "type": 2,
- "rid": 131403515,
- "acl": 1024,
- "view": 1951519,
- "repost": 16543,
- "comment": 1003,
- "like": 6950,
- "is_liked": 0,
- "dynamic_id": 517241610091321208,
- "timestamp": 1619268097,
- "orig_type": 0,
- "user_profile": {
- "info": {
- "uid": 326499679,
- "uname": "哔哩哔哩漫画",
- "face": "https://i1.hdslb.com/bfs/face/2254162161a60b528cfec449f3450409a81ebc37.jpg"
- },
- "card": {
- "official_verify": {
- "type": 1,
- "desc": "哔哩哔哩漫画官方账号"
- }
- },
- "vip": {
- "vipType": 2,
- "vipDueDate": 1941033600000,
- "vipStatus": 1,
- "themeType": 0,
- "label": {
- "path": "",
- "text": "十年大会员",
- "label_theme": "ten_annual_vip",
- "text_color": "#FFFFFF",
- "bg_style": 1,
- "bg_color": "#FB7299",
- "border_color": ""
- },
- "avatar_subscript": 1,
- "nickname_color": "#FB7299",
- "role": 7,
- "avatar_subscript_url": "https://i0.hdslb.com/bfs/vip/icon_Certification_big_member_22_3x.png"
- },
- "pendant": {
- "pid": 0,
- "name": "",
- "image": "",
- "expire": 0,
- "image_enhance": "",
- "image_enhance_frame": ""
- },
- "rank": "10000",
- "sign": "↑ 【关注漫画姬】就送【漫读券5张】,当日或次日登录哔哩哔哩漫画APP即可领取,快来关注领券吧(°∀°)ノ ↑",
- "level_info": {
- "current_level": 6
- }
- },
- "uid_type": 1,
- "recommend_info": {
- "is_attention": 0
- },
- "r_type": 1,
- "topic_board": "C",
- "topic_board_desc": "最新",
- "status": 1,
- "dynamic_id_str": "517241610091321208",
- "pre_dy_id_str": "0",
- "orig_dy_id_str": "0",
- "rid_str": "131403515"
- },
- "card": "{\"item\":{\"at_control\":\"[{\\\"type\\\":2,\\\"location\\\":0,\\\"length\\\":0,\\\"data\\\":\\\"5\\\"}]\",\"category\":\"daily\",\"description\":\"互动抽奖 【关+转】抽1位小伙伴送【哔哩哔哩小电视兔子包】~\\n【#哔哩哔哩漫画# 作品推荐】大量西幻少女漫爆更来啦———\\n[干杯] 即日起,《重生成为公爵家的丑女》《暴君的监护人是反派魔女》《姐姐捡回了男主》等大量西幻少女精品漫画爆更,追漫更有樱花立牌\\/玩偶等福利好礼相送!\\n[干杯] 快来哔哩哔哩漫画追漫吧~\",\"id\":131403515,\"is_fav\":0,\"pictures\":[{\"img_height\":1357,\"img_size\":1759.1650390625,\"img_src\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/album\\/1ce565e7f36e0ae5a3809df21bb39aa2fe578a88.png\",\"img_tags\":null,\"img_width\":1080},{\"img_height\":1238,\"img_size\":832.51953125,\"img_src\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/album\\/6df0150c77a7f42a5d31cce8bb006105a660dad9.png\",\"img_tags\":null,\"img_width\":1080},{\"img_height\":2193,\"img_size\":3424.060546875,\"img_src\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/album\\/adce81c59436184b56d84e5394583d2ab491b2e6.png\",\"img_tags\":null,\"img_width\":1080},{\"img_height\":800,\"img_size\":166.1552734375,\"img_src\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/album\\/9c4e8d6fc04d5a1f3df225d5967fb65c7a3f5f09.jpg\",\"img_tags\":null,\"img_width\":800}],\"pictures_count\":4,\"reply\":1003,\"role\":[],\"settings\":{\"copy_forbidden\":\"0\"},\"source\":[],\"title\":\"\",\"upload_time\":1619268097},\"user\":{\"head_url\":\"https:\\/\\/i1.hdslb.com\\/bfs\\/face\\/2254162161a60b528cfec449f3450409a81ebc37.jpg\",\"name\":\"哔哩哔哩漫画\",\"uid\":326499679,\"vip\":{\"avatar_subscript\":1,\"due_date\":1941033600000,\"label\":{\"label_theme\":\"ten_annual_vip\",\"path\":\"\",\"text\":\"十年大会员\"},\"nickname_color\":\"#FB7299\",\"status\":1,\"theme_type\":0,\"type\":2,\"vip_pay_type\":0}}}",
- "extension": {
- "lott": "{\"callbackId\":10,\"lottery_id\":61382,\"lottery_time\":1620504000,\"title\":\"互动抽奖\"}"
- },
- "extend_json": "{\"ctrl\":[{\"data\":\"5\",\"length\":0,\"location\":0,\"type\":2}],\"from\":{\"emoji_type\":1,\"from\":\"\",\"up_close_comment\":0,\"verify\":{\"asw\":{\"fl\":15,\"nv\":1},\"cc\":{\"vf\":1},\"sw\":{\"fl\":15,\"nv\":1}}},\"like_icon\":{\"action\":\"\",\"action_url\":\"\",\"end\":\"\",\"end_url\":\"\",\"start\":\"\",\"start_url\":\"\"},\"lott\":{\"callbackId\":10,\"lottery_id\":61382,\"lottery_time\":1620504000,\"title\":\"互动抽奖\"},\"topic\":{\"is_attach_topic\":1}}",
- "display": {
- "topic_info": {
- "topic_details": [
- {
- "topic_id": 7539944,
- "topic_name": "哔哩哔哩漫画",
- "is_activity": 0,
- "topic_link": ""
- }
- ]
- },
- "emoji_info": {
- "emoji_details": [
- {
- "emoji_name": "[干杯]",
- "id": 1949,
- "package_id": 1,
- "state": 0,
- "type": 1,
- "attr": 0,
- "text": "[干杯]",
- "url": "https://i0.hdslb.com/bfs/emote/8da12d5f55a2c7e9778dcc05b40571979fe208e6.png",
- "meta": {
- "size": 1
- },
- "mtime": 1597738918
- }
- ]
- },
- "relation": {
- "status": 1,
- "is_follow": 0,
- "is_followed": 0
- },
- "up_act_button": {
- "report_title": "举报",
- "founder_report_title": "举报(发起人)",
- "top_title": "置顶",
- "top_confirm_title": "确定将此动态置顶吗",
- "top_cancel_title": "确定将此动态取消置顶吗"
- },
- "show_tip": {
- "del_tip": "要删除动态吗?"
- }
- }
- },
- {
- "desc": {
- "uid": 326499679,
- "type": 2,
- "rid": 131384529,
- "acl": 0,
- "view": 1599049,
- "repost": 5,
- "comment": 63,
- "like": 4614,
- "is_liked": 0,
- "dynamic_id": 517215462328123502,
- "timestamp": 1619262009,
- "pre_dy_id": 0,
- "orig_dy_id": 0,
- "orig_type": 0,
- "user_profile": {
- "info": {
- "uid": 326499679,
- "uname": "哔哩哔哩漫画",
- "face": "https://i1.hdslb.com/bfs/face/2254162161a60b528cfec449f3450409a81ebc37.jpg"
- },
- "card": {
- "official_verify": {
- "type": 1,
- "desc": "哔哩哔哩漫画官方账号"
- }
- },
- "vip": {
- "vipType": 2,
- "vipDueDate": 1941033600000,
- "vipStatus": 1,
- "themeType": 0,
- "label": {
- "path": "",
- "text": "十年大会员",
- "label_theme": "ten_annual_vip",
- "text_color": "#FFFFFF",
- "bg_style": 1,
- "bg_color": "#FB7299",
- "border_color": ""
- },
- "avatar_subscript": 1,
- "nickname_color": "#FB7299",
- "role": 7,
- "avatar_subscript_url": "https://i0.hdslb.com/bfs/vip/icon_Certification_big_member_22_3x.png"
- },
- "pendant": {
- "pid": 0,
- "name": "",
- "image": "",
- "expire": 0,
- "image_enhance": "",
- "image_enhance_frame": ""
- },
- "rank": "10000",
- "sign": "↑ 【关注漫画姬】就送【漫读券5张】,当日或次日登录哔哩哔哩漫画APP即可领取,快来关注领券吧(°∀°)ノ ↑",
- "level_info": {
- "current_level": 6
- }
- },
- "uid_type": 1,
- "recommend_info": {
- "is_attention": 0
- },
- "stype": 0,
- "r_type": 1,
- "inner_id": 0,
- "topic_board": "C",
- "topic_board_desc": "最新",
- "status": 1,
- "dynamic_id_str": "517215462328123502",
- "pre_dy_id_str": "0",
- "orig_dy_id_str": "0",
- "rid_str": "131384529"
- },
- "card": "{\"item\":{\"at_control\":\"\",\"category\":\"daily\",\"description\":\"【#哔哩哔哩漫画# 近期更新】(`・ω・´)\\nP1《#辉夜大小姐想让我告白# ~天才们的恋爱头脑战~ 》:https:\\/\\/manga.bilibili.com\\/m\\/detail\\/mc26009\\nP2《#入间同学入魔了#!》:https:\\/\\/manga.bilibili.com\\/m\\/detail\\/mc27189\\nP3《催眠麦克风-Division Rap Battle- side D.H&B.A.T》\\nP4《他和她的魔法契约》\\nP5《瓦尼塔斯的手记》\\nP6《见面5秒开始战斗》\\nP7《魔气来袭》\\nP8《尖帽子的魔法工坊》 \",\"id\":131384529,\"is_fav\":0,\"pictures\":[{\"img_height\":2920,\"img_size\":1993.103515625,\"img_src\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/album\\/24a3e5d04e8ad86fcdae48e6ee88f90a0351f82d.jpg\",\"img_tags\":null,\"img_width\":2000},{\"img_height\":2872,\"img_size\":2453.1513671875,\"img_src\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/album\\/d512d771dd3f91b54733f104e5de7e38d61ef56c.jpg\",\"img_tags\":null,\"img_width\":2000},{\"img_height\":2806,\"img_size\":4156.140625,\"img_src\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/album\\/119fe01717120eb9c8c04d2c48a22298c8f88d17.jpg\",\"img_tags\":null,\"img_width\":2000},{\"img_height\":1147,\"img_size\":152.23046875,\"img_src\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/album\\/d2fb2a6d2229a03ea967ee2182faefd67b0811fd.jpg\",\"img_tags\":null,\"img_width\":800},{\"img_height\":2637,\"img_size\":10432.2978515625,\"img_src\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/album\\/e8966e96d34938474eebfcf60f38e14932e09be4.jpg\",\"img_tags\":null,\"img_width\":3600},{\"img_height\":2268,\"img_size\":6175.017578125,\"img_src\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/album\\/4ed99d7329108e9e585db49da63a56bdcf7e8670.jpg\",\"img_tags\":null,\"img_width\":3200},{\"img_height\":1461,\"img_size\":283.990234375,\"img_src\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/album\\/a8f37ec732103b1912fd3448d06d610cae5486df.jpg\",\"img_tags\":null,\"img_width\":800},{\"img_height\":2871,\"img_size\":3639.478515625,\"img_src\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/album\\/fe8e58fd4f7c7063f880f064b3366e758dbfd7ee.jpg\",\"img_tags\":null,\"img_width\":2000}],\"pictures_count\":8,\"reply\":63,\"role\":[],\"settings\":{\"copy_forbidden\":\"0\"},\"source\":[],\"title\":\"\",\"upload_time\":1619262009},\"user\":{\"head_url\":\"https:\\/\\/i1.hdslb.com\\/bfs\\/face\\/2254162161a60b528cfec449f3450409a81ebc37.jpg\",\"name\":\"哔哩哔哩漫画\",\"uid\":326499679,\"vip\":{\"avatar_subscript\":1,\"due_date\":1941033600000,\"label\":{\"label_theme\":\"ten_annual_vip\",\"path\":\"\",\"text\":\"十年大会员\"},\"nickname_color\":\"#FB7299\",\"status\":1,\"theme_type\":0,\"type\":2,\"vip_pay_type\":0}}}",
- "extend_json": "{\"from\":{\"emoji_type\":1,\"from\":\"timer.publish\",\"up_close_comment\":0,\"verify\":{\"cc\":{\"nv\":1}}},\"like_icon\":{\"action\":\"\",\"action_url\":\"\",\"end\":\"\",\"end_url\":\"\",\"start\":\"\",\"start_url\":\"\"},\"topic\":{\"is_attach_topic\":1}}",
- "display": {
- "topic_info": {
- "topic_details": [
- {
- "topic_id": 7539944,
- "topic_name": "哔哩哔哩漫画",
- "is_activity": 0,
- "topic_link": ""
- },
- {
- "topic_id": 4386628,
- "topic_name": "辉夜大小姐想让我告白",
- "is_activity": 0,
- "topic_link": ""
- },
- {
- "topic_id": 8724199,
- "topic_name": "入间同学入魔了",
- "is_activity": 1,
- "topic_link": "https://www.bilibili.com/blackboard/dynamic/69330"
- }
- ]
- },
- "relation": {
- "status": 1,
- "is_follow": 0,
- "is_followed": 0
- },
- "up_act_button": {
- "report_title": "举报",
- "founder_report_title": "举报(发起人)",
- "top_title": "置顶",
- "top_confirm_title": "确定将此动态置顶吗",
- "top_cancel_title": "确定将此动态取消置顶吗"
- },
- "show_tip": {
- "del_tip": "要删除动态吗?"
- }
- }
- }
- ],
- "offset": "517215462328123502",
- "is_drawer_topic": 0,
- "founder_uid": 0,
- "_gt_": 0
- }
-}
-```
-
-
-
-## 获取历史动态列表
-> https://api.vc.bilibili.com/topic_svr/v1/topic_svr/topic_history
-
- *请求方式:GET*
-
-
-**url参数:**
-
-| 参数名 | 类型 | 内容 | 必要性 | 备注 |
-| ------------ | ---- | ---------- | ------ | -------- |
-| topic_name | str | 话题名称 | 必要(可选) | topic_id与topic_name任选一个 |
-| topic_id | num | 话题id | 必要(可选) | topic_id与topic_name任选一个 |
-| offset_dynamic_id | num | 偏移值 | 必要| 可用于偏移显示的动态列表(为`0`时获取最新动态) |
-
-**json回复:**
-
-根对象:
-
-| 字段 | 类型 | 内容 | 备注 |
-| ------- | ---- | -------- | -------- |
-| code | num | 返回值 | 0:成功 |
-| data | obj | 信息本体 | |
-| message | str | 错误信息 | 默认为空 |
-| msg | num | 空 | |
-
-`data`对象:
-
-| 字段 | 类型 | 内容 | 备注 |
-| ----------- | ----- | ---------- | ------------ |
-| attentions | obj | 当前登录账户关注列表(仅在传递了登录信息时出现) | |
-| cards | array | 动态列表 | |
-| has_more | num | 当前话题是否有额外的动态 | 0:无额外动态
1:有额外动态 |
-| offset | str | 接下来获取列表时的偏移值 | 一般为当前获取的话题列表下最后一个动态id |
-| \_gt\_ | num | 0 | 作用尚不明确 |
-
-`data`中的`cards`数组:
-
-| 项 | 类型 | 内容 | 备注 |
-| ---- | ---- | ------------- | ---- |
-| 0 | obj | 第1条动态卡片 | |
-| n | obj | 第(n+1)条动态卡片 | |
-| …… | obj | …… | …… |
-
-`data`中的`cards`数组中的对象:
-
-基本同「[获取特定动态卡片信息](get_dynamic_detail.md)」中的data对象
-
-**示例:**
-
-获取话题`哔哩哔哩漫画`(话题id`7539944`)的当前动态列表
-
-topic_name方式:
-```shell
-curl -G 'https://api.vc.bilibili.com/topic_svr/v1/topic_svr/topic_history' \
---data-urlencode 'topic_name=哔哩哔哩漫画&offset_dynamic_id=0'
-```
-topic_id方式:
-```shell
-curl -G 'https://api.vc.bilibili.com/topic_svr/v1/topic_svr/topic_history' \
---data-urlencode 'topic_id=7539944&offset_dynamic_id=0'
-```
-
-
-查看响应示例:
-
-```json
-{
- "code": 0,
- "msg": "",
- "message": "",
- "data": {
- "has_more": 1,
- "cards": [
- {
- "desc": {
- "uid": 326499679,
- "type": 2,
- "rid": 131534120,
- "acl": 0,
- "view": 555573,
- "repost": 9,
- "comment": 90,
- "like": 2478,
- "is_liked": 0,
- "dynamic_id": 517602000793534062,
- "timestamp": 1619352007,
- "pre_dy_id": 0,
- "orig_dy_id": 0,
- "orig_type": 0,
- "user_profile": {
- "info": {
- "uid": 326499679,
- "uname": "哔哩哔哩漫画",
- "face": "https://i1.hdslb.com/bfs/face/2254162161a60b528cfec449f3450409a81ebc37.jpg"
- },
- "card": {
- "official_verify": {
- "type": 1,
- "desc": "哔哩哔哩漫画官方账号"
- }
- },
- "vip": {
- "vipType": 2,
- "vipDueDate": 1941033600000,
- "vipStatus": 1,
- "themeType": 0,
- "label": {
- "path": "",
- "text": "十年大会员",
- "label_theme": "ten_annual_vip",
- "text_color": "#FFFFFF",
- "bg_style": 1,
- "bg_color": "#FB7299",
- "border_color": ""
- },
- "avatar_subscript": 1,
- "nickname_color": "#FB7299",
- "role": 7,
- "avatar_subscript_url": "https://i0.hdslb.com/bfs/vip/icon_Certification_big_member_22_3x.png"
- },
- "pendant": {
- "pid": 0,
- "name": "",
- "image": "",
- "expire": 0,
- "image_enhance": "",
- "image_enhance_frame": ""
- },
- "rank": "10000",
- "sign": "↑ 【关注漫画姬】就送【漫读券5张】,当日或次日登录哔哩哔哩漫画APP即可领取,快来关注领券吧(°∀°)ノ ↑",
- "level_info": {
- "current_level": 6
- }
- },
- "uid_type": 1,
- "recommend_info": {
- "is_attention": 0
- },
- "stype": 0,
- "r_type": 1,
- "inner_id": 0,
- "topic_board": "C",
- "topic_board_desc": "最新",
- "status": 1,
- "dynamic_id_str": "517602000793534062",
- "pre_dy_id_str": "0",
- "orig_dy_id_str": "0",
- "rid_str": "131534120"
- },
- "card": "{\"item\":{\"at_control\":\"\",\"category\":\"daily\",\"description\":\"【#哔哩哔哩漫画# 作品推荐】兽人控狂喜!《#不莱梅乐队#》:https:\\/\\/manga.bilibili.com\\/m\\/detail\\/mc28880\\n[思考]大家小时候看过一篇叫做《不莱梅的音乐家》的格林童话吗?\\n[惊喜]只不过在这部#欧漫#里,这四个动物的目的不是赶走强盗,而是追逐梦想、爱情、自由、正义。在这个充满混沌的世界里,他们将用音乐的力量改写自己和他人的命运。 \",\"id\":131534120,\"is_fav\":0,\"pictures\":[{\"img_height\":1922,\"img_size\":1163.9267578125,\"img_src\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/album\\/f5a82f03475eed52973b3cecb2b5180b090cc5f0.png\",\"img_tags\":null,\"img_width\":1080},{\"img_height\":757,\"img_size\":273.130859375,\"img_src\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/album\\/ca4055c7b9c246e7e922190102d5c87cd4dbcea8.png\",\"img_tags\":null,\"img_width\":436},{\"img_height\":1067,\"img_size\":640.29296875,\"img_src\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/album\\/9de3ece4d374d07fb7b192db4520779a477cdf97.png\",\"img_tags\":null,\"img_width\":542},{\"img_height\":972,\"img_size\":374.8349609375,\"img_src\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/album\\/cac12d548a3686335d3154cce672f1823ca92517.png\",\"img_tags\":null,\"img_width\":487}],\"pictures_count\":4,\"reply\":90,\"role\":[],\"settings\":{\"copy_forbidden\":\"0\"},\"source\":[],\"title\":\"\",\"upload_time\":1619352007},\"user\":{\"head_url\":\"https:\\/\\/i1.hdslb.com\\/bfs\\/face\\/2254162161a60b528cfec449f3450409a81ebc37.jpg\",\"name\":\"哔哩哔哩漫画\",\"uid\":326499679,\"vip\":{\"avatar_subscript\":1,\"due_date\":1941033600000,\"label\":{\"label_theme\":\"ten_annual_vip\",\"path\":\"\",\"text\":\"十年大会员\"},\"nickname_color\":\"#FB7299\",\"status\":1,\"theme_type\":0,\"type\":2,\"vip_pay_type\":0}}}",
- "extend_json": "{\"from\":{\"emoji_type\":1,\"from\":\"timer.publish\",\"up_close_comment\":0,\"verify\":{\"asw\":{\"fl\":15,\"nv\":1},\"cc\":{\"nv\":1},\"sw\":{\"fl\":15,\"nv\":1}}},\"like_icon\":{\"action\":\"\",\"action_url\":\"\",\"end\":\"\",\"end_url\":\"\",\"start\":\"\",\"start_url\":\"\"},\"topic\":{\"is_attach_topic\":1}}",
- "display": {
- "topic_info": {
- "topic_details": [
- {
- "topic_id": 7539944,
- "topic_name": "哔哩哔哩漫画",
- "is_activity": 0,
- "topic_link": ""
- },
- {
- "topic_id": 15149492,
- "topic_name": "不莱梅乐队",
- "is_activity": 0,
- "topic_link": ""
- },
- {
- "topic_id": 507003,
- "topic_name": "欧漫",
- "is_activity": 0,
- "topic_link": ""
- }
- ]
- },
- "emoji_info": {
- "emoji_details": [
- {
- "emoji_name": "[思考]",
- "id": 1941,
- "package_id": 1,
- "state": 0,
- "type": 1,
- "attr": 0,
- "text": "[思考]",
- "url": "https://i0.hdslb.com/bfs/emote/cfa9b7e89e4bfe04bbcd34ccb1b0df37f4fa905c.png",
- "meta": {
- "size": 1
- },
- "mtime": 1597738918
- },
- {
- "emoji_name": "[惊喜]",
- "id": 19,
- "package_id": 1,
- "state": 0,
- "type": 1,
- "attr": 0,
- "text": "[惊喜]",
- "url": "https://i0.hdslb.com/bfs/emote/0afecaf3a3499479af946f29749e1a6c285b6f65.png",
- "meta": {
- "size": 1
- },
- "mtime": 1597738918
- }
- ]
- },
- "relation": {
- "status": 1,
- "is_follow": 0,
- "is_followed": 0
- },
- "up_act_button": {
- "report_title": "举报",
- "founder_report_title": "举报(发起人)",
- "top_title": "置顶",
- "top_confirm_title": "确定将此动态置顶吗",
- "top_cancel_title": "确定将此动态取消置顶吗"
- },
- "show_tip": {
- "del_tip": "要删除动态吗?"
- }
- }
- },
- {
- "desc": {
- "uid": 240911350,
- "type": 1,
- "rid": 517516389208371264,
- "acl": 0,
- "view": 251,
- "repost": 0,
- "comment": 0,
- "like": 2,
- "is_liked": 0,
- "dynamic_id": 517516389214088892,
- "timestamp": 1619332074,
- "pre_dy_id": 517479366596833835,
- "orig_dy_id": 517479366596833835,
- "orig_type": 2,
- "user_profile": {
- "info": {
- "uid": 240911350,
- "uname": "Kekkai-piano",
- "face": "https://i1.hdslb.com/bfs/face/f9b56adf0e9fb16d556fb5af93fc8367a255e4af.jpg"
- },
- "card": {
- "official_verify": {
- "type": -1,
- "desc": ""
- }
- },
- "vip": {
- "vipType": 2,
- "vipDueDate": 1658851200000,
- "vipStatus": 1,
- "themeType": 0,
- "label": {
- "path": "",
- "text": "年度大会员",
- "label_theme": "annual_vip",
- "text_color": "#FFFFFF",
- "bg_style": 1,
- "bg_color": "#FB7299",
- "border_color": ""
- },
- "avatar_subscript": 1,
- "nickname_color": "#FB7299",
- "role": 3,
- "avatar_subscript_url": "https://i0.hdslb.com/bfs/vip/icon_Certification_big_member_22_3x.png"
- },
- "pendant": {
- "pid": 2511,
- "name": "初音未来13周年",
- "image": "https://i1.hdslb.com/bfs/garb/item/4f8f3f1f2d47f0dad84f66aa57acd4409ea46361.png",
- "expire": 0,
- "image_enhance": "https://i1.hdslb.com/bfs/garb/item/fe0b83b53e2342b16646f6e7a9370d8a867decdb.webp",
- "image_enhance_frame": "https://i1.hdslb.com/bfs/garb/item/127c507ec8448be30cf5f79500ecc6ef2fd32f2c.png"
- },
- "rank": "10000",
- "sign": "看动画片的88键音游爱好者 \n专业人士轻喷 \n正在寻找缺失之物 \n超天変地異みたいな狂騒にも慣れて\n高三备考ing,莫要取关(bushi)",
- "level_info": {
- "current_level": 5
- }
- },
- "uid_type": 1,
- "recommend_info": {
- "is_attention": 0
- },
- "stype": 0,
- "r_type": 1,
- "inner_id": 0,
- "topic_board": "C",
- "topic_board_desc": "最新",
- "status": 1,
- "dynamic_id_str": "517516389214088892",
- "pre_dy_id_str": "517479366596833835",
- "orig_dy_id_str": "517479366596833835",
- "rid_str": "517516389208371264",
- "origin": {
- "uid": 326499679,
- "type": 2,
- "rid": 131479206,
- "acl": 1024,
- "view": 1412747,
- "repost": 11488,
- "dynamic_id": 517479366596833835,
- "timestamp": 1619323454,
- "uid_type": 1,
- "r_type": 1,
- "status": 1,
- "dynamic_id_str": "517479366596833835",
- "pre_dy_id_str": "0",
- "orig_dy_id_str": "0",
- "rid_str": "131479206"
- }
- },
- "card": "{ \"user\": { \"uid\": 240911350, \"uname\": \"Kekkai-piano\", \"face\": \"https:\\/\\/i1.hdslb.com\\/bfs\\/face\\/f9b56adf0e9fb16d556fb5af93fc8367a255e4af.jpg\" }, \"item\": { \"rp_id\": 517516389208371264, \"uid\": 240911350, \"content\": \"分母报道[doge]#哔哩哔哩漫画#,#AISHA#\", \"orig_dy_id\": 517479366596833835, \"pre_dy_id\": 517479366596833835, \"timestamp\": 1619332074, \"reply\": 0, \"orig_type\": 2 }, \"origin\": \"{\\\"item\\\":{\\\"at_control\\\":\\\"[{\\\\\\\"data\\\\\\\":\\\\\\\"5\\\\\\\",\\\\\\\"length\\\\\\\":0,\\\\\\\"location\\\\\\\":0,\\\\\\\"type\\\\\\\":2},{\\\\\\\"location\\\\\\\":19,\\\\\\\"type\\\\\\\":1,\\\\\\\"length\\\\\\\":8,\\\\\\\"data\\\\\\\":\\\\\\\"1425490690\\\\\\\"}]\\\",\\\"category\\\":\\\"daily\\\",\\\"description\\\":\\\"互动抽奖 关+转,抽3位幸运小伙伴送@漫画家法吉特 【《逆光》画集作者签名版】~\\\\n #哔哩哔哩漫画#重磅安利之《#AISHA#》\\\\n当当当当!剧情党福音~\\\\n答题就有机会赢得礼物?还有法吉特太太亲签精美画集?\\\\n活动入口→https:\\\\\\/\\\\\\/www.bilibili.com\\\\\\/blackboard\\\\\\/topic\\\\\\/activity-oPISh007wv.html\\\\n\\\\n你以为这样就结束了了吗?\\\\nNONONO~\\\\n法吉特老师首次出版个人作品集《逆光》~商城4月25日0点首发开售!\\\\n有法吉特老师签名版掉落哦!随书额外附赠专属书签特典!\\\\n活动指路:哔哩哔哩漫画APP-我的-商城-banner\\\",\\\"id\\\":131479206,\\\"is_fav\\\":0,\\\"pictures\\\":[{\\\"img_height\\\":782,\\\"img_size\\\":1097.2451171875,\\\"img_src\\\":\\\"https:\\\\\\/\\\\\\/i0.hdslb.com\\\\\\/bfs\\\\\\/album\\\\\\/8965a784f77e2545f4f2f168df4f417ed3ace818.png\\\",\\\"img_tags\\\":null,\\\"img_width\\\":750}],\\\"pictures_count\\\":1,\\\"reply\\\":599,\\\"role\\\":[],\\\"settings\\\":{\\\"copy_forbidden\\\":\\\"0\\\"},\\\"source\\\":[],\\\"title\\\":\\\"\\\",\\\"upload_time\\\":1619323454},\\\"user\\\":{\\\"head_url\\\":\\\"https:\\\\\\/\\\\\\/i1.hdslb.com\\\\\\/bfs\\\\\\/face\\\\\\/2254162161a60b528cfec449f3450409a81ebc37.jpg\\\",\\\"name\\\":\\\"哔哩哔哩漫画\\\",\\\"uid\\\":326499679,\\\"vip\\\":{\\\"avatar_subscript\\\":1,\\\"due_date\\\":1941033600000,\\\"label\\\":{\\\"label_theme\\\":\\\"ten_annual_vip\\\",\\\"path\\\":\\\"\\\",\\\"text\\\":\\\"十年大会员\\\"},\\\"nickname_color\\\":\\\"#FB7299\\\",\\\"status\\\":1,\\\"theme_type\\\":0,\\\"type\\\":2,\\\"vip_pay_type\\\":0}}}\", \"origin_extension\": { \"lott\": \"{\\\"lottery_id\\\":61398}\" }, \"origin_extend_json\": \"{\\\"ctrl\\\":[{\\\"data\\\":\\\"5\\\",\\\"length\\\":0,\\\"location\\\":0,\\\"type\\\":2},{\\\"data\\\":\\\"1425490690\\\",\\\"length\\\":8,\\\"location\\\":19,\\\"type\\\":1}],\\\"from\\\":{\\\"emoji_type\\\":1,\\\"from\\\":\\\"create.dynamic.web\\\",\\\"up_close_comment\\\":0,\\\"verify\\\":{\\\"asw\\\":{\\\"fl\\\":15,\\\"nv\\\":1},\\\"cc\\\":{\\\"vf\\\":1},\\\"sw\\\":{\\\"fl\\\":15,\\\"nv\\\":1}}},\\\"like_icon\\\":{\\\"action\\\":\\\"\\\",\\\"action_url\\\":\\\"\\\",\\\"end\\\":\\\"\\\",\\\"end_url\\\":\\\"\\\",\\\"start\\\":\\\"\\\",\\\"start_url\\\":\\\"\\\"},\\\"lott\\\":{\\\"lottery_id\\\":61398},\\\"topic\\\":{\\\"is_attach_topic\\\":1}}\", \"origin_user\": { \"info\": { \"uid\": 326499679, \"uname\": \"哔哩哔哩漫画\", \"face\": \"https:\\/\\/i1.hdslb.com\\/bfs\\/face\\/2254162161a60b528cfec449f3450409a81ebc37.jpg\" }, \"card\": { \"official_verify\": { \"type\": 1, \"desc\": \"哔哩哔哩漫画官方账号\" } }, \"vip\": { \"vipType\": 2, \"vipDueDate\": 1941033600000, \"vipStatus\": 1, \"themeType\": 0, \"label\": { \"path\": \"\", \"text\": \"十年大会员\", \"label_theme\": \"ten_annual_vip\", \"text_color\": \"#FFFFFF\", \"bg_style\": 1, \"bg_color\": \"#FB7299\", \"border_color\": \"\" }, \"avatar_subscript\": 1, \"nickname_color\": \"#FB7299\", \"role\": 7, \"avatar_subscript_url\": \"https:\\/\\/i0.hdslb.com\\/bfs\\/vip\\/icon_Certification_big_member_22_3x.png\" }, \"pendant\": { \"pid\": 0, \"name\": \"\", \"image\": \"\", \"expire\": 0, \"image_enhance\": \"\", \"image_enhance_frame\": \"\" }, \"rank\": \"10000\", \"sign\": \"↑ 【关注漫画姬】就送【漫读券5张】,当日或次日登录哔哩哔哩漫画APP即可领取,快来关注领券吧(°∀°)ノ ↑\", \"level_info\": { \"current_level\": 6 } } }",
- "extend_json": "{\"from\":{\"emoji_type\":1,\"from\":\"create.comment\",\"up_close_comment\":0},\"like_icon\":{\"action\":\"\",\"action_url\":\"\",\"end\":\"\",\"end_url\":\"\",\"start\":\"\",\"start_url\":\"\"},\"topic\":{\"is_attach_topic\":1}}",
- "display": {
- "topic_info": {
- "topic_details": [
- {
- "topic_id": 7539944,
- "topic_name": "哔哩哔哩漫画",
- "is_activity": 0,
- "topic_link": ""
- },
- {
- "topic_id": 148830,
- "topic_name": "AISHA",
- "is_activity": 1,
- "topic_link": "https://www.bilibili.com/blackboard/dynamic/18159"
- },
- {
- "topic_id": 2514603,
- "topic_name": "aisha",
- "is_activity": 0,
- "topic_link": ""
- }
- ]
- },
- "origin": {
- "topic_info": {
- "topic_details": [
- {
- "topic_id": 7539944,
- "topic_name": "哔哩哔哩漫画",
- "is_activity": 0,
- "topic_link": ""
- },
- {
- "topic_id": 148830,
- "topic_name": "AISHA",
- "is_activity": 1,
- "topic_link": "https://www.bilibili.com/blackboard/dynamic/18159"
- },
- {
- "topic_id": 2514603,
- "topic_name": "aisha",
- "is_activity": 0,
- "topic_link": ""
- }
- ]
- },
- "relation": {
- "status": 1,
- "is_follow": 0,
- "is_followed": 0
- },
- "show_tip": {
- "del_tip": "要删除动态吗?"
- }
- },
- "emoji_info": {
- "emoji_details": [
- {
- "emoji_name": "[doge]",
- "id": 26,
- "package_id": 1,
- "state": 0,
- "type": 1,
- "attr": 0,
- "text": "[doge]",
- "url": "https://i0.hdslb.com/bfs/emote/3087d273a78ccaff4bb1e9972e2ba2a7583c9f11.png",
- "meta": {
- "size": 1
- },
- "mtime": 1617293741
- }
- ]
- },
- "relation": {
- "status": 1,
- "is_follow": 0,
- "is_followed": 0
- },
- "up_act_button": {
- "report_title": "举报",
- "founder_report_title": "举报(发起人)",
- "top_title": "置顶",
- "top_confirm_title": "确定将此动态置顶吗",
- "top_cancel_title": "确定将此动态取消置顶吗"
- },
- "show_tip": {
- "del_tip": "要删除动态吗?"
- }
- }
- },
- {
- "desc": {
- "uid": 1192711092,
- "type": 1,
- "rid": 517505230885402892,
- "acl": 0,
- "view": 3,
- "repost": 0,
- "comment": 0,
- "like": 0,
- "is_liked": 0,
- "dynamic_id": 517505230886905525,
- "timestamp": 1619329476,
- "pre_dy_id": 517241610091321208,
- "orig_dy_id": 517241610091321208,
- "orig_type": 2,
- "user_profile": {
- "info": {
- "uid": 1192711092,
- "uname": "会发光的偶恰",
- "face": "https://i0.hdslb.com/bfs/face/b85a508793bd96deec61e2491d60e68f10378395.jpg"
- },
- "card": {
- "official_verify": {
- "type": -1,
- "desc": ""
- }
- },
- "vip": {
- "vipType": 0,
- "vipDueDate": 0,
- "vipStatus": 0,
- "themeType": 0,
- "label": {
- "path": "",
- "text": "",
- "label_theme": "",
- "text_color": "",
- "bg_style": 0,
- "bg_color": "",
- "border_color": ""
- },
- "avatar_subscript": 0,
- "nickname_color": "",
- "role": 0,
- "avatar_subscript_url": ""
- },
- "pendant": {
- "pid": 0,
- "name": "",
- "image": "",
- "expire": 0,
- "image_enhance": "",
- "image_enhance_frame": ""
- },
- "rank": "10000",
- "sign": "",
- "level_info": {
- "current_level": 3
- }
- },
- "uid_type": 1,
- "recommend_info": {
- "is_attention": 0
- },
- "stype": 0,
- "r_type": 1,
- "inner_id": 0,
- "topic_board": "C",
- "topic_board_desc": "最新",
- "status": 1,
- "dynamic_id_str": "517505230886905525",
- "pre_dy_id_str": "517241610091321208",
- "orig_dy_id_str": "517241610091321208",
- "rid_str": "517505230885402892",
- "origin": {
- "uid": 326499679,
- "type": 2,
- "rid": 131403515,
- "acl": 1024,
- "view": 1962092,
- "repost": 16607,
- "dynamic_id": 517241610091321208,
- "timestamp": 1619268097,
- "uid_type": 1,
- "r_type": 1,
- "status": 1,
- "dynamic_id_str": "517241610091321208",
- "pre_dy_id_str": "0",
- "orig_dy_id_str": "0",
- "rid_str": "131403515"
- }
- },
- "card": "{ \"user\": { \"uid\": 1192711092, \"uname\": \"会发光的偶恰\", \"face\": \"https:\\/\\/i0.hdslb.com\\/bfs\\/face\\/b85a508793bd96deec61e2491d60e68f10378395.jpg\" }, \"item\": { \"rp_id\": 517505230885402892, \"uid\": 1192711092, \"content\": \"我最喜欢这个了,我也想要#哔哩哔哩漫画#\", \"orig_dy_id\": 517241610091321208, \"pre_dy_id\": 517241610091321208, \"timestamp\": 1619329476, \"reply\": 0, \"orig_type\": 2 }, \"origin\": \"{\\\"item\\\":{\\\"at_control\\\":\\\"[{\\\\\\\"type\\\\\\\":2,\\\\\\\"location\\\\\\\":0,\\\\\\\"length\\\\\\\":0,\\\\\\\"data\\\\\\\":\\\\\\\"5\\\\\\\"}]\\\",\\\"category\\\":\\\"daily\\\",\\\"description\\\":\\\"互动抽奖 【关+转】抽1位小伙伴送【哔哩哔哩小电视兔子包】~\\\\n【#哔哩哔哩漫画# 作品推荐】大量西幻少女漫爆更来啦———\\\\n[干杯] 即日起,《重生成为公爵家的丑女》《暴君的监护人是反派魔女》《姐姐捡回了男主》等大量西幻少女精品漫画爆更,追漫更有樱花立牌\\\\\\/玩偶等福利好礼相送!\\\\n[干杯] 快来哔哩哔哩漫画追漫吧~\\\",\\\"id\\\":131403515,\\\"is_fav\\\":0,\\\"pictures\\\":[{\\\"img_height\\\":1357,\\\"img_size\\\":1759.1650390625,\\\"img_src\\\":\\\"https:\\\\\\/\\\\\\/i0.hdslb.com\\\\\\/bfs\\\\\\/album\\\\\\/1ce565e7f36e0ae5a3809df21bb39aa2fe578a88.png\\\",\\\"img_tags\\\":null,\\\"img_width\\\":1080},{\\\"img_height\\\":1238,\\\"img_size\\\":832.51953125,\\\"img_src\\\":\\\"https:\\\\\\/\\\\\\/i0.hdslb.com\\\\\\/bfs\\\\\\/album\\\\\\/6df0150c77a7f42a5d31cce8bb006105a660dad9.png\\\",\\\"img_tags\\\":null,\\\"img_width\\\":1080},{\\\"img_height\\\":2193,\\\"img_size\\\":3424.060546875,\\\"img_src\\\":\\\"https:\\\\\\/\\\\\\/i0.hdslb.com\\\\\\/bfs\\\\\\/album\\\\\\/adce81c59436184b56d84e5394583d2ab491b2e6.png\\\",\\\"img_tags\\\":null,\\\"img_width\\\":1080},{\\\"img_height\\\":800,\\\"img_size\\\":166.1552734375,\\\"img_src\\\":\\\"https:\\\\\\/\\\\\\/i0.hdslb.com\\\\\\/bfs\\\\\\/album\\\\\\/9c4e8d6fc04d5a1f3df225d5967fb65c7a3f5f09.jpg\\\",\\\"img_tags\\\":null,\\\"img_width\\\":800}],\\\"pictures_count\\\":4,\\\"reply\\\":1020,\\\"role\\\":[],\\\"settings\\\":{\\\"copy_forbidden\\\":\\\"0\\\"},\\\"source\\\":[],\\\"title\\\":\\\"\\\",\\\"upload_time\\\":1619268097},\\\"user\\\":{\\\"head_url\\\":\\\"https:\\\\\\/\\\\\\/i1.hdslb.com\\\\\\/bfs\\\\\\/face\\\\\\/2254162161a60b528cfec449f3450409a81ebc37.jpg\\\",\\\"name\\\":\\\"哔哩哔哩漫画\\\",\\\"uid\\\":326499679,\\\"vip\\\":{\\\"avatar_subscript\\\":1,\\\"due_date\\\":1941033600000,\\\"label\\\":{\\\"label_theme\\\":\\\"ten_annual_vip\\\",\\\"path\\\":\\\"\\\",\\\"text\\\":\\\"十年大会员\\\"},\\\"nickname_color\\\":\\\"#FB7299\\\",\\\"status\\\":1,\\\"theme_type\\\":0,\\\"type\\\":2,\\\"vip_pay_type\\\":0}}}\", \"origin_extension\": { \"lott\": \"{\\\"callbackId\\\":10,\\\"lottery_id\\\":61382,\\\"lottery_time\\\":1620504000,\\\"title\\\":\\\"互动抽奖\\\"}\" }, \"origin_extend_json\": \"{\\\"ctrl\\\":[{\\\"data\\\":\\\"5\\\",\\\"length\\\":0,\\\"location\\\":0,\\\"type\\\":2}],\\\"from\\\":{\\\"emoji_type\\\":1,\\\"from\\\":\\\"\\\",\\\"up_close_comment\\\":0,\\\"verify\\\":{\\\"asw\\\":{\\\"fl\\\":15,\\\"nv\\\":1},\\\"cc\\\":{\\\"vf\\\":1},\\\"sw\\\":{\\\"fl\\\":15,\\\"nv\\\":1}}},\\\"like_icon\\\":{\\\"action\\\":\\\"\\\",\\\"action_url\\\":\\\"\\\",\\\"end\\\":\\\"\\\",\\\"end_url\\\":\\\"\\\",\\\"start\\\":\\\"\\\",\\\"start_url\\\":\\\"\\\"},\\\"lott\\\":{\\\"callbackId\\\":10,\\\"lottery_id\\\":61382,\\\"lottery_time\\\":1620504000,\\\"title\\\":\\\"互动抽奖\\\"},\\\"topic\\\":{\\\"is_attach_topic\\\":1}}\", \"origin_user\": { \"info\": { \"uid\": 326499679, \"uname\": \"哔哩哔哩漫画\", \"face\": \"https:\\/\\/i1.hdslb.com\\/bfs\\/face\\/2254162161a60b528cfec449f3450409a81ebc37.jpg\" }, \"card\": { \"official_verify\": { \"type\": 1, \"desc\": \"哔哩哔哩漫画官方账号\" } }, \"vip\": { \"vipType\": 2, \"vipDueDate\": 1941033600000, \"vipStatus\": 1, \"themeType\": 0, \"label\": { \"path\": \"\", \"text\": \"十年大会员\", \"label_theme\": \"ten_annual_vip\", \"text_color\": \"#FFFFFF\", \"bg_style\": 1, \"bg_color\": \"#FB7299\", \"border_color\": \"\" }, \"avatar_subscript\": 1, \"nickname_color\": \"#FB7299\", \"role\": 7, \"avatar_subscript_url\": \"https:\\/\\/i0.hdslb.com\\/bfs\\/vip\\/icon_Certification_big_member_22_3x.png\" }, \"pendant\": { \"pid\": 0, \"name\": \"\", \"image\": \"\", \"expire\": 0, \"image_enhance\": \"\", \"image_enhance_frame\": \"\" }, \"rank\": \"10000\", \"sign\": \"↑ 【关注漫画姬】就送【漫读券5张】,当日或次日登录哔哩哔哩漫画APP即可领取,快来关注领券吧(°∀°)ノ ↑\", \"level_info\": { \"current_level\": 6 } } }",
- "extend_json": "{\"from\":{\"emoji_type\":1,\"from\":\"create.comment\",\"up_close_comment\":0},\"like_icon\":{\"action\":\"\",\"action_url\":\"\",\"end\":\"\",\"end_url\":\"\",\"start\":\"\",\"start_url\":\"\"},\"topic\":{\"is_attach_topic\":1}}",
- "display": {
- "topic_info": {
- "topic_details": [
- {
- "topic_id": 7539944,
- "topic_name": "哔哩哔哩漫画",
- "is_activity": 0,
- "topic_link": ""
- }
- ]
- },
- "origin": {
- "topic_info": {
- "topic_details": [
- {
- "topic_id": 7539944,
- "topic_name": "哔哩哔哩漫画",
- "is_activity": 0,
- "topic_link": ""
- }
- ]
- },
- "emoji_info": {
- "emoji_details": [
- {
- "emoji_name": "[干杯]",
- "id": 1949,
- "package_id": 1,
- "state": 0,
- "type": 1,
- "attr": 0,
- "text": "[干杯]",
- "url": "https://i0.hdslb.com/bfs/emote/8da12d5f55a2c7e9778dcc05b40571979fe208e6.png",
- "meta": {
- "size": 1
- },
- "mtime": 1597738918
- }
- ]
- },
- "relation": {
- "status": 1,
- "is_follow": 0,
- "is_followed": 0
- },
- "show_tip": {
- "del_tip": "要删除动态吗?"
- }
- },
- "relation": {
- "status": 1,
- "is_follow": 0,
- "is_followed": 0
- },
- "up_act_button": {
- "report_title": "举报",
- "founder_report_title": "举报(发起人)",
- "top_title": "置顶",
- "top_confirm_title": "确定将此动态置顶吗",
- "top_cancel_title": "确定将此动态取消置顶吗"
- },
- "show_tip": {
- "del_tip": "要删除动态吗?"
- }
- }
- },
- {
- "desc": {
- "uid": 1365116,
- "type": 1,
- "rid": 517503525787575777,
- "acl": 0,
- "view": 2,
- "repost": 0,
- "comment": 0,
- "like": 0,
- "is_liked": 0,
- "dynamic_id": 517503525779637979,
- "timestamp": 1619329079,
- "pre_dy_id": 517241610091321208,
- "orig_dy_id": 517241610091321208,
- "orig_type": 2,
- "user_profile": {
- "info": {
- "uid": 1365116,
- "uname": "濑户的海参",
- "face": "https://i2.hdslb.com/bfs/face/8426c61be9c3ccd2296d080a54691c3bed5f2f9f.jpg"
- },
- "card": {
- "official_verify": {
- "type": -1,
- "desc": ""
- }
- },
- "vip": {
- "vipType": 0,
- "vipDueDate": 0,
- "vipStatus": 0,
- "themeType": 0,
- "label": {
- "path": "",
- "text": "",
- "label_theme": "",
- "text_color": "",
- "bg_style": 0,
- "bg_color": "",
- "border_color": ""
- },
- "avatar_subscript": 0,
- "nickname_color": "",
- "role": 0,
- "avatar_subscript_url": ""
- },
- "pendant": {
- "pid": 0,
- "name": "",
- "image": "",
- "expire": 0,
- "image_enhance": "",
- "image_enhance_frame": ""
- },
- "rank": "10000",
- "sign": "",
- "level_info": {
- "current_level": 5
- }
- },
- "uid_type": 1,
- "recommend_info": {
- "is_attention": 0
- },
- "stype": 0,
- "r_type": 1,
- "inner_id": 0,
- "topic_board": "C",
- "topic_board_desc": "最新",
- "status": 1,
- "dynamic_id_str": "517503525779637979",
- "pre_dy_id_str": "517241610091321208",
- "orig_dy_id_str": "517241610091321208",
- "rid_str": "517503525787575777",
- "origin": {
- "uid": 326499679,
- "type": 2,
- "rid": 131403515,
- "acl": 1024,
- "view": 1962092,
- "repost": 16607,
- "dynamic_id": 517241610091321208,
- "timestamp": 1619268097,
- "uid_type": 1,
- "r_type": 1,
- "status": 1,
- "dynamic_id_str": "517241610091321208",
- "pre_dy_id_str": "0",
- "orig_dy_id_str": "0",
- "rid_str": "131403515"
- }
- },
- "card": "{ \"user\": { \"uid\": 1365116, \"uname\": \"濑户的海参\", \"face\": \"https:\\/\\/i2.hdslb.com\\/bfs\\/face\\/8426c61be9c3ccd2296d080a54691c3bed5f2f9f.jpg\" }, \"item\": { \"rp_id\": 517503525787575777, \"uid\": 1365116, \"content\": \"嗯哼#哔哩哔哩漫画#\", \"orig_dy_id\": 517241610091321208, \"pre_dy_id\": 517241610091321208, \"timestamp\": 1619329079, \"reply\": 0, \"orig_type\": 2 }, \"origin\": \"{\\\"item\\\":{\\\"at_control\\\":\\\"[{\\\\\\\"type\\\\\\\":2,\\\\\\\"location\\\\\\\":0,\\\\\\\"length\\\\\\\":0,\\\\\\\"data\\\\\\\":\\\\\\\"5\\\\\\\"}]\\\",\\\"category\\\":\\\"daily\\\",\\\"description\\\":\\\"互动抽奖 【关+转】抽1位小伙伴送【哔哩哔哩小电视兔子包】~\\\\n【#哔哩哔哩漫画# 作品推荐】大量西幻少女漫爆更来啦———\\\\n[干杯] 即日起,《重生成为公爵家的丑女》《暴君的监护人是反派魔女》《姐姐捡回了男主》等大量西幻少女精品漫画爆更,追漫更有樱花立牌\\\\\\/玩偶等福利好礼相送!\\\\n[干杯] 快来哔哩哔哩漫画追漫吧~\\\",\\\"id\\\":131403515,\\\"is_fav\\\":0,\\\"pictures\\\":[{\\\"img_height\\\":1357,\\\"img_size\\\":1759.1650390625,\\\"img_src\\\":\\\"https:\\\\\\/\\\\\\/i0.hdslb.com\\\\\\/bfs\\\\\\/album\\\\\\/1ce565e7f36e0ae5a3809df21bb39aa2fe578a88.png\\\",\\\"img_tags\\\":null,\\\"img_width\\\":1080},{\\\"img_height\\\":1238,\\\"img_size\\\":832.51953125,\\\"img_src\\\":\\\"https:\\\\\\/\\\\\\/i0.hdslb.com\\\\\\/bfs\\\\\\/album\\\\\\/6df0150c77a7f42a5d31cce8bb006105a660dad9.png\\\",\\\"img_tags\\\":null,\\\"img_width\\\":1080},{\\\"img_height\\\":2193,\\\"img_size\\\":3424.060546875,\\\"img_src\\\":\\\"https:\\\\\\/\\\\\\/i0.hdslb.com\\\\\\/bfs\\\\\\/album\\\\\\/adce81c59436184b56d84e5394583d2ab491b2e6.png\\\",\\\"img_tags\\\":null,\\\"img_width\\\":1080},{\\\"img_height\\\":800,\\\"img_size\\\":166.1552734375,\\\"img_src\\\":\\\"https:\\\\\\/\\\\\\/i0.hdslb.com\\\\\\/bfs\\\\\\/album\\\\\\/9c4e8d6fc04d5a1f3df225d5967fb65c7a3f5f09.jpg\\\",\\\"img_tags\\\":null,\\\"img_width\\\":800}],\\\"pictures_count\\\":4,\\\"reply\\\":1020,\\\"role\\\":[],\\\"settings\\\":{\\\"copy_forbidden\\\":\\\"0\\\"},\\\"source\\\":[],\\\"title\\\":\\\"\\\",\\\"upload_time\\\":1619268097},\\\"user\\\":{\\\"head_url\\\":\\\"https:\\\\\\/\\\\\\/i1.hdslb.com\\\\\\/bfs\\\\\\/face\\\\\\/2254162161a60b528cfec449f3450409a81ebc37.jpg\\\",\\\"name\\\":\\\"哔哩哔哩漫画\\\",\\\"uid\\\":326499679,\\\"vip\\\":{\\\"avatar_subscript\\\":1,\\\"due_date\\\":1941033600000,\\\"label\\\":{\\\"label_theme\\\":\\\"ten_annual_vip\\\",\\\"path\\\":\\\"\\\",\\\"text\\\":\\\"十年大会员\\\"},\\\"nickname_color\\\":\\\"#FB7299\\\",\\\"status\\\":1,\\\"theme_type\\\":0,\\\"type\\\":2,\\\"vip_pay_type\\\":0}}}\", \"origin_extension\": { \"lott\": \"{\\\"callbackId\\\":10,\\\"lottery_id\\\":61382,\\\"lottery_time\\\":1620504000,\\\"title\\\":\\\"互动抽奖\\\"}\" }, \"origin_extend_json\": \"{\\\"ctrl\\\":[{\\\"data\\\":\\\"5\\\",\\\"length\\\":0,\\\"location\\\":0,\\\"type\\\":2}],\\\"from\\\":{\\\"emoji_type\\\":1,\\\"from\\\":\\\"\\\",\\\"up_close_comment\\\":0,\\\"verify\\\":{\\\"asw\\\":{\\\"fl\\\":15,\\\"nv\\\":1},\\\"cc\\\":{\\\"vf\\\":1},\\\"sw\\\":{\\\"fl\\\":15,\\\"nv\\\":1}}},\\\"like_icon\\\":{\\\"action\\\":\\\"\\\",\\\"action_url\\\":\\\"\\\",\\\"end\\\":\\\"\\\",\\\"end_url\\\":\\\"\\\",\\\"start\\\":\\\"\\\",\\\"start_url\\\":\\\"\\\"},\\\"lott\\\":{\\\"callbackId\\\":10,\\\"lottery_id\\\":61382,\\\"lottery_time\\\":1620504000,\\\"title\\\":\\\"互动抽奖\\\"},\\\"topic\\\":{\\\"is_attach_topic\\\":1}}\", \"origin_user\": { \"info\": { \"uid\": 326499679, \"uname\": \"哔哩哔哩漫画\", \"face\": \"https:\\/\\/i1.hdslb.com\\/bfs\\/face\\/2254162161a60b528cfec449f3450409a81ebc37.jpg\" }, \"card\": { \"official_verify\": { \"type\": 1, \"desc\": \"哔哩哔哩漫画官方账号\" } }, \"vip\": { \"vipType\": 2, \"vipDueDate\": 1941033600000, \"vipStatus\": 1, \"themeType\": 0, \"label\": { \"path\": \"\", \"text\": \"十年大会员\", \"label_theme\": \"ten_annual_vip\", \"text_color\": \"#FFFFFF\", \"bg_style\": 1, \"bg_color\": \"#FB7299\", \"border_color\": \"\" }, \"avatar_subscript\": 1, \"nickname_color\": \"#FB7299\", \"role\": 7, \"avatar_subscript_url\": \"https:\\/\\/i0.hdslb.com\\/bfs\\/vip\\/icon_Certification_big_member_22_3x.png\" }, \"pendant\": { \"pid\": 0, \"name\": \"\", \"image\": \"\", \"expire\": 0, \"image_enhance\": \"\", \"image_enhance_frame\": \"\" }, \"rank\": \"10000\", \"sign\": \"↑ 【关注漫画姬】就送【漫读券5张】,当日或次日登录哔哩哔哩漫画APP即可领取,快来关注领券吧(°∀°)ノ ↑\", \"level_info\": { \"current_level\": 6 } } }",
- "extend_json": "{\"from\":{\"emoji_type\":1,\"from\":\"create.comment\",\"up_close_comment\":0},\"like_icon\":{\"action\":\"\",\"action_url\":\"\",\"end\":\"\",\"end_url\":\"\",\"start\":\"\",\"start_url\":\"\"},\"topic\":{\"is_attach_topic\":1}}",
- "display": {
- "topic_info": {
- "topic_details": [
- {
- "topic_id": 7539944,
- "topic_name": "哔哩哔哩漫画",
- "is_activity": 0,
- "topic_link": ""
- }
- ]
- },
- "origin": {
- "topic_info": {
- "topic_details": [
- {
- "topic_id": 7539944,
- "topic_name": "哔哩哔哩漫画",
- "is_activity": 0,
- "topic_link": ""
- }
- ]
- },
- "emoji_info": {
- "emoji_details": [
- {
- "emoji_name": "[干杯]",
- "id": 1949,
- "package_id": 1,
- "state": 0,
- "type": 1,
- "attr": 0,
- "text": "[干杯]",
- "url": "https://i0.hdslb.com/bfs/emote/8da12d5f55a2c7e9778dcc05b40571979fe208e6.png",
- "meta": {
- "size": 1
- },
- "mtime": 1597738918
- }
- ]
- },
- "relation": {
- "status": 1,
- "is_follow": 0,
- "is_followed": 0
- },
- "show_tip": {
- "del_tip": "要删除动态吗?"
- }
- },
- "relation": {
- "status": 1,
- "is_follow": 0,
- "is_followed": 0
- },
- "up_act_button": {
- "report_title": "举报",
- "founder_report_title": "举报(发起人)",
- "top_title": "置顶",
- "top_confirm_title": "确定将此动态置顶吗",
- "top_cancel_title": "确定将此动态取消置顶吗"
- },
- "show_tip": {
- "del_tip": "要删除动态吗?"
- }
- }
- },
- {
- "desc": {
- "uid": 326499679,
- "type": 2,
- "rid": 131489076,
- "acl": 0,
- "view": 1429218,
- "repost": 34,
- "comment": 23,
- "like": 3872,
- "is_liked": 0,
- "dynamic_id": 517501494260096644,
- "timestamp": 1619328606,
- "pre_dy_id": 0,
- "orig_dy_id": 0,
- "orig_type": 0,
- "user_profile": {
- "info": {
- "uid": 326499679,
- "uname": "哔哩哔哩漫画",
- "face": "https://i1.hdslb.com/bfs/face/2254162161a60b528cfec449f3450409a81ebc37.jpg"
- },
- "card": {
- "official_verify": {
- "type": 1,
- "desc": "哔哩哔哩漫画官方账号"
- }
- },
- "vip": {
- "vipType": 2,
- "vipDueDate": 1941033600000,
- "vipStatus": 1,
- "themeType": 0,
- "label": {
- "path": "",
- "text": "十年大会员",
- "label_theme": "ten_annual_vip",
- "text_color": "#FFFFFF",
- "bg_style": 1,
- "bg_color": "#FB7299",
- "border_color": ""
- },
- "avatar_subscript": 1,
- "nickname_color": "#FB7299",
- "role": 7,
- "avatar_subscript_url": "https://i0.hdslb.com/bfs/vip/icon_Certification_big_member_22_3x.png"
- },
- "pendant": {
- "pid": 0,
- "name": "",
- "image": "",
- "expire": 0,
- "image_enhance": "",
- "image_enhance_frame": ""
- },
- "rank": "10000",
- "sign": "↑ 【关注漫画姬】就送【漫读券5张】,当日或次日登录哔哩哔哩漫画APP即可领取,快来关注领券吧(°∀°)ノ ↑",
- "level_info": {
- "current_level": 6
- }
- },
- "uid_type": 1,
- "recommend_info": {
- "is_attention": 0
- },
- "stype": 0,
- "r_type": 1,
- "inner_id": 0,
- "topic_board": "C",
- "topic_board_desc": "最新",
- "status": 1,
- "dynamic_id_str": "517501494260096644",
- "pre_dy_id_str": "0",
- "orig_dy_id_str": "0",
- "rid_str": "131489076"
- },
- "card": "{\"item\":{\"at_control\":\"\",\"category\":\"daily\",\"description\":\"【#哔哩哔哩漫画# 限免活动+周边路透】✿ヽ(°▽°)ノ✿ \\n《#天宝伏妖录#》漫画第二卷将在【4月25日至5月2日】限时免费1周[打call][打call],感谢大家一直以来的支持[W-哈哈]!精彩剧情,不容错过!\\n同时之前《#天宝伏妖录#》第三卷活动售卖的周边近期在准备开补款啦~\\n小伙伴们先看看限定周边的实物图透叭(P1-P8)[打call]! 新卷也一直在筹备中,新卷封面同时奉上(P9)! \\n【追漫传送】:https:\\/\\/manga.bilibili.com\\/m\\/detail\\/mc27592 \",\"id\":131489076,\"is_fav\":0,\"pictures\":[{\"img_height\":5046,\"img_size\":16654.3876953125,\"img_src\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/album\\/6bcd7a96fe7bc616a7ea334319b58a3ab451cda2.jpg\",\"img_tags\":null,\"img_width\":6728},{\"img_height\":5046,\"img_size\":15713.2236328125,\"img_src\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/album\\/41e9e8ed2f181ce84adbb1175dcfc47b6b32d270.jpg\",\"img_tags\":null,\"img_width\":6728},{\"img_height\":5136,\"img_size\":20368.2822265625,\"img_src\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/album\\/81936f0dacc1fa63264d18cdba738b3582562cdd.jpg\",\"img_tags\":null,\"img_width\":7705},{\"img_height\":4427,\"img_size\":15909.310546875,\"img_src\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/album\\/5116024add807a033cf63395683c5b6ade28fbcf.jpg\",\"img_tags\":null,\"img_width\":6641},{\"img_height\":5136,\"img_size\":20431.3994140625,\"img_src\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/album\\/61155f325c5a862b0dcdb1dacc95f252ac768a4e.jpg\",\"img_tags\":null,\"img_width\":7705},{\"img_height\":5261,\"img_size\":19335.5029296875,\"img_src\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/album\\/6f5a7241d8f0093952edf16195b4d0aecfa2c6cd.jpg\",\"img_tags\":null,\"img_width\":7014},{\"img_height\":1408,\"img_size\":4784.3037109375,\"img_src\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/album\\/0350c791822a980d72450da226b1d61fa7b68c8f.png\",\"img_tags\":null,\"img_width\":1878},{\"img_height\":1408,\"img_size\":4614.8251953125,\"img_src\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/album\\/271187137e9973d07f01763a9a41b9b7f25f68fd.png\",\"img_tags\":null,\"img_width\":1878},{\"img_height\":3508,\"img_size\":1452.4482421875,\"img_src\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/album\\/f818bb197c7cc914ed4c921a6f7488f87ca15faf.jpg\",\"img_tags\":null,\"img_width\":2480}],\"pictures_count\":9,\"reply\":23,\"role\":[],\"settings\":{\"copy_forbidden\":\"0\"},\"source\":[],\"title\":\"\",\"upload_time\":1619328606},\"user\":{\"head_url\":\"https:\\/\\/i1.hdslb.com\\/bfs\\/face\\/2254162161a60b528cfec449f3450409a81ebc37.jpg\",\"name\":\"哔哩哔哩漫画\",\"uid\":326499679,\"vip\":{\"avatar_subscript\":1,\"due_date\":1941033600000,\"label\":{\"label_theme\":\"ten_annual_vip\",\"path\":\"\",\"text\":\"十年大会员\"},\"nickname_color\":\"#FB7299\",\"status\":1,\"theme_type\":0,\"type\":2,\"vip_pay_type\":0}}}",
- "extend_json": "{\"from\":{\"emoji_type\":1,\"from\":\"timer.publish\",\"up_close_comment\":0,\"verify\":{\"cc\":{\"nv\":1}}},\"like_icon\":{\"action\":\"\",\"action_url\":\"\",\"end\":\"\",\"end_url\":\"\",\"start\":\"\",\"start_url\":\"\"},\"topic\":{\"is_attach_topic\":1}}",
- "display": {
- "topic_info": {
- "topic_details": [
- {
- "topic_id": 7539944,
- "topic_name": "哔哩哔哩漫画",
- "is_activity": 0,
- "topic_link": ""
- },
- {
- "topic_id": 3812656,
- "topic_name": "天宝伏妖录",
- "is_activity": 1,
- "topic_link": "https://www.bilibili.com/blackboard/dynamic/62601"
- }
- ]
- },
- "emoji_info": {
- "emoji_details": [
- {
- "emoji_name": "[W-哈哈]",
- "id": 3045,
- "package_id": 1,
- "state": 0,
- "type": 1,
- "attr": 0,
- "text": "[W-哈哈]",
- "url": "https://i0.hdslb.com/bfs/emote/83d527303c8f62f494e6971c48836487e7d87b1b.png",
- "meta": {
- "size": 1
- },
- "mtime": 1608785082
- },
- {
- "emoji_name": "[打call]",
- "id": 510,
- "package_id": 1,
- "state": 0,
- "type": 1,
- "attr": 0,
- "text": "[打call]",
- "url": "https://i0.hdslb.com/bfs/emote/431432c43da3ee5aab5b0e4f8931953e649e9975.png",
- "meta": {
- "size": 1
- },
- "mtime": 1617293741
- }
- ]
- },
- "relation": {
- "status": 1,
- "is_follow": 0,
- "is_followed": 0
- },
- "up_act_button": {
- "report_title": "举报",
- "founder_report_title": "举报(发起人)",
- "top_title": "置顶",
- "top_confirm_title": "确定将此动态置顶吗",
- "top_cancel_title": "确定将此动态取消置顶吗"
- },
- "show_tip": {
- "del_tip": "要删除动态吗?"
- }
- }
- },
- {
- "desc": {
- "uid": 1902548007,
- "type": 2,
- "rid": 131480564,
- "acl": 0,
- "view": 1095,
- "repost": 0,
- "comment": 0,
- "like": 16,
- "is_liked": 0,
- "dynamic_id": 517482725259184156,
- "timestamp": 1619324236,
- "pre_dy_id": 0,
- "orig_dy_id": 0,
- "orig_type": 0,
- "user_profile": {
- "info": {
- "uid": 1902548007,
- "uname": "BV社",
- "face": "https://i0.hdslb.com/bfs/face/48f8e6afa688e37b9f1e3721a86bea8ce02688dc.jpg"
- },
- "card": {
- "official_verify": {
- "type": 1,
- "desc": "BV社官方账号"
- }
- },
- "vip": {
- "vipType": 0,
- "vipDueDate": 0,
- "vipStatus": 0,
- "themeType": 0,
- "label": {
- "path": "",
- "text": "",
- "label_theme": "",
- "text_color": "",
- "bg_style": 0,
- "bg_color": "",
- "border_color": ""
- },
- "avatar_subscript": 0,
- "nickname_color": "",
- "role": 0,
- "avatar_subscript_url": ""
- },
- "pendant": {
- "pid": 0,
- "name": "",
- "image": "",
- "expire": 0,
- "image_enhance": "",
- "image_enhance_frame": ""
- },
- "rank": "10000",
- "sign": "Vomic,让你爱的漫画更动听",
- "level_info": {
- "current_level": 2
- }
- },
- "uid_type": 1,
- "recommend_info": {
- "is_attention": 0
- },
- "stype": 0,
- "r_type": 1,
- "inner_id": 0,
- "topic_board": "C",
- "topic_board_desc": "最新",
- "status": 1,
- "dynamic_id_str": "517482725259184156",
- "pre_dy_id_str": "0",
- "orig_dy_id_str": "0",
- "rid_str": "131480564"
- },
- "card": "{\"item\":{\"at_control\":\"[{\\\"location\\\":122,\\\"type\\\":1,\\\"length\\\":8,\\\"data\\\":\\\"326499679\\\"},{\\\"location\\\":133,\\\"type\\\":1,\\\"length\\\":5,\\\"data\\\":\\\"1902548007\\\"},{\\\"location\\\":141,\\\"type\\\":1,\\\"length\\\":9,\\\"data\\\":\\\"386135764\\\"},{\\\"location\\\":153,\\\"type\\\":1,\\\"length\\\":6,\\\"data\\\":\\\"1740792\\\"}]\",\"category\":\"daily\",\"description\":\"#哔哩哔哩漫画#独家\\n“女鬼”找上门,却是为了救人?\\n“养尸地?那是啥?里面有宝贝嘛?”\\n“有凶尸。”\\n哟,父子俩这是什么情况?\\n惊奇 #Vomic##幽冥诡匠#第五集正式上线!每周日更新!更多精彩,小剧场,花絮,尽在哔哩哔哩漫画APP\\n出品:@哔哩哔哩漫画\\n策划:@BV社\\n制作:@回声漫响工作室\\n录制:@音熊联萌 \",\"id\":131480564,\"is_fav\":0,\"pictures\":[{\"img_height\":2400,\"img_size\":2852.115234375,\"img_src\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/album\\/cb7632509c8cb8a7703f5ab289320b26a07ec62e.jpg\",\"img_tags\":null,\"img_width\":2400}],\"pictures_count\":1,\"reply\":0,\"role\":[],\"settings\":{\"copy_forbidden\":\"0\"},\"source\":[],\"title\":\"\",\"upload_time\":1619324236},\"user\":{\"head_url\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/face\\/48f8e6afa688e37b9f1e3721a86bea8ce02688dc.jpg\",\"name\":\"BV社\",\"uid\":1902548007,\"vip\":{\"avatar_subscript\":0,\"due_date\":0,\"label\":{\"label_theme\":\"\",\"path\":\"\",\"text\":\"\"},\"nickname_color\":\"\",\"status\":0,\"theme_type\":0,\"type\":0,\"vip_pay_type\":0}}}",
- "extend_json": "{\"ctrl\":[{\"data\":\"326499679\",\"length\":8,\"location\":122,\"type\":1},{\"data\":\"1902548007\",\"length\":5,\"location\":133,\"type\":1},{\"data\":\"386135764\",\"length\":9,\"location\":141,\"type\":1},{\"data\":\"1740792\",\"length\":6,\"location\":153,\"type\":1}],\"from\":{\"emoji_type\":1,\"from\":\"create.dynamic.web\",\"up_close_comment\":0,\"verify\":{\"asw\":{\"fl\":15,\"nv\":1},\"sw\":{\"fl\":15,\"nv\":1}}},\"like_icon\":{\"action\":\"\",\"action_url\":\"\",\"end\":\"\",\"end_url\":\"\",\"start\":\"\",\"start_url\":\"\"},\"topic\":{\"is_attach_topic\":1}}",
- "display": {
- "topic_info": {
- "topic_details": [
- {
- "topic_id": 7539944,
- "topic_name": "哔哩哔哩漫画",
- "is_activity": 0,
- "topic_link": ""
- },
- {
- "topic_id": 3208432,
- "topic_name": "Vomic",
- "is_activity": 1,
- "topic_link": "https://www.bilibili.com/blackboard/dynamic/106426"
- },
- {
- "topic_id": 7128092,
- "topic_name": "幽冥诡匠",
- "is_activity": 1,
- "topic_link": "https://www.bilibili.com/blackboard/dynamic/42527"
- },
- {
- "topic_id": 37542,
- "topic_name": "VOMIC",
- "is_activity": 1,
- "topic_link": "https://www.bilibili.com/blackboard/dynamic/106283"
- },
- {
- "topic_id": 8972604,
- "topic_name": "vomic",
- "is_activity": 1,
- "topic_link": "https://www.bilibili.com/blackboard/dynamic/106766"
- }
- ]
- },
- "relation": {
- "status": 1,
- "is_follow": 0,
- "is_followed": 0
- },
- "up_act_button": {
- "report_title": "举报",
- "founder_report_title": "举报(发起人)",
- "top_title": "置顶",
- "top_confirm_title": "确定将此动态置顶吗",
- "top_cancel_title": "确定将此动态取消置顶吗"
- },
- "show_tip": {
- "del_tip": "要删除动态吗?"
- }
- }
- },
- {
- "desc": {
- "uid": 255495142,
- "type": 1,
- "rid": 517480856950088884,
- "acl": 0,
- "view": 344,
- "repost": 0,
- "comment": 0,
- "like": 0,
- "is_liked": 0,
- "dynamic_id": 517480856947349138,
- "timestamp": 1619323801,
- "pre_dy_id": 517479366596833835,
- "orig_dy_id": 517479366596833835,
- "orig_type": 2,
- "user_profile": {
- "info": {
- "uid": 255495142,
- "uname": "坐怀不乱登徒子",
- "face": "https://i1.hdslb.com/bfs/face/fa18d118f6c58da704400909743fb895c4c47627.jpg"
- },
- "card": {
- "official_verify": {
- "type": -1,
- "desc": ""
- }
- },
- "vip": {
- "vipType": 2,
- "vipDueDate": 1626451200000,
- "vipStatus": 1,
- "themeType": 0,
- "label": {
- "path": "",
- "text": "年度大会员",
- "label_theme": "annual_vip",
- "text_color": "#FFFFFF",
- "bg_style": 1,
- "bg_color": "#FB7299",
- "border_color": ""
- },
- "avatar_subscript": 1,
- "nickname_color": "#FB7299",
- "role": 3,
- "avatar_subscript_url": "https://i0.hdslb.com/bfs/vip/icon_Certification_big_member_22_3x.png"
- },
- "pendant": {
- "pid": 204,
- "name": "至高守护",
- "image": "https://i1.hdslb.com/bfs/face/88162662c23c2768c9e9e5c25017375685e83798.png",
- "expire": 0,
- "image_enhance": "https://i1.hdslb.com/bfs/face/88162662c23c2768c9e9e5c25017375685e83798.png",
- "image_enhance_frame": ""
- },
- "rank": "10000",
- "sign": "",
- "level_info": {
- "current_level": 5
- }
- },
- "uid_type": 1,
- "recommend_info": {
- "is_attention": 0
- },
- "stype": 0,
- "r_type": 1,
- "inner_id": 0,
- "topic_board": "C",
- "topic_board_desc": "最新",
- "status": 1,
- "dynamic_id_str": "517480856947349138",
- "pre_dy_id_str": "517479366596833835",
- "orig_dy_id_str": "517479366596833835",
- "rid_str": "517480856950088884",
- "origin": {
- "uid": 326499679,
- "type": 2,
- "rid": 131479206,
- "acl": 1024,
- "view": 1412747,
- "repost": 11488,
- "dynamic_id": 517479366596833835,
- "timestamp": 1619323454,
- "uid_type": 1,
- "r_type": 1,
- "status": 1,
- "dynamic_id_str": "517479366596833835",
- "pre_dy_id_str": "0",
- "orig_dy_id_str": "0",
- "rid_str": "131479206"
- }
- },
- "card": "{ \"user\": { \"uid\": 255495142, \"uname\": \"坐怀不乱登徒子\", \"face\": \"https:\\/\\/i1.hdslb.com\\/bfs\\/face\\/fa18d118f6c58da704400909743fb895c4c47627.jpg\" }, \"item\": { \"rp_id\": 517480856950088884, \"uid\": 255495142, \"content\": \"[doge]#哔哩哔哩漫画#,#AISHA#\", \"orig_dy_id\": 517479366596833835, \"pre_dy_id\": 517479366596833835, \"timestamp\": 1619323801, \"reply\": 0, \"orig_type\": 2 }, \"origin\": \"{\\\"item\\\":{\\\"at_control\\\":\\\"[{\\\\\\\"data\\\\\\\":\\\\\\\"5\\\\\\\",\\\\\\\"length\\\\\\\":0,\\\\\\\"location\\\\\\\":0,\\\\\\\"type\\\\\\\":2},{\\\\\\\"location\\\\\\\":19,\\\\\\\"type\\\\\\\":1,\\\\\\\"length\\\\\\\":8,\\\\\\\"data\\\\\\\":\\\\\\\"1425490690\\\\\\\"}]\\\",\\\"category\\\":\\\"daily\\\",\\\"description\\\":\\\"互动抽奖 关+转,抽3位幸运小伙伴送@漫画家法吉特 【《逆光》画集作者签名版】~\\\\n #哔哩哔哩漫画#重磅安利之《#AISHA#》\\\\n当当当当!剧情党福音~\\\\n答题就有机会赢得礼物?还有法吉特太太亲签精美画集?\\\\n活动入口→https:\\\\\\/\\\\\\/www.bilibili.com\\\\\\/blackboard\\\\\\/topic\\\\\\/activity-oPISh007wv.html\\\\n\\\\n你以为这样就结束了了吗?\\\\nNONONO~\\\\n法吉特老师首次出版个人作品集《逆光》~商城4月25日0点首发开售!\\\\n有法吉特老师签名版掉落哦!随书额外附赠专属书签特典!\\\\n活动指路:哔哩哔哩漫画APP-我的-商城-banner\\\",\\\"id\\\":131479206,\\\"is_fav\\\":0,\\\"pictures\\\":[{\\\"img_height\\\":782,\\\"img_size\\\":1097.2451171875,\\\"img_src\\\":\\\"https:\\\\\\/\\\\\\/i0.hdslb.com\\\\\\/bfs\\\\\\/album\\\\\\/8965a784f77e2545f4f2f168df4f417ed3ace818.png\\\",\\\"img_tags\\\":null,\\\"img_width\\\":750}],\\\"pictures_count\\\":1,\\\"reply\\\":599,\\\"role\\\":[],\\\"settings\\\":{\\\"copy_forbidden\\\":\\\"0\\\"},\\\"source\\\":[],\\\"title\\\":\\\"\\\",\\\"upload_time\\\":1619323454},\\\"user\\\":{\\\"head_url\\\":\\\"https:\\\\\\/\\\\\\/i1.hdslb.com\\\\\\/bfs\\\\\\/face\\\\\\/2254162161a60b528cfec449f3450409a81ebc37.jpg\\\",\\\"name\\\":\\\"哔哩哔哩漫画\\\",\\\"uid\\\":326499679,\\\"vip\\\":{\\\"avatar_subscript\\\":1,\\\"due_date\\\":1941033600000,\\\"label\\\":{\\\"label_theme\\\":\\\"ten_annual_vip\\\",\\\"path\\\":\\\"\\\",\\\"text\\\":\\\"十年大会员\\\"},\\\"nickname_color\\\":\\\"#FB7299\\\",\\\"status\\\":1,\\\"theme_type\\\":0,\\\"type\\\":2,\\\"vip_pay_type\\\":0}}}\", \"origin_extension\": { \"lott\": \"{\\\"lottery_id\\\":61398}\" }, \"origin_extend_json\": \"{\\\"ctrl\\\":[{\\\"data\\\":\\\"5\\\",\\\"length\\\":0,\\\"location\\\":0,\\\"type\\\":2},{\\\"data\\\":\\\"1425490690\\\",\\\"length\\\":8,\\\"location\\\":19,\\\"type\\\":1}],\\\"from\\\":{\\\"emoji_type\\\":1,\\\"from\\\":\\\"create.dynamic.web\\\",\\\"up_close_comment\\\":0,\\\"verify\\\":{\\\"asw\\\":{\\\"fl\\\":15,\\\"nv\\\":1},\\\"cc\\\":{\\\"vf\\\":1},\\\"sw\\\":{\\\"fl\\\":15,\\\"nv\\\":1}}},\\\"like_icon\\\":{\\\"action\\\":\\\"\\\",\\\"action_url\\\":\\\"\\\",\\\"end\\\":\\\"\\\",\\\"end_url\\\":\\\"\\\",\\\"start\\\":\\\"\\\",\\\"start_url\\\":\\\"\\\"},\\\"lott\\\":{\\\"lottery_id\\\":61398},\\\"topic\\\":{\\\"is_attach_topic\\\":1}}\", \"origin_user\": { \"info\": { \"uid\": 326499679, \"uname\": \"哔哩哔哩漫画\", \"face\": \"https:\\/\\/i1.hdslb.com\\/bfs\\/face\\/2254162161a60b528cfec449f3450409a81ebc37.jpg\" }, \"card\": { \"official_verify\": { \"type\": 1, \"desc\": \"哔哩哔哩漫画官方账号\" } }, \"vip\": { \"vipType\": 2, \"vipDueDate\": 1941033600000, \"vipStatus\": 1, \"themeType\": 0, \"label\": { \"path\": \"\", \"text\": \"十年大会员\", \"label_theme\": \"ten_annual_vip\", \"text_color\": \"#FFFFFF\", \"bg_style\": 1, \"bg_color\": \"#FB7299\", \"border_color\": \"\" }, \"avatar_subscript\": 1, \"nickname_color\": \"#FB7299\", \"role\": 7, \"avatar_subscript_url\": \"https:\\/\\/i0.hdslb.com\\/bfs\\/vip\\/icon_Certification_big_member_22_3x.png\" }, \"pendant\": { \"pid\": 0, \"name\": \"\", \"image\": \"\", \"expire\": 0, \"image_enhance\": \"\", \"image_enhance_frame\": \"\" }, \"rank\": \"10000\", \"sign\": \"↑ 【关注漫画姬】就送【漫读券5张】,当日或次日登录哔哩哔哩漫画APP即可领取,快来关注领券吧(°∀°)ノ ↑\", \"level_info\": { \"current_level\": 6 } } }",
- "extend_json": "{\"from\":{\"emoji_type\":1,\"from\":\"create.comment\",\"up_close_comment\":0},\"like_icon\":{\"action\":\"\",\"action_url\":\"\",\"end\":\"\",\"end_url\":\"\",\"start\":\"\",\"start_url\":\"\"},\"topic\":{\"is_attach_topic\":1}}",
- "display": {
- "topic_info": {
- "topic_details": [
- {
- "topic_id": 7539944,
- "topic_name": "哔哩哔哩漫画",
- "is_activity": 0,
- "topic_link": ""
- },
- {
- "topic_id": 148830,
- "topic_name": "AISHA",
- "is_activity": 1,
- "topic_link": "https://www.bilibili.com/blackboard/dynamic/18159"
- },
- {
- "topic_id": 2514603,
- "topic_name": "aisha",
- "is_activity": 0,
- "topic_link": ""
- }
- ]
- },
- "origin": {
- "topic_info": {
- "topic_details": [
- {
- "topic_id": 7539944,
- "topic_name": "哔哩哔哩漫画",
- "is_activity": 0,
- "topic_link": ""
- },
- {
- "topic_id": 148830,
- "topic_name": "AISHA",
- "is_activity": 1,
- "topic_link": "https://www.bilibili.com/blackboard/dynamic/18159"
- },
- {
- "topic_id": 2514603,
- "topic_name": "aisha",
- "is_activity": 0,
- "topic_link": ""
- }
- ]
- },
- "relation": {
- "status": 1,
- "is_follow": 0,
- "is_followed": 0
- },
- "show_tip": {
- "del_tip": "要删除动态吗?"
- }
- },
- "emoji_info": {
- "emoji_details": [
- {
- "emoji_name": "[doge]",
- "id": 26,
- "package_id": 1,
- "state": 0,
- "type": 1,
- "attr": 0,
- "text": "[doge]",
- "url": "https://i0.hdslb.com/bfs/emote/3087d273a78ccaff4bb1e9972e2ba2a7583c9f11.png",
- "meta": {
- "size": 1
- },
- "mtime": 1617293741
- }
- ]
- },
- "relation": {
- "status": 1,
- "is_follow": 0,
- "is_followed": 0
- },
- "up_act_button": {
- "report_title": "举报",
- "founder_report_title": "举报(发起人)",
- "top_title": "置顶",
- "top_confirm_title": "确定将此动态置顶吗",
- "top_cancel_title": "确定将此动态取消置顶吗"
- },
- "show_tip": {
- "del_tip": "要删除动态吗?"
- }
- }
- },
- {
- "desc": {
- "uid": 326499679,
- "type": 2,
- "rid": 131479206,
- "acl": 1024,
- "view": 1412747,
- "repost": 11488,
- "comment": 599,
- "like": 6530,
- "is_liked": 0,
- "dynamic_id": 517479366596833835,
- "timestamp": 1619323454,
- "orig_type": 0,
- "user_profile": {
- "info": {
- "uid": 326499679,
- "uname": "哔哩哔哩漫画",
- "face": "https://i1.hdslb.com/bfs/face/2254162161a60b528cfec449f3450409a81ebc37.jpg"
- },
- "card": {
- "official_verify": {
- "type": 1,
- "desc": "哔哩哔哩漫画官方账号"
- }
- },
- "vip": {
- "vipType": 2,
- "vipDueDate": 1941033600000,
- "vipStatus": 1,
- "themeType": 0,
- "label": {
- "path": "",
- "text": "十年大会员",
- "label_theme": "ten_annual_vip",
- "text_color": "#FFFFFF",
- "bg_style": 1,
- "bg_color": "#FB7299",
- "border_color": ""
- },
- "avatar_subscript": 1,
- "nickname_color": "#FB7299",
- "role": 7,
- "avatar_subscript_url": "https://i0.hdslb.com/bfs/vip/icon_Certification_big_member_22_3x.png"
- },
- "pendant": {
- "pid": 0,
- "name": "",
- "image": "",
- "expire": 0,
- "image_enhance": "",
- "image_enhance_frame": ""
- },
- "rank": "10000",
- "sign": "↑ 【关注漫画姬】就送【漫读券5张】,当日或次日登录哔哩哔哩漫画APP即可领取,快来关注领券吧(°∀°)ノ ↑",
- "level_info": {
- "current_level": 6
- }
- },
- "uid_type": 1,
- "recommend_info": {
- "is_attention": 0
- },
- "r_type": 1,
- "topic_board": "C",
- "topic_board_desc": "最新",
- "status": 1,
- "dynamic_id_str": "517479366596833835",
- "pre_dy_id_str": "0",
- "orig_dy_id_str": "0",
- "rid_str": "131479206"
- },
- "card": "{\"item\":{\"at_control\":\"[{\\\"data\\\":\\\"5\\\",\\\"length\\\":0,\\\"location\\\":0,\\\"type\\\":2},{\\\"location\\\":19,\\\"type\\\":1,\\\"length\\\":8,\\\"data\\\":\\\"1425490690\\\"}]\",\"category\":\"daily\",\"description\":\"互动抽奖 关+转,抽3位幸运小伙伴送@漫画家法吉特 【《逆光》画集作者签名版】~\\n #哔哩哔哩漫画#重磅安利之《#AISHA#》\\n当当当当!剧情党福音~\\n答题就有机会赢得礼物?还有法吉特太太亲签精美画集?\\n活动入口→https:\\/\\/www.bilibili.com\\/blackboard\\/topic\\/activity-oPISh007wv.html\\n\\n你以为这样就结束了了吗?\\nNONONO~\\n法吉特老师首次出版个人作品集《逆光》~商城4月25日0点首发开售!\\n有法吉特老师签名版掉落哦!随书额外附赠专属书签特典!\\n活动指路:哔哩哔哩漫画APP-我的-商城-banner\",\"id\":131479206,\"is_fav\":0,\"pictures\":[{\"img_height\":782,\"img_size\":1097.2451171875,\"img_src\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/album\\/8965a784f77e2545f4f2f168df4f417ed3ace818.png\",\"img_tags\":null,\"img_width\":750}],\"pictures_count\":1,\"reply\":599,\"role\":[],\"settings\":{\"copy_forbidden\":\"0\"},\"source\":[],\"title\":\"\",\"upload_time\":1619323454},\"user\":{\"head_url\":\"https:\\/\\/i1.hdslb.com\\/bfs\\/face\\/2254162161a60b528cfec449f3450409a81ebc37.jpg\",\"name\":\"哔哩哔哩漫画\",\"uid\":326499679,\"vip\":{\"avatar_subscript\":1,\"due_date\":1941033600000,\"label\":{\"label_theme\":\"ten_annual_vip\",\"path\":\"\",\"text\":\"十年大会员\"},\"nickname_color\":\"#FB7299\",\"status\":1,\"theme_type\":0,\"type\":2,\"vip_pay_type\":0}}}",
- "extension": {
- "lott": "{\"lottery_id\":61398}"
- },
- "extend_json": "{\"ctrl\":[{\"data\":\"5\",\"length\":0,\"location\":0,\"type\":2},{\"data\":\"1425490690\",\"length\":8,\"location\":19,\"type\":1}],\"from\":{\"emoji_type\":1,\"from\":\"create.dynamic.web\",\"up_close_comment\":0,\"verify\":{\"asw\":{\"fl\":15,\"nv\":1},\"cc\":{\"vf\":1},\"sw\":{\"fl\":15,\"nv\":1}}},\"like_icon\":{\"action\":\"\",\"action_url\":\"\",\"end\":\"\",\"end_url\":\"\",\"start\":\"\",\"start_url\":\"\"},\"lott\":{\"lottery_id\":61398},\"topic\":{\"is_attach_topic\":1}}",
- "display": {
- "topic_info": {
- "topic_details": [
- {
- "topic_id": 7539944,
- "topic_name": "哔哩哔哩漫画",
- "is_activity": 0,
- "topic_link": ""
- },
- {
- "topic_id": 148830,
- "topic_name": "AISHA",
- "is_activity": 1,
- "topic_link": "https://www.bilibili.com/blackboard/dynamic/18159"
- },
- {
- "topic_id": 2514603,
- "topic_name": "aisha",
- "is_activity": 0,
- "topic_link": ""
- }
- ]
- },
- "relation": {
- "status": 1,
- "is_follow": 0,
- "is_followed": 0
- },
- "up_act_button": {
- "report_title": "举报",
- "founder_report_title": "举报(发起人)",
- "top_title": "置顶",
- "top_confirm_title": "确定将此动态置顶吗",
- "top_cancel_title": "确定将此动态取消置顶吗"
- },
- "show_tip": {
- "del_tip": "要删除动态吗?"
- }
- }
- },
- {
- "desc": {
- "uid": 271873076,
- "type": 2,
- "rid": 131468623,
- "acl": 0,
- "view": 23,
- "repost": 0,
- "comment": 0,
- "like": 0,
- "is_liked": 0,
- "dynamic_id": 517452016241823721,
- "timestamp": 1619317086,
- "pre_dy_id": 0,
- "orig_dy_id": 0,
- "orig_type": 0,
- "user_profile": {
- "info": {
- "uid": 271873076,
- "uname": "爱乐果iLEGUO",
- "face": "https://i2.hdslb.com/bfs/face/fb79ac0f6de92c8ecc7d4cd1e958d19376c85fe8.jpg"
- },
- "card": {
- "official_verify": {
- "type": -1,
- "desc": ""
- }
- },
- "vip": {
- "vipType": 0,
- "vipDueDate": 0,
- "vipStatus": 0,
- "themeType": 0,
- "label": {
- "path": "",
- "text": "",
- "label_theme": "",
- "text_color": "",
- "bg_style": 0,
- "bg_color": "",
- "border_color": ""
- },
- "avatar_subscript": 0,
- "nickname_color": "",
- "role": 0,
- "avatar_subscript_url": ""
- },
- "pendant": {
- "pid": 0,
- "name": "",
- "image": "",
- "expire": 0,
- "image_enhance": "",
- "image_enhance_frame": ""
- },
- "rank": "10000",
- "sign": "龙俦纪+羞耻侠+妖怪IDOLS+偶像饲养手册+闪亮的家+神奇少年团+第8界+爱果系列+爱次元!研究社",
- "level_info": {
- "current_level": 4
- }
- },
- "uid_type": 1,
- "recommend_info": {
- "is_attention": 0
- },
- "stype": 0,
- "r_type": 1,
- "inner_id": 0,
- "topic_board": "C",
- "topic_board_desc": "最新",
- "status": 1,
- "dynamic_id_str": "517452016241823721",
- "pre_dy_id_str": "0",
- "orig_dy_id_str": "0",
- "rid_str": "131468623"
- },
- "card": "{\"item\":{\"at_control\":\"\",\"category\":\"daily\",\"description\":\"《龙俦纪》第99话4月25日更新!\\n高振采药遇险,竟然从悬崖上坠入万丈深渊?!!\\n苏郃首次展现能力,苏千屹又从苏郃身上发现了什么秘密?\\n《龙俦纪》正在好评连载中,逢“五”更新,欢迎追漫!\\n#哔哩哔哩漫画# https:\\/\\/manga.bilibili.com\\/m\\/detail\\/mc26014 \\n#宝藏漫画##爱乐果##漫画##二次元##古风##玄幻##二次元条漫# \",\"id\":131468623,\"is_fav\":0,\"pictures\":[{\"img_height\":720,\"img_size\":297.19140625,\"img_src\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/album\\/54e4f9e0c339f42484fcbe42cb7e7f69be4b87aa.jpg\",\"img_tags\":null,\"img_width\":1280}],\"pictures_count\":1,\"reply\":0,\"role\":[],\"settings\":{\"copy_forbidden\":\"0\"},\"source\":[],\"title\":\"\",\"upload_time\":1619317086},\"user\":{\"head_url\":\"https:\\/\\/i2.hdslb.com\\/bfs\\/face\\/fb79ac0f6de92c8ecc7d4cd1e958d19376c85fe8.jpg\",\"name\":\"爱乐果iLEGUO\",\"uid\":271873076,\"vip\":{\"avatar_subscript\":0,\"due_date\":0,\"label\":{\"label_theme\":\"\",\"path\":\"\",\"text\":\"\"},\"nickname_color\":\"\",\"status\":0,\"theme_type\":0,\"type\":0,\"vip_pay_type\":0}}}",
- "extend_json": "{\"from\":{\"emoji_type\":1,\"from\":\"timer.publish\",\"up_close_comment\":0,\"verify\":{}},\"like_icon\":{\"action\":\"\",\"action_url\":\"\",\"end\":\"\",\"end_url\":\"\",\"start\":\"\",\"start_url\":\"\"},\"topic\":{\"is_attach_topic\":1}}",
- "display": {
- "topic_info": {
- "topic_details": [
- {
- "topic_id": 7539944,
- "topic_name": "哔哩哔哩漫画",
- "is_activity": 0,
- "topic_link": ""
- },
- {
- "topic_id": 10182306,
- "topic_name": "宝藏漫画",
- "is_activity": 0,
- "topic_link": ""
- },
- {
- "topic_id": 9628017,
- "topic_name": "爱乐果",
- "is_activity": 0,
- "topic_link": ""
- },
- {
- "topic_id": 1184,
- "topic_name": "漫画",
- "is_activity": 0,
- "topic_link": ""
- },
- {
- "topic_id": 1907,
- "topic_name": "二次元",
- "is_activity": 1,
- "topic_link": "https://www.bilibili.com/blackboard/dynamic/7694"
- },
- {
- "topic_id": 8227,
- "topic_name": "古风",
- "is_activity": 0,
- "topic_link": ""
- },
- {
- "topic_id": 62935,
- "topic_name": "玄幻",
- "is_activity": 0,
- "topic_link": ""
- },
- {
- "topic_id": 12532729,
- "topic_name": "二次元条漫",
- "is_activity": 0,
- "topic_link": ""
- }
- ]
- },
- "relation": {
- "status": 1,
- "is_follow": 0,
- "is_followed": 0
- },
- "up_act_button": {
- "report_title": "举报",
- "founder_report_title": "举报(发起人)",
- "top_title": "置顶",
- "top_confirm_title": "确定将此动态置顶吗",
- "top_cancel_title": "确定将此动态取消置顶吗"
- },
- "show_tip": {
- "del_tip": "要删除动态吗?"
- }
- }
- },
- {
- "desc": {
- "uid": 1677019,
- "type": 1,
- "rid": 517443572335742626,
- "acl": 0,
- "view": 5,
- "repost": 0,
- "comment": 0,
- "like": 0,
- "is_liked": 0,
- "dynamic_id": 517443572332941328,
- "timestamp": 1619315120,
- "pre_dy_id": 517241610091321208,
- "orig_dy_id": 517241610091321208,
- "orig_type": 2,
- "user_profile": {
- "info": {
- "uid": 1677019,
- "uname": "逗妇卤",
- "face": "https://i1.hdslb.com/bfs/face/15a8f5d8c93f8f30bda71f192b92cfde2c76a1c7.jpg"
- },
- "card": {
- "official_verify": {
- "type": -1,
- "desc": ""
- }
- },
- "vip": {
- "vipType": 2,
- "vipDueDate": 1637510400000,
- "vipStatus": 1,
- "themeType": 0,
- "label": {
- "path": "",
- "text": "年度大会员",
- "label_theme": "annual_vip",
- "text_color": "#FFFFFF",
- "bg_style": 1,
- "bg_color": "#FB7299",
- "border_color": ""
- },
- "avatar_subscript": 1,
- "nickname_color": "#FB7299",
- "role": 3,
- "avatar_subscript_url": "https://i0.hdslb.com/bfs/vip/icon_Certification_big_member_22_3x.png"
- },
- "pendant": {
- "pid": 0,
- "name": "",
- "image": "",
- "expire": 0,
- "image_enhance": "",
- "image_enhance_frame": ""
- },
- "rank": "10000",
- "sign": "",
- "level_info": {
- "current_level": 5
- }
- },
- "uid_type": 1,
- "recommend_info": {
- "is_attention": 0
- },
- "stype": 0,
- "r_type": 1,
- "inner_id": 0,
- "topic_board": "C",
- "topic_board_desc": "最新",
- "status": 1,
- "dynamic_id_str": "517443572332941328",
- "pre_dy_id_str": "517241610091321208",
- "orig_dy_id_str": "517241610091321208",
- "rid_str": "517443572335742626",
- "origin": {
- "uid": 326499679,
- "type": 2,
- "rid": 131403515,
- "acl": 1024,
- "view": 1962092,
- "repost": 16607,
- "comment": 1020,
- "like": 7002,
- "is_liked": 0,
- "dynamic_id": 517241610091321208,
- "timestamp": 1619268097,
- "user_profile": {
- "info": {
- "uid": 326499679,
- "uname": "哔哩哔哩漫画",
- "face": "https://i1.hdslb.com/bfs/face/2254162161a60b528cfec449f3450409a81ebc37.jpg"
- },
- "card": {
- "official_verify": {
- "type": 1,
- "desc": "哔哩哔哩漫画官方账号"
- }
- },
- "vip": {
- "vipType": 2,
- "vipDueDate": 1941033600000,
- "vipStatus": 1,
- "themeType": 0,
- "label": {
- "path": "",
- "text": "十年大会员",
- "label_theme": "ten_annual_vip",
- "text_color": "#FFFFFF",
- "bg_style": 1,
- "bg_color": "#FB7299",
- "border_color": ""
- },
- "avatar_subscript": 1,
- "nickname_color": "#FB7299",
- "role": 7,
- "avatar_subscript_url": "https://i0.hdslb.com/bfs/vip/icon_Certification_big_member_22_3x.png"
- },
- "pendant": {
- "pid": 0,
- "name": "",
- "image": "",
- "expire": 0,
- "image_enhance": "",
- "image_enhance_frame": ""
- },
- "rank": "10000",
- "sign": "↑ 【关注漫画姬】就送【漫读券5张】,当日或次日登录哔哩哔哩漫画APP即可领取,快来关注领券吧(°∀°)ノ ↑",
- "level_info": {
- "current_level": 6
- }
- },
- "uid_type": 1,
- "r_type": 1,
- "status": 1,
- "dynamic_id_str": "517241610091321208",
- "pre_dy_id_str": "0",
- "orig_dy_id_str": "0",
- "rid_str": "131403515"
- }
- },
- "card": "{ \"user\": { \"uid\": 1677019, \"uname\": \"逗妇卤\", \"face\": \"https:\\/\\/i1.hdslb.com\\/bfs\\/face\\/15a8f5d8c93f8f30bda71f192b92cfde2c76a1c7.jpg\" }, \"item\": { \"rp_id\": 517443572335742626, \"uid\": 1677019, \"content\": \"【关+转】抽1位小伙伴送【哔哩哔哩小电视兔子包】~\\n【#哔哩哔哩漫画# 作品推荐】大量西幻少女漫爆更来啦———\\n[干杯] 即日起,《重生成为公爵家的丑女》《暴君的监护人是反派魔女》《姐姐捡回了男主》等大量西幻少女精品漫画爆更,追漫更有樱花立牌\\/玩偶等福利好礼相送!\\n[干杯] 快来哔哩哔哩漫画追漫吧~\", \"orig_dy_id\": 517241610091321208, \"pre_dy_id\": 517241610091321208, \"timestamp\": 1619315120, \"reply\": 0, \"orig_type\": 2 }, \"origin\": \"{\\\"item\\\":{\\\"at_control\\\":\\\"[{\\\\\\\"type\\\\\\\":2,\\\\\\\"location\\\\\\\":0,\\\\\\\"length\\\\\\\":0,\\\\\\\"data\\\\\\\":\\\\\\\"5\\\\\\\"}]\\\",\\\"category\\\":\\\"daily\\\",\\\"description\\\":\\\"互动抽奖 【关+转】抽1位小伙伴送【哔哩哔哩小电视兔子包】~\\\\n【#哔哩哔哩漫画# 作品推荐】大量西幻少女漫爆更来啦———\\\\n[干杯] 即日起,《重生成为公爵家的丑女》《暴君的监护人是反派魔女》《姐姐捡回了男主》等大量西幻少女精品漫画爆更,追漫更有樱花立牌\\\\\\/玩偶等福利好礼相送!\\\\n[干杯] 快来哔哩哔哩漫画追漫吧~\\\",\\\"id\\\":131403515,\\\"is_fav\\\":0,\\\"pictures\\\":[{\\\"img_height\\\":1357,\\\"img_size\\\":1759.1650390625,\\\"img_src\\\":\\\"https:\\\\\\/\\\\\\/i0.hdslb.com\\\\\\/bfs\\\\\\/album\\\\\\/1ce565e7f36e0ae5a3809df21bb39aa2fe578a88.png\\\",\\\"img_tags\\\":null,\\\"img_width\\\":1080},{\\\"img_height\\\":1238,\\\"img_size\\\":832.51953125,\\\"img_src\\\":\\\"https:\\\\\\/\\\\\\/i0.hdslb.com\\\\\\/bfs\\\\\\/album\\\\\\/6df0150c77a7f42a5d31cce8bb006105a660dad9.png\\\",\\\"img_tags\\\":null,\\\"img_width\\\":1080},{\\\"img_height\\\":2193,\\\"img_size\\\":3424.060546875,\\\"img_src\\\":\\\"https:\\\\\\/\\\\\\/i0.hdslb.com\\\\\\/bfs\\\\\\/album\\\\\\/adce81c59436184b56d84e5394583d2ab491b2e6.png\\\",\\\"img_tags\\\":null,\\\"img_width\\\":1080},{\\\"img_height\\\":800,\\\"img_size\\\":166.1552734375,\\\"img_src\\\":\\\"https:\\\\\\/\\\\\\/i0.hdslb.com\\\\\\/bfs\\\\\\/album\\\\\\/9c4e8d6fc04d5a1f3df225d5967fb65c7a3f5f09.jpg\\\",\\\"img_tags\\\":null,\\\"img_width\\\":800}],\\\"pictures_count\\\":4,\\\"reply\\\":1020,\\\"role\\\":[],\\\"settings\\\":{\\\"copy_forbidden\\\":\\\"0\\\"},\\\"source\\\":[],\\\"title\\\":\\\"\\\",\\\"upload_time\\\":1619268097},\\\"user\\\":{\\\"head_url\\\":\\\"https:\\\\\\/\\\\\\/i1.hdslb.com\\\\\\/bfs\\\\\\/face\\\\\\/2254162161a60b528cfec449f3450409a81ebc37.jpg\\\",\\\"name\\\":\\\"哔哩哔哩漫画\\\",\\\"uid\\\":326499679,\\\"vip\\\":{\\\"avatar_subscript\\\":1,\\\"due_date\\\":1941033600000,\\\"label\\\":{\\\"label_theme\\\":\\\"ten_annual_vip\\\",\\\"path\\\":\\\"\\\",\\\"text\\\":\\\"十年大会员\\\"},\\\"nickname_color\\\":\\\"#FB7299\\\",\\\"status\\\":1,\\\"theme_type\\\":0,\\\"type\\\":2,\\\"vip_pay_type\\\":0}}}\", \"origin_extension\": { \"lott\": \"{\\\"callbackId\\\":10,\\\"lottery_id\\\":61382,\\\"lottery_time\\\":1620504000,\\\"title\\\":\\\"互动抽奖\\\"}\" }, \"origin_extend_json\": \"{\\\"ctrl\\\":[{\\\"data\\\":\\\"5\\\",\\\"length\\\":0,\\\"location\\\":0,\\\"type\\\":2}],\\\"from\\\":{\\\"emoji_type\\\":1,\\\"from\\\":\\\"\\\",\\\"up_close_comment\\\":0,\\\"verify\\\":{\\\"asw\\\":{\\\"fl\\\":15,\\\"nv\\\":1},\\\"cc\\\":{\\\"vf\\\":1},\\\"sw\\\":{\\\"fl\\\":15,\\\"nv\\\":1}}},\\\"like_icon\\\":{\\\"action\\\":\\\"\\\",\\\"action_url\\\":\\\"\\\",\\\"end\\\":\\\"\\\",\\\"end_url\\\":\\\"\\\",\\\"start\\\":\\\"\\\",\\\"start_url\\\":\\\"\\\"},\\\"lott\\\":{\\\"callbackId\\\":10,\\\"lottery_id\\\":61382,\\\"lottery_time\\\":1620504000,\\\"title\\\":\\\"互动抽奖\\\"},\\\"topic\\\":{\\\"is_attach_topic\\\":1}}\", \"origin_user\": { \"info\": { \"uid\": 326499679, \"uname\": \"哔哩哔哩漫画\", \"face\": \"https:\\/\\/i1.hdslb.com\\/bfs\\/face\\/2254162161a60b528cfec449f3450409a81ebc37.jpg\" }, \"card\": { \"official_verify\": { \"type\": 1, \"desc\": \"哔哩哔哩漫画官方账号\" } }, \"vip\": { \"vipType\": 2, \"vipDueDate\": 1941033600000, \"vipStatus\": 1, \"themeType\": 0, \"label\": { \"path\": \"\", \"text\": \"十年大会员\", \"label_theme\": \"ten_annual_vip\", \"text_color\": \"#FFFFFF\", \"bg_style\": 1, \"bg_color\": \"#FB7299\", \"border_color\": \"\" }, \"avatar_subscript\": 1, \"nickname_color\": \"#FB7299\", \"role\": 7, \"avatar_subscript_url\": \"https:\\/\\/i0.hdslb.com\\/bfs\\/vip\\/icon_Certification_big_member_22_3x.png\" }, \"pendant\": { \"pid\": 0, \"name\": \"\", \"image\": \"\", \"expire\": 0, \"image_enhance\": \"\", \"image_enhance_frame\": \"\" }, \"rank\": \"10000\", \"sign\": \"↑ 【关注漫画姬】就送【漫读券5张】,当日或次日登录哔哩哔哩漫画APP即可领取,快来关注领券吧(°∀°)ノ ↑\", \"level_info\": { \"current_level\": 6 } } }",
- "extend_json": "{\"from\":{\"emoji_type\":1,\"up_close_comment\":0,\"verify\":{\"asw\":{\"fl\":15,\"nv\":1},\"sw\":{\"fl\":15,\"nv\":1}}},\"like_icon\":{\"action\":\"\",\"action_url\":\"\",\"end\":\"\",\"end_url\":\"\",\"start\":\"\",\"start_url\":\"\"},\"topic\":{\"is_attach_topic\":1}}",
- "display": {
- "topic_info": {
- "topic_details": [
- {
- "topic_id": 7539944,
- "topic_name": "哔哩哔哩漫画",
- "is_activity": 0,
- "topic_link": ""
- }
- ]
- },
- "origin": {
- "topic_info": {
- "topic_details": [
- {
- "topic_id": 7539944,
- "topic_name": "哔哩哔哩漫画",
- "is_activity": 0,
- "topic_link": ""
- }
- ]
- },
- "emoji_info": {
- "emoji_details": [
- {
- "emoji_name": "[干杯]",
- "id": 1949,
- "package_id": 1,
- "state": 0,
- "type": 1,
- "attr": 0,
- "text": "[干杯]",
- "url": "https://i0.hdslb.com/bfs/emote/8da12d5f55a2c7e9778dcc05b40571979fe208e6.png",
- "meta": {
- "size": 1
- },
- "mtime": 1597738918
- }
- ]
- },
- "relation": {
- "status": 1,
- "is_follow": 0,
- "is_followed": 0
- },
- "show_tip": {
- "del_tip": "要删除动态吗?"
- }
- },
- "emoji_info": {
- "emoji_details": [
- {
- "emoji_name": "[干杯]",
- "id": 1949,
- "package_id": 1,
- "state": 0,
- "type": 1,
- "attr": 0,
- "text": "[干杯]",
- "url": "https://i0.hdslb.com/bfs/emote/8da12d5f55a2c7e9778dcc05b40571979fe208e6.png",
- "meta": {
- "size": 1
- },
- "mtime": 1597738918
- }
- ]
- },
- "relation": {
- "status": 1,
- "is_follow": 0,
- "is_followed": 0
- },
- "up_act_button": {
- "report_title": "举报",
- "founder_report_title": "举报(发起人)",
- "top_title": "置顶",
- "top_confirm_title": "确定将此动态置顶吗",
- "top_cancel_title": "确定将此动态取消置顶吗"
- },
- "show_tip": {
- "del_tip": "要删除动态吗?"
- }
- }
- },
- {
- "desc": {
- "uid": 324540735,
- "type": 8,
- "rid": 672631542,
- "acl": 0,
- "view": 31,
- "repost": 0,
- "like": 1,
- "is_liked": 0,
- "dynamic_id": 517311278755293659,
- "timestamp": 1619284318,
- "pre_dy_id": 0,
- "orig_dy_id": 0,
- "orig_type": 0,
- "user_profile": {
- "info": {
- "uid": 324540735,
- "uname": "文雯兄",
- "face": "https://i0.hdslb.com/bfs/face/8000d5ad4652f8bf9074781a108eb54243a06889.jpg"
- },
- "card": {
- "official_verify": {
- "type": -1,
- "desc": ""
- }
- },
- "vip": {
- "vipType": 1,
- "vipDueDate": 1613491200000,
- "vipStatus": 0,
- "themeType": 0,
- "label": {
- "path": "",
- "text": "",
- "label_theme": "",
- "text_color": "",
- "bg_style": 0,
- "bg_color": "",
- "border_color": ""
- },
- "avatar_subscript": 0,
- "nickname_color": "",
- "role": 0,
- "avatar_subscript_url": ""
- },
- "pendant": {
- "pid": 0,
- "name": "",
- "image": "",
- "expire": 0,
- "image_enhance": "",
- "image_enhance_frame": ""
- },
- "rank": "10000",
- "sign": "游说万乘苦不早,著鞭跨马涉远道。",
- "level_info": {
- "current_level": 4
- }
- },
- "uid_type": 1,
- "recommend_info": {
- "is_attention": 0
- },
- "stype": 0,
- "r_type": 1,
- "inner_id": 0,
- "topic_board": "C",
- "topic_board_desc": "最新",
- "status": 1,
- "dynamic_id_str": "517311278755293659",
- "pre_dy_id_str": "0",
- "orig_dy_id_str": "0",
- "rid_str": "672631542",
- "bvid": "BV1dU4y1h78A"
- },
- "card": "{\"aid\":672631542,\"attribute\":0,\"cid\":328783995,\"copyright\":1,\"ctime\":1619284318,\"desc\":\"本漫画由哔哩哔哩漫画出品,本人配音,谢谢大家的支持。\",\"dimension\":{\"height\":1920,\"rotate\":0,\"width\":864},\"duration\":191,\"dynamic\":\"\",\"item\":{\"at_control\":\"\"},\"jump_url\":\"bilibili:\\/\\/video\\/672631542\\/?page=1&player_preload=null&player_width=864&player_height=1920&player_rotate=0\",\"mission_id\":18978,\"owner\":{\"face\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/face\\/8000d5ad4652f8bf9074781a108eb54243a06889.jpg\",\"mid\":324540735,\"name\":\"文雯兄\"},\"pic\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/archive\\/b2d2dc3a909696ea1db3fbfeeb7ab42dc37ced87.jpg\",\"player_info\":null,\"pubdate\":1619284318,\"rights\":{\"autoplay\":1,\"bp\":0,\"download\":0,\"elec\":0,\"hd5\":0,\"is_cooperation\":0,\"movie\":0,\"no_background\":0,\"no_reprint\":1,\"pay\":0,\"ugc_pay\":0,\"ugc_pay_preview\":0},\"short_link\":\"https:\\/\\/b23.tv\\/BV1dU4y1h78A\",\"short_link_v2\":\"https:\\/\\/b23.tv\\/BV1dU4y1h78A\",\"stat\":{\"aid\":672631542,\"coin\":0,\"danmaku\":0,\"dislike\":0,\"favorite\":0,\"his_rank\":0,\"like\":1,\"now_rank\":0,\"reply\":0,\"share\":0,\"view\":10},\"state\":0,\"tid\":138,\"title\":\"怎么办,我穿越成最弱小野怪了(三十九)【关于我不当人的这件事】\",\"tname\":\"搞笑\",\"up_from_v2\":8,\"videos\":1}",
- "extend_json": "{\"\":{\"ogv\":{\"ogv_id\":0}},\"dispute\":{\"content\":\"\"},\"from\":{\"from\":\"\"},\"like_icon\":{\"action\":\"\",\"action_url\":\"\",\"end\":\"\",\"end_url\":\"\",\"start\":\"\",\"start_url\":\"\"},\"topic\":{\"is_attach_topic\":1}}",
- "display": {
- "topic_info": {
- "topic_details": [
- {
- "topic_id": 19254944,
- "topic_name": "火力配音王-配音剧场",
- "is_activity": 1,
- "topic_link": "https://www.bilibili.com/blackboard/dynamic/108663"
- },
- {
- "topic_id": 7539944,
- "topic_name": "哔哩哔哩漫画",
- "is_activity": 0,
- "topic_link": ""
- },
- {
- "topic_id": 3844,
- "topic_name": "穿越",
- "is_activity": 0,
- "topic_link": ""
- },
- {
- "topic_id": 1833,
- "topic_name": "搞笑",
- "is_activity": 0,
- "topic_link": ""
- },
- {
- "topic_id": 1217,
- "topic_name": "自制",
- "is_activity": 0,
- "topic_link": ""
- },
- {
- "topic_id": 1184,
- "topic_name": "漫画",
- "is_activity": 0,
- "topic_link": ""
- }
- ]
- },
- "usr_action_txt": "投稿了视频",
- "relation": {
- "status": 1,
- "is_follow": 0,
- "is_followed": 0
- },
- "up_act_button": {
- "report_title": "举报",
- "founder_report_title": "举报(发起人)",
- "top_title": "置顶",
- "top_confirm_title": "确定将此动态置顶吗",
- "top_cancel_title": "确定将此动态取消置顶吗"
- },
- "show_tip": {
- "del_tip": "要删除动态吗?"
- },
- "cover_play_icon_url": "https://i0.hdslb.com/bfs/album/2269afa7897830b397797ebe5f032b899b405c67.png"
- }
- },
- {
- "desc": {
- "uid": 326499679,
- "type": 8,
- "rid": 972719486,
- "acl": 0,
- "view": 2766257,
- "repost": 3,
- "like": 5925,
- "is_liked": 0,
- "dynamic_id": 517261895213635612,
- "timestamp": 1619272820,
- "pre_dy_id": 0,
- "orig_dy_id": 0,
- "orig_type": 0,
- "user_profile": {
- "info": {
- "uid": 326499679,
- "uname": "哔哩哔哩漫画",
- "face": "https://i1.hdslb.com/bfs/face/2254162161a60b528cfec449f3450409a81ebc37.jpg"
- },
- "card": {
- "official_verify": {
- "type": 1,
- "desc": "哔哩哔哩漫画官方账号"
- }
- },
- "vip": {
- "vipType": 2,
- "vipDueDate": 1941033600000,
- "vipStatus": 1,
- "themeType": 0,
- "label": {
- "path": "",
- "text": "十年大会员",
- "label_theme": "ten_annual_vip",
- "text_color": "#FFFFFF",
- "bg_style": 1,
- "bg_color": "#FB7299",
- "border_color": ""
- },
- "avatar_subscript": 1,
- "nickname_color": "#FB7299",
- "role": 7,
- "avatar_subscript_url": "https://i0.hdslb.com/bfs/vip/icon_Certification_big_member_22_3x.png"
- },
- "pendant": {
- "pid": 0,
- "name": "",
- "image": "",
- "expire": 0,
- "image_enhance": "",
- "image_enhance_frame": ""
- },
- "rank": "10000",
- "sign": "↑ 【关注漫画姬】就送【漫读券5张】,当日或次日登录哔哩哔哩漫画APP即可领取,快来关注领券吧(°∀°)ノ ↑",
- "level_info": {
- "current_level": 6
- }
- },
- "uid_type": 1,
- "recommend_info": {
- "is_attention": 0
- },
- "stype": 0,
- "r_type": 1,
- "inner_id": 0,
- "topic_board": "C",
- "topic_board_desc": "最新",
- "status": 1,
- "dynamic_id_str": "517261895213635612",
- "pre_dy_id_str": "0",
- "orig_dy_id_str": "0",
- "rid_str": "972719486",
- "bvid": "BV1Gp4y1b7ZB"
- },
- "card": "{\"aid\":972719486,\"attribute\":0,\"cid\":328058863,\"copyright\":1,\"ctime\":1619272820,\"desc\":\"#反派初始化# #Vomic#\\n圈圈叉叉,桃树开花,花瓣落下,生出新芽。\\n@哔哩哔哩漫画 出品、@BV社 策划、 @Antler_墨柚 原作、@叉叉叉叉叉口叉 主笔、@补天研究所 制作、@音熊联萌 录制、Vomic《反派初始化》第二集正式上线!\\n哔哩哔哩漫画独家播放,每周六更新!\\n还有小剧场,花絮不定时掉落、敬请期待~\\n\\n出品:@哔哩哔哩漫画\\n策划:@BV社\\n制作:@补天研究所\\n录制:@音熊联萌\",\"dimension\":{\"height\":1080,\"rotate\":0,\"width\":1920},\"duration\":62,\"dynamic\":\"#哔哩哔哩漫画#独家,#Vomic#2021年4月3日起每周六更新!更多精彩,小剧场,花絮,尽在哔哩哔哩漫画APP\",\"item\":{\"at_control\":\"\"},\"jump_url\":\"bilibili:\\/\\/video\\/972719486\\/?page=1&player_preload=null&player_width=1920&player_height=1080&player_rotate=0\",\"owner\":{\"face\":\"https:\\/\\/i1.hdslb.com\\/bfs\\/face\\/2254162161a60b528cfec449f3450409a81ebc37.jpg\",\"mid\":326499679,\"name\":\"哔哩哔哩漫画\"},\"pic\":\"https:\\/\\/i2.hdslb.com\\/bfs\\/archive\\/3c8a720b809153f95b1134acb991011eb79dc80b.jpg\",\"player_info\":null,\"pubdate\":1619272819,\"rights\":{\"autoplay\":1,\"bp\":0,\"download\":0,\"elec\":0,\"hd5\":1,\"is_cooperation\":0,\"movie\":0,\"no_background\":0,\"no_reprint\":1,\"pay\":0,\"ugc_pay\":0,\"ugc_pay_preview\":0},\"short_link\":\"https:\\/\\/b23.tv\\/BV1Gp4y1b7ZB\",\"short_link_v2\":\"https:\\/\\/b23.tv\\/BV1Gp4y1b7ZB\",\"stat\":{\"aid\":972719486,\"coin\":115,\"danmaku\":4,\"dislike\":0,\"favorite\":44,\"his_rank\":0,\"like\":5925,\"now_rank\":0,\"reply\":35,\"share\":145,\"view\":32070},\"state\":0,\"tid\":27,\"title\":\"【Vomic】滴——《反派初始化》第二集精彩片段!\",\"tname\":\"综合\",\"videos\":1}",
- "extend_json": "{\"\":{\"ogv\":{\"ogv_id\":0}},\"dispute\":{\"content\":\"\"},\"from\":{\"from\":\"\",\"verify\":{}},\"like_icon\":{\"action\":\"\",\"action_url\":\"\",\"end\":\"\",\"end_url\":\"\",\"start\":\"\",\"start_url\":\"\"},\"topic\":{\"is_attach_topic\":1}}",
- "display": {
- "topic_info": {
- "topic_details": [
- {
- "topic_id": 7539944,
- "topic_name": "哔哩哔哩漫画",
- "is_activity": 0,
- "topic_link": ""
- },
- {
- "topic_id": 3208432,
- "topic_name": "Vomic",
- "is_activity": 1,
- "topic_link": "https://www.bilibili.com/blackboard/dynamic/106426"
- },
- {
- "topic_id": 37542,
- "topic_name": "VOMIC",
- "is_activity": 1,
- "topic_link": "https://www.bilibili.com/blackboard/dynamic/106283"
- },
- {
- "topic_id": 8972604,
- "topic_name": "vomic",
- "is_activity": 1,
- "topic_link": "https://www.bilibili.com/blackboard/dynamic/106766"
- },
- {
- "topic_id": 210754,
- "topic_name": "夏磊",
- "is_activity": 0,
- "topic_link": ""
- },
- {
- "topic_id": 10526139,
- "topic_name": "反派初始化",
- "is_activity": 0,
- "topic_link": ""
- },
- {
- "topic_id": 1322133,
- "topic_name": "赵路",
- "is_activity": 0,
- "topic_link": ""
- },
- {
- "topic_id": 423864,
- "topic_name": "音熊联萌",
- "is_activity": 1,
- "topic_link": "https://www.bilibili.com/blackboard/dynamic/17389"
- }
- ]
- },
- "usr_action_txt": "投稿了视频",
- "relation": {
- "status": 1,
- "is_follow": 0,
- "is_followed": 0
- },
- "up_act_button": {
- "report_title": "举报",
- "founder_report_title": "举报(发起人)",
- "top_title": "置顶",
- "top_confirm_title": "确定将此动态置顶吗",
- "top_cancel_title": "确定将此动态取消置顶吗"
- },
- "show_tip": {
- "del_tip": "要删除动态吗?"
- },
- "cover_play_icon_url": "https://i0.hdslb.com/bfs/album/2269afa7897830b397797ebe5f032b899b405c67.png"
- }
- },
- {
- "desc": {
- "uid": 255495142,
- "type": 1,
- "rid": 517243774753706830,
- "acl": 0,
- "view": 9,
- "repost": 0,
- "comment": 0,
- "like": 0,
- "is_liked": 0,
- "dynamic_id": 517243774755903256,
- "timestamp": 1619268601,
- "pre_dy_id": 517241610091321208,
- "orig_dy_id": 517241610091321208,
- "orig_type": 2,
- "user_profile": {
- "info": {
- "uid": 255495142,
- "uname": "坐怀不乱登徒子",
- "face": "https://i1.hdslb.com/bfs/face/fa18d118f6c58da704400909743fb895c4c47627.jpg"
- },
- "card": {
- "official_verify": {
- "type": -1,
- "desc": ""
- }
- },
- "vip": {
- "vipType": 2,
- "vipDueDate": 1626451200000,
- "vipStatus": 1,
- "themeType": 0,
- "label": {
- "path": "",
- "text": "年度大会员",
- "label_theme": "annual_vip",
- "text_color": "#FFFFFF",
- "bg_style": 1,
- "bg_color": "#FB7299",
- "border_color": ""
- },
- "avatar_subscript": 1,
- "nickname_color": "#FB7299",
- "role": 3,
- "avatar_subscript_url": "https://i0.hdslb.com/bfs/vip/icon_Certification_big_member_22_3x.png"
- },
- "pendant": {
- "pid": 204,
- "name": "至高守护",
- "image": "https://i1.hdslb.com/bfs/face/88162662c23c2768c9e9e5c25017375685e83798.png",
- "expire": 0,
- "image_enhance": "https://i1.hdslb.com/bfs/face/88162662c23c2768c9e9e5c25017375685e83798.png",
- "image_enhance_frame": ""
- },
- "rank": "10000",
- "sign": "",
- "level_info": {
- "current_level": 5
- }
- },
- "uid_type": 1,
- "recommend_info": {
- "is_attention": 0
- },
- "stype": 0,
- "r_type": 1,
- "inner_id": 0,
- "topic_board": "C",
- "topic_board_desc": "最新",
- "status": 1,
- "dynamic_id_str": "517243774755903256",
- "pre_dy_id_str": "517241610091321208",
- "orig_dy_id_str": "517241610091321208",
- "rid_str": "517243774753706830",
- "origin": {
- "uid": 326499679,
- "type": 2,
- "rid": 131403515,
- "acl": 1024,
- "view": 1962092,
- "repost": 16607,
- "comment": 1020,
- "like": 7002,
- "is_liked": 0,
- "dynamic_id": 517241610091321208,
- "timestamp": 1619268097,
- "user_profile": {
- "info": {
- "uid": 326499679,
- "uname": "哔哩哔哩漫画",
- "face": "https://i1.hdslb.com/bfs/face/2254162161a60b528cfec449f3450409a81ebc37.jpg"
- },
- "card": {
- "official_verify": {
- "type": 1,
- "desc": "哔哩哔哩漫画官方账号"
- }
- },
- "vip": {
- "vipType": 2,
- "vipDueDate": 1941033600000,
- "vipStatus": 1,
- "themeType": 0,
- "label": {
- "path": "",
- "text": "十年大会员",
- "label_theme": "ten_annual_vip",
- "text_color": "#FFFFFF",
- "bg_style": 1,
- "bg_color": "#FB7299",
- "border_color": ""
- },
- "avatar_subscript": 1,
- "nickname_color": "#FB7299",
- "role": 7,
- "avatar_subscript_url": "https://i0.hdslb.com/bfs/vip/icon_Certification_big_member_22_3x.png"
- },
- "pendant": {
- "pid": 0,
- "name": "",
- "image": "",
- "expire": 0,
- "image_enhance": "",
- "image_enhance_frame": ""
- },
- "rank": "10000",
- "sign": "↑ 【关注漫画姬】就送【漫读券5张】,当日或次日登录哔哩哔哩漫画APP即可领取,快来关注领券吧(°∀°)ノ ↑",
- "level_info": {
- "current_level": 6
- }
- },
- "uid_type": 1,
- "r_type": 1,
- "status": 1,
- "dynamic_id_str": "517241610091321208",
- "pre_dy_id_str": "0",
- "orig_dy_id_str": "0",
- "rid_str": "131403515"
- }
- },
- "card": "{ \"user\": { \"uid\": 255495142, \"uname\": \"坐怀不乱登徒子\", \"face\": \"https:\\/\\/i1.hdslb.com\\/bfs\\/face\\/fa18d118f6c58da704400909743fb895c4c47627.jpg\" }, \"item\": { \"rp_id\": 517243774753706830, \"uid\": 255495142, \"content\": \"冲冲冲#哔哩哔哩漫画#\", \"orig_dy_id\": 517241610091321208, \"pre_dy_id\": 517241610091321208, \"timestamp\": 1619268601, \"reply\": 0, \"orig_type\": 2 }, \"origin\": \"{\\\"item\\\":{\\\"at_control\\\":\\\"[{\\\\\\\"type\\\\\\\":2,\\\\\\\"location\\\\\\\":0,\\\\\\\"length\\\\\\\":0,\\\\\\\"data\\\\\\\":\\\\\\\"5\\\\\\\"}]\\\",\\\"category\\\":\\\"daily\\\",\\\"description\\\":\\\"互动抽奖 【关+转】抽1位小伙伴送【哔哩哔哩小电视兔子包】~\\\\n【#哔哩哔哩漫画# 作品推荐】大量西幻少女漫爆更来啦———\\\\n[干杯] 即日起,《重生成为公爵家的丑女》《暴君的监护人是反派魔女》《姐姐捡回了男主》等大量西幻少女精品漫画爆更,追漫更有樱花立牌\\\\\\/玩偶等福利好礼相送!\\\\n[干杯] 快来哔哩哔哩漫画追漫吧~\\\",\\\"id\\\":131403515,\\\"is_fav\\\":0,\\\"pictures\\\":[{\\\"img_height\\\":1357,\\\"img_size\\\":1759.1650390625,\\\"img_src\\\":\\\"https:\\\\\\/\\\\\\/i0.hdslb.com\\\\\\/bfs\\\\\\/album\\\\\\/1ce565e7f36e0ae5a3809df21bb39aa2fe578a88.png\\\",\\\"img_tags\\\":null,\\\"img_width\\\":1080},{\\\"img_height\\\":1238,\\\"img_size\\\":832.51953125,\\\"img_src\\\":\\\"https:\\\\\\/\\\\\\/i0.hdslb.com\\\\\\/bfs\\\\\\/album\\\\\\/6df0150c77a7f42a5d31cce8bb006105a660dad9.png\\\",\\\"img_tags\\\":null,\\\"img_width\\\":1080},{\\\"img_height\\\":2193,\\\"img_size\\\":3424.060546875,\\\"img_src\\\":\\\"https:\\\\\\/\\\\\\/i0.hdslb.com\\\\\\/bfs\\\\\\/album\\\\\\/adce81c59436184b56d84e5394583d2ab491b2e6.png\\\",\\\"img_tags\\\":null,\\\"img_width\\\":1080},{\\\"img_height\\\":800,\\\"img_size\\\":166.1552734375,\\\"img_src\\\":\\\"https:\\\\\\/\\\\\\/i0.hdslb.com\\\\\\/bfs\\\\\\/album\\\\\\/9c4e8d6fc04d5a1f3df225d5967fb65c7a3f5f09.jpg\\\",\\\"img_tags\\\":null,\\\"img_width\\\":800}],\\\"pictures_count\\\":4,\\\"reply\\\":1020,\\\"role\\\":[],\\\"settings\\\":{\\\"copy_forbidden\\\":\\\"0\\\"},\\\"source\\\":[],\\\"title\\\":\\\"\\\",\\\"upload_time\\\":1619268097},\\\"user\\\":{\\\"head_url\\\":\\\"https:\\\\\\/\\\\\\/i1.hdslb.com\\\\\\/bfs\\\\\\/face\\\\\\/2254162161a60b528cfec449f3450409a81ebc37.jpg\\\",\\\"name\\\":\\\"哔哩哔哩漫画\\\",\\\"uid\\\":326499679,\\\"vip\\\":{\\\"avatar_subscript\\\":1,\\\"due_date\\\":1941033600000,\\\"label\\\":{\\\"label_theme\\\":\\\"ten_annual_vip\\\",\\\"path\\\":\\\"\\\",\\\"text\\\":\\\"十年大会员\\\"},\\\"nickname_color\\\":\\\"#FB7299\\\",\\\"status\\\":1,\\\"theme_type\\\":0,\\\"type\\\":2,\\\"vip_pay_type\\\":0}}}\", \"origin_extension\": { \"lott\": \"{\\\"callbackId\\\":10,\\\"lottery_id\\\":61382,\\\"lottery_time\\\":1620504000,\\\"title\\\":\\\"互动抽奖\\\"}\" }, \"origin_extend_json\": \"{\\\"ctrl\\\":[{\\\"data\\\":\\\"5\\\",\\\"length\\\":0,\\\"location\\\":0,\\\"type\\\":2}],\\\"from\\\":{\\\"emoji_type\\\":1,\\\"from\\\":\\\"\\\",\\\"up_close_comment\\\":0,\\\"verify\\\":{\\\"asw\\\":{\\\"fl\\\":15,\\\"nv\\\":1},\\\"cc\\\":{\\\"vf\\\":1},\\\"sw\\\":{\\\"fl\\\":15,\\\"nv\\\":1}}},\\\"like_icon\\\":{\\\"action\\\":\\\"\\\",\\\"action_url\\\":\\\"\\\",\\\"end\\\":\\\"\\\",\\\"end_url\\\":\\\"\\\",\\\"start\\\":\\\"\\\",\\\"start_url\\\":\\\"\\\"},\\\"lott\\\":{\\\"callbackId\\\":10,\\\"lottery_id\\\":61382,\\\"lottery_time\\\":1620504000,\\\"title\\\":\\\"互动抽奖\\\"},\\\"topic\\\":{\\\"is_attach_topic\\\":1}}\", \"origin_user\": { \"info\": { \"uid\": 326499679, \"uname\": \"哔哩哔哩漫画\", \"face\": \"https:\\/\\/i1.hdslb.com\\/bfs\\/face\\/2254162161a60b528cfec449f3450409a81ebc37.jpg\" }, \"card\": { \"official_verify\": { \"type\": 1, \"desc\": \"哔哩哔哩漫画官方账号\" } }, \"vip\": { \"vipType\": 2, \"vipDueDate\": 1941033600000, \"vipStatus\": 1, \"themeType\": 0, \"label\": { \"path\": \"\", \"text\": \"十年大会员\", \"label_theme\": \"ten_annual_vip\", \"text_color\": \"#FFFFFF\", \"bg_style\": 1, \"bg_color\": \"#FB7299\", \"border_color\": \"\" }, \"avatar_subscript\": 1, \"nickname_color\": \"#FB7299\", \"role\": 7, \"avatar_subscript_url\": \"https:\\/\\/i0.hdslb.com\\/bfs\\/vip\\/icon_Certification_big_member_22_3x.png\" }, \"pendant\": { \"pid\": 0, \"name\": \"\", \"image\": \"\", \"expire\": 0, \"image_enhance\": \"\", \"image_enhance_frame\": \"\" }, \"rank\": \"10000\", \"sign\": \"↑ 【关注漫画姬】就送【漫读券5张】,当日或次日登录哔哩哔哩漫画APP即可领取,快来关注领券吧(°∀°)ノ ↑\", \"level_info\": { \"current_level\": 6 } } }",
- "extend_json": "{\"from\":{\"emoji_type\":1,\"from\":\"create.comment\",\"up_close_comment\":0},\"like_icon\":{\"action\":\"\",\"action_url\":\"\",\"end\":\"\",\"end_url\":\"\",\"start\":\"\",\"start_url\":\"\"},\"topic\":{\"is_attach_topic\":1}}",
- "display": {
- "topic_info": {
- "topic_details": [
- {
- "topic_id": 7539944,
- "topic_name": "哔哩哔哩漫画",
- "is_activity": 0,
- "topic_link": ""
- }
- ]
- },
- "origin": {
- "topic_info": {
- "topic_details": [
- {
- "topic_id": 7539944,
- "topic_name": "哔哩哔哩漫画",
- "is_activity": 0,
- "topic_link": ""
- }
- ]
- },
- "emoji_info": {
- "emoji_details": [
- {
- "emoji_name": "[干杯]",
- "id": 1949,
- "package_id": 1,
- "state": 0,
- "type": 1,
- "attr": 0,
- "text": "[干杯]",
- "url": "https://i0.hdslb.com/bfs/emote/8da12d5f55a2c7e9778dcc05b40571979fe208e6.png",
- "meta": {
- "size": 1
- },
- "mtime": 1597738918
- }
- ]
- },
- "relation": {
- "status": 1,
- "is_follow": 0,
- "is_followed": 0
- },
- "show_tip": {
- "del_tip": "要删除动态吗?"
- }
- },
- "relation": {
- "status": 1,
- "is_follow": 0,
- "is_followed": 0
- },
- "up_act_button": {
- "report_title": "举报",
- "founder_report_title": "举报(发起人)",
- "top_title": "置顶",
- "top_confirm_title": "确定将此动态置顶吗",
- "top_cancel_title": "确定将此动态取消置顶吗"
- },
- "show_tip": {
- "del_tip": "要删除动态吗?"
- }
- }
- },
- {
- "desc": {
- "uid": 335270851,
- "type": 1,
- "rid": 517243658786443535,
- "acl": 0,
- "view": 25,
- "repost": 0,
- "comment": 0,
- "like": 1,
- "is_liked": 0,
- "dynamic_id": 517243658790736702,
- "timestamp": 1619268574,
- "pre_dy_id": 517241610091321208,
- "orig_dy_id": 517241610091321208,
- "orig_type": 2,
- "user_profile": {
- "info": {
- "uid": 335270851,
- "uname": "符号门",
- "face": "https://i1.hdslb.com/bfs/face/67371311c9e047543a70c1d41e7a03c3854f2981.jpg"
- },
- "card": {
- "official_verify": {
- "type": -1,
- "desc": ""
- }
- },
- "vip": {
- "vipType": 2,
- "vipDueDate": 1647014400000,
- "vipStatus": 1,
- "themeType": 0,
- "label": {
- "path": "",
- "text": "年度大会员",
- "label_theme": "annual_vip",
- "text_color": "#FFFFFF",
- "bg_style": 1,
- "bg_color": "#FB7299",
- "border_color": ""
- },
- "avatar_subscript": 1,
- "nickname_color": "#FB7299",
- "role": 3,
- "avatar_subscript_url": "https://i0.hdslb.com/bfs/vip/icon_Certification_big_member_22_3x.png"
- },
- "pendant": {
- "pid": 0,
- "name": "",
- "image": "",
- "expire": 0,
- "image_enhance": "",
- "image_enhance_frame": ""
- },
- "rank": "10000",
- "sign": "",
- "level_info": {
- "current_level": 4
- }
- },
- "uid_type": 1,
- "recommend_info": {
- "is_attention": 0
- },
- "stype": 0,
- "r_type": 1,
- "inner_id": 0,
- "topic_board": "C",
- "topic_board_desc": "最新",
- "status": 1,
- "dynamic_id_str": "517243658790736702",
- "pre_dy_id_str": "517241610091321208",
- "orig_dy_id_str": "517241610091321208",
- "rid_str": "517243658786443535",
- "origin": {
- "uid": 326499679,
- "type": 2,
- "rid": 131403515,
- "acl": 1024,
- "view": 1962092,
- "repost": 16607,
- "comment": 1020,
- "like": 7002,
- "is_liked": 0,
- "dynamic_id": 517241610091321208,
- "timestamp": 1619268097,
- "user_profile": {
- "info": {
- "uid": 326499679,
- "uname": "哔哩哔哩漫画",
- "face": "https://i1.hdslb.com/bfs/face/2254162161a60b528cfec449f3450409a81ebc37.jpg"
- },
- "card": {
- "official_verify": {
- "type": 1,
- "desc": "哔哩哔哩漫画官方账号"
- }
- },
- "vip": {
- "vipType": 2,
- "vipDueDate": 1941033600000,
- "vipStatus": 1,
- "themeType": 0,
- "label": {
- "path": "",
- "text": "十年大会员",
- "label_theme": "ten_annual_vip",
- "text_color": "#FFFFFF",
- "bg_style": 1,
- "bg_color": "#FB7299",
- "border_color": ""
- },
- "avatar_subscript": 1,
- "nickname_color": "#FB7299",
- "role": 7,
- "avatar_subscript_url": "https://i0.hdslb.com/bfs/vip/icon_Certification_big_member_22_3x.png"
- },
- "pendant": {
- "pid": 0,
- "name": "",
- "image": "",
- "expire": 0,
- "image_enhance": "",
- "image_enhance_frame": ""
- },
- "rank": "10000",
- "sign": "↑ 【关注漫画姬】就送【漫读券5张】,当日或次日登录哔哩哔哩漫画APP即可领取,快来关注领券吧(°∀°)ノ ↑",
- "level_info": {
- "current_level": 6
- }
- },
- "uid_type": 1,
- "r_type": 1,
- "status": 1,
- "dynamic_id_str": "517241610091321208",
- "pre_dy_id_str": "0",
- "orig_dy_id_str": "0",
- "rid_str": "131403515"
- }
- },
- "card": "{ \"user\": { \"uid\": 335270851, \"uname\": \"符号门\", \"face\": \"https:\\/\\/i1.hdslb.com\\/bfs\\/face\\/67371311c9e047543a70c1d41e7a03c3854f2981.jpg\" }, \"item\": { \"rp_id\": 517243658786443535, \"uid\": 335270851, \"content\": \"#哔哩哔哩漫画#[打call][打call][打call]\", \"orig_dy_id\": 517241610091321208, \"pre_dy_id\": 517241610091321208, \"timestamp\": 1619268574, \"reply\": 0, \"orig_type\": 2 }, \"origin\": \"{\\\"item\\\":{\\\"at_control\\\":\\\"[{\\\\\\\"type\\\\\\\":2,\\\\\\\"location\\\\\\\":0,\\\\\\\"length\\\\\\\":0,\\\\\\\"data\\\\\\\":\\\\\\\"5\\\\\\\"}]\\\",\\\"category\\\":\\\"daily\\\",\\\"description\\\":\\\"互动抽奖 【关+转】抽1位小伙伴送【哔哩哔哩小电视兔子包】~\\\\n【#哔哩哔哩漫画# 作品推荐】大量西幻少女漫爆更来啦———\\\\n[干杯] 即日起,《重生成为公爵家的丑女》《暴君的监护人是反派魔女》《姐姐捡回了男主》等大量西幻少女精品漫画爆更,追漫更有樱花立牌\\\\\\/玩偶等福利好礼相送!\\\\n[干杯] 快来哔哩哔哩漫画追漫吧~\\\",\\\"id\\\":131403515,\\\"is_fav\\\":0,\\\"pictures\\\":[{\\\"img_height\\\":1357,\\\"img_size\\\":1759.1650390625,\\\"img_src\\\":\\\"https:\\\\\\/\\\\\\/i0.hdslb.com\\\\\\/bfs\\\\\\/album\\\\\\/1ce565e7f36e0ae5a3809df21bb39aa2fe578a88.png\\\",\\\"img_tags\\\":null,\\\"img_width\\\":1080},{\\\"img_height\\\":1238,\\\"img_size\\\":832.51953125,\\\"img_src\\\":\\\"https:\\\\\\/\\\\\\/i0.hdslb.com\\\\\\/bfs\\\\\\/album\\\\\\/6df0150c77a7f42a5d31cce8bb006105a660dad9.png\\\",\\\"img_tags\\\":null,\\\"img_width\\\":1080},{\\\"img_height\\\":2193,\\\"img_size\\\":3424.060546875,\\\"img_src\\\":\\\"https:\\\\\\/\\\\\\/i0.hdslb.com\\\\\\/bfs\\\\\\/album\\\\\\/adce81c59436184b56d84e5394583d2ab491b2e6.png\\\",\\\"img_tags\\\":null,\\\"img_width\\\":1080},{\\\"img_height\\\":800,\\\"img_size\\\":166.1552734375,\\\"img_src\\\":\\\"https:\\\\\\/\\\\\\/i0.hdslb.com\\\\\\/bfs\\\\\\/album\\\\\\/9c4e8d6fc04d5a1f3df225d5967fb65c7a3f5f09.jpg\\\",\\\"img_tags\\\":null,\\\"img_width\\\":800}],\\\"pictures_count\\\":4,\\\"reply\\\":1020,\\\"role\\\":[],\\\"settings\\\":{\\\"copy_forbidden\\\":\\\"0\\\"},\\\"source\\\":[],\\\"title\\\":\\\"\\\",\\\"upload_time\\\":1619268097},\\\"user\\\":{\\\"head_url\\\":\\\"https:\\\\\\/\\\\\\/i1.hdslb.com\\\\\\/bfs\\\\\\/face\\\\\\/2254162161a60b528cfec449f3450409a81ebc37.jpg\\\",\\\"name\\\":\\\"哔哩哔哩漫画\\\",\\\"uid\\\":326499679,\\\"vip\\\":{\\\"avatar_subscript\\\":1,\\\"due_date\\\":1941033600000,\\\"label\\\":{\\\"label_theme\\\":\\\"ten_annual_vip\\\",\\\"path\\\":\\\"\\\",\\\"text\\\":\\\"十年大会员\\\"},\\\"nickname_color\\\":\\\"#FB7299\\\",\\\"status\\\":1,\\\"theme_type\\\":0,\\\"type\\\":2,\\\"vip_pay_type\\\":0}}}\", \"origin_extension\": { \"lott\": \"{\\\"callbackId\\\":10,\\\"lottery_id\\\":61382,\\\"lottery_time\\\":1620504000,\\\"title\\\":\\\"互动抽奖\\\"}\" }, \"origin_extend_json\": \"{\\\"ctrl\\\":[{\\\"data\\\":\\\"5\\\",\\\"length\\\":0,\\\"location\\\":0,\\\"type\\\":2}],\\\"from\\\":{\\\"emoji_type\\\":1,\\\"from\\\":\\\"\\\",\\\"up_close_comment\\\":0,\\\"verify\\\":{\\\"asw\\\":{\\\"fl\\\":15,\\\"nv\\\":1},\\\"cc\\\":{\\\"vf\\\":1},\\\"sw\\\":{\\\"fl\\\":15,\\\"nv\\\":1}}},\\\"like_icon\\\":{\\\"action\\\":\\\"\\\",\\\"action_url\\\":\\\"\\\",\\\"end\\\":\\\"\\\",\\\"end_url\\\":\\\"\\\",\\\"start\\\":\\\"\\\",\\\"start_url\\\":\\\"\\\"},\\\"lott\\\":{\\\"callbackId\\\":10,\\\"lottery_id\\\":61382,\\\"lottery_time\\\":1620504000,\\\"title\\\":\\\"互动抽奖\\\"},\\\"topic\\\":{\\\"is_attach_topic\\\":1}}\", \"origin_user\": { \"info\": { \"uid\": 326499679, \"uname\": \"哔哩哔哩漫画\", \"face\": \"https:\\/\\/i1.hdslb.com\\/bfs\\/face\\/2254162161a60b528cfec449f3450409a81ebc37.jpg\" }, \"card\": { \"official_verify\": { \"type\": 1, \"desc\": \"哔哩哔哩漫画官方账号\" } }, \"vip\": { \"vipType\": 2, \"vipDueDate\": 1941033600000, \"vipStatus\": 1, \"themeType\": 0, \"label\": { \"path\": \"\", \"text\": \"十年大会员\", \"label_theme\": \"ten_annual_vip\", \"text_color\": \"#FFFFFF\", \"bg_style\": 1, \"bg_color\": \"#FB7299\", \"border_color\": \"\" }, \"avatar_subscript\": 1, \"nickname_color\": \"#FB7299\", \"role\": 7, \"avatar_subscript_url\": \"https:\\/\\/i0.hdslb.com\\/bfs\\/vip\\/icon_Certification_big_member_22_3x.png\" }, \"pendant\": { \"pid\": 0, \"name\": \"\", \"image\": \"\", \"expire\": 0, \"image_enhance\": \"\", \"image_enhance_frame\": \"\" }, \"rank\": \"10000\", \"sign\": \"↑ 【关注漫画姬】就送【漫读券5张】,当日或次日登录哔哩哔哩漫画APP即可领取,快来关注领券吧(°∀°)ノ ↑\", \"level_info\": { \"current_level\": 6 } } }",
- "extend_json": "{\"from\":{\"emoji_type\":1,\"up_close_comment\":0},\"like_icon\":{\"action\":\"\",\"action_url\":\"\",\"end\":\"\",\"end_url\":\"\",\"start\":\"\",\"start_url\":\"\"},\"topic\":{\"is_attach_topic\":1}}",
- "display": {
- "topic_info": {
- "topic_details": [
- {
- "topic_id": 7539944,
- "topic_name": "哔哩哔哩漫画",
- "is_activity": 0,
- "topic_link": ""
- }
- ]
- },
- "origin": {
- "topic_info": {
- "topic_details": [
- {
- "topic_id": 7539944,
- "topic_name": "哔哩哔哩漫画",
- "is_activity": 0,
- "topic_link": ""
- }
- ]
- },
- "emoji_info": {
- "emoji_details": [
- {
- "emoji_name": "[干杯]",
- "id": 1949,
- "package_id": 1,
- "state": 0,
- "type": 1,
- "attr": 0,
- "text": "[干杯]",
- "url": "https://i0.hdslb.com/bfs/emote/8da12d5f55a2c7e9778dcc05b40571979fe208e6.png",
- "meta": {
- "size": 1
- },
- "mtime": 1597738918
- }
- ]
- },
- "relation": {
- "status": 1,
- "is_follow": 0,
- "is_followed": 0
- },
- "show_tip": {
- "del_tip": "要删除动态吗?"
- }
- },
- "emoji_info": {
- "emoji_details": [
- {
- "emoji_name": "[打call]",
- "id": 510,
- "package_id": 1,
- "state": 0,
- "type": 1,
- "attr": 0,
- "text": "[打call]",
- "url": "https://i0.hdslb.com/bfs/emote/431432c43da3ee5aab5b0e4f8931953e649e9975.png",
- "meta": {
- "size": 1
- },
- "mtime": 1617293741
- }
- ]
- },
- "relation": {
- "status": 1,
- "is_follow": 0,
- "is_followed": 0
- },
- "up_act_button": {
- "report_title": "举报",
- "founder_report_title": "举报(发起人)",
- "top_title": "置顶",
- "top_confirm_title": "确定将此动态置顶吗",
- "top_cancel_title": "确定将此动态取消置顶吗"
- },
- "show_tip": {
- "del_tip": "要删除动态吗?"
- }
- }
- },
- {
- "desc": {
- "uid": 326499679,
- "type": 2,
- "rid": 131403515,
- "acl": 1024,
- "view": 1962092,
- "repost": 16607,
- "comment": 1020,
- "like": 7002,
- "is_liked": 0,
- "dynamic_id": 517241610091321208,
- "timestamp": 1619268097,
- "orig_type": 0,
- "user_profile": {
- "info": {
- "uid": 326499679,
- "uname": "哔哩哔哩漫画",
- "face": "https://i1.hdslb.com/bfs/face/2254162161a60b528cfec449f3450409a81ebc37.jpg"
- },
- "card": {
- "official_verify": {
- "type": 1,
- "desc": "哔哩哔哩漫画官方账号"
- }
- },
- "vip": {
- "vipType": 2,
- "vipDueDate": 1941033600000,
- "vipStatus": 1,
- "themeType": 0,
- "label": {
- "path": "",
- "text": "十年大会员",
- "label_theme": "ten_annual_vip",
- "text_color": "#FFFFFF",
- "bg_style": 1,
- "bg_color": "#FB7299",
- "border_color": ""
- },
- "avatar_subscript": 1,
- "nickname_color": "#FB7299",
- "role": 7,
- "avatar_subscript_url": "https://i0.hdslb.com/bfs/vip/icon_Certification_big_member_22_3x.png"
- },
- "pendant": {
- "pid": 0,
- "name": "",
- "image": "",
- "expire": 0,
- "image_enhance": "",
- "image_enhance_frame": ""
- },
- "rank": "10000",
- "sign": "↑ 【关注漫画姬】就送【漫读券5张】,当日或次日登录哔哩哔哩漫画APP即可领取,快来关注领券吧(°∀°)ノ ↑",
- "level_info": {
- "current_level": 6
- }
- },
- "uid_type": 1,
- "recommend_info": {
- "is_attention": 0
- },
- "r_type": 1,
- "topic_board": "C",
- "topic_board_desc": "最新",
- "status": 1,
- "dynamic_id_str": "517241610091321208",
- "pre_dy_id_str": "0",
- "orig_dy_id_str": "0",
- "rid_str": "131403515"
- },
- "card": "{\"item\":{\"at_control\":\"[{\\\"type\\\":2,\\\"location\\\":0,\\\"length\\\":0,\\\"data\\\":\\\"5\\\"}]\",\"category\":\"daily\",\"description\":\"互动抽奖 【关+转】抽1位小伙伴送【哔哩哔哩小电视兔子包】~\\n【#哔哩哔哩漫画# 作品推荐】大量西幻少女漫爆更来啦———\\n[干杯] 即日起,《重生成为公爵家的丑女》《暴君的监护人是反派魔女》《姐姐捡回了男主》等大量西幻少女精品漫画爆更,追漫更有樱花立牌\\/玩偶等福利好礼相送!\\n[干杯] 快来哔哩哔哩漫画追漫吧~\",\"id\":131403515,\"is_fav\":0,\"pictures\":[{\"img_height\":1357,\"img_size\":1759.1650390625,\"img_src\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/album\\/1ce565e7f36e0ae5a3809df21bb39aa2fe578a88.png\",\"img_tags\":null,\"img_width\":1080},{\"img_height\":1238,\"img_size\":832.51953125,\"img_src\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/album\\/6df0150c77a7f42a5d31cce8bb006105a660dad9.png\",\"img_tags\":null,\"img_width\":1080},{\"img_height\":2193,\"img_size\":3424.060546875,\"img_src\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/album\\/adce81c59436184b56d84e5394583d2ab491b2e6.png\",\"img_tags\":null,\"img_width\":1080},{\"img_height\":800,\"img_size\":166.1552734375,\"img_src\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/album\\/9c4e8d6fc04d5a1f3df225d5967fb65c7a3f5f09.jpg\",\"img_tags\":null,\"img_width\":800}],\"pictures_count\":4,\"reply\":1020,\"role\":[],\"settings\":{\"copy_forbidden\":\"0\"},\"source\":[],\"title\":\"\",\"upload_time\":1619268097},\"user\":{\"head_url\":\"https:\\/\\/i1.hdslb.com\\/bfs\\/face\\/2254162161a60b528cfec449f3450409a81ebc37.jpg\",\"name\":\"哔哩哔哩漫画\",\"uid\":326499679,\"vip\":{\"avatar_subscript\":1,\"due_date\":1941033600000,\"label\":{\"label_theme\":\"ten_annual_vip\",\"path\":\"\",\"text\":\"十年大会员\"},\"nickname_color\":\"#FB7299\",\"status\":1,\"theme_type\":0,\"type\":2,\"vip_pay_type\":0}}}",
- "extension": {
- "lott": "{\"callbackId\":10,\"lottery_id\":61382,\"lottery_time\":1620504000,\"title\":\"互动抽奖\"}"
- },
- "extend_json": "{\"ctrl\":[{\"data\":\"5\",\"length\":0,\"location\":0,\"type\":2}],\"from\":{\"emoji_type\":1,\"from\":\"\",\"up_close_comment\":0,\"verify\":{\"asw\":{\"fl\":15,\"nv\":1},\"cc\":{\"vf\":1},\"sw\":{\"fl\":15,\"nv\":1}}},\"like_icon\":{\"action\":\"\",\"action_url\":\"\",\"end\":\"\",\"end_url\":\"\",\"start\":\"\",\"start_url\":\"\"},\"lott\":{\"callbackId\":10,\"lottery_id\":61382,\"lottery_time\":1620504000,\"title\":\"互动抽奖\"},\"topic\":{\"is_attach_topic\":1}}",
- "display": {
- "topic_info": {
- "topic_details": [
- {
- "topic_id": 7539944,
- "topic_name": "哔哩哔哩漫画",
- "is_activity": 0,
- "topic_link": ""
- }
- ]
- },
- "emoji_info": {
- "emoji_details": [
- {
- "emoji_name": "[干杯]",
- "id": 1949,
- "package_id": 1,
- "state": 0,
- "type": 1,
- "attr": 0,
- "text": "[干杯]",
- "url": "https://i0.hdslb.com/bfs/emote/8da12d5f55a2c7e9778dcc05b40571979fe208e6.png",
- "meta": {
- "size": 1
- },
- "mtime": 1597738918
- }
- ]
- },
- "relation": {
- "status": 1,
- "is_follow": 0,
- "is_followed": 0
- },
- "up_act_button": {
- "report_title": "举报",
- "founder_report_title": "举报(发起人)",
- "top_title": "置顶",
- "top_confirm_title": "确定将此动态置顶吗",
- "top_cancel_title": "确定将此动态取消置顶吗"
- },
- "show_tip": {
- "del_tip": "要删除动态吗?"
- }
- }
- },
- {
- "desc": {
- "uid": 326499679,
- "type": 2,
- "rid": 131384529,
- "acl": 0,
- "view": 1605629,
- "repost": 5,
- "comment": 63,
- "like": 4631,
- "is_liked": 0,
- "dynamic_id": 517215462328123502,
- "timestamp": 1619262009,
- "pre_dy_id": 0,
- "orig_dy_id": 0,
- "orig_type": 0,
- "user_profile": {
- "info": {
- "uid": 326499679,
- "uname": "哔哩哔哩漫画",
- "face": "https://i1.hdslb.com/bfs/face/2254162161a60b528cfec449f3450409a81ebc37.jpg"
- },
- "card": {
- "official_verify": {
- "type": 1,
- "desc": "哔哩哔哩漫画官方账号"
- }
- },
- "vip": {
- "vipType": 2,
- "vipDueDate": 1941033600000,
- "vipStatus": 1,
- "themeType": 0,
- "label": {
- "path": "",
- "text": "十年大会员",
- "label_theme": "ten_annual_vip",
- "text_color": "#FFFFFF",
- "bg_style": 1,
- "bg_color": "#FB7299",
- "border_color": ""
- },
- "avatar_subscript": 1,
- "nickname_color": "#FB7299",
- "role": 7,
- "avatar_subscript_url": "https://i0.hdslb.com/bfs/vip/icon_Certification_big_member_22_3x.png"
- },
- "pendant": {
- "pid": 0,
- "name": "",
- "image": "",
- "expire": 0,
- "image_enhance": "",
- "image_enhance_frame": ""
- },
- "rank": "10000",
- "sign": "↑ 【关注漫画姬】就送【漫读券5张】,当日或次日登录哔哩哔哩漫画APP即可领取,快来关注领券吧(°∀°)ノ ↑",
- "level_info": {
- "current_level": 6
- }
- },
- "uid_type": 1,
- "recommend_info": {
- "is_attention": 0
- },
- "stype": 0,
- "r_type": 1,
- "inner_id": 0,
- "topic_board": "C",
- "topic_board_desc": "最新",
- "status": 1,
- "dynamic_id_str": "517215462328123502",
- "pre_dy_id_str": "0",
- "orig_dy_id_str": "0",
- "rid_str": "131384529"
- },
- "card": "{\"item\":{\"at_control\":\"\",\"category\":\"daily\",\"description\":\"【#哔哩哔哩漫画# 近期更新】(`・ω・´)\\nP1《#辉夜大小姐想让我告白# ~天才们的恋爱头脑战~ 》:https:\\/\\/manga.bilibili.com\\/m\\/detail\\/mc26009\\nP2《#入间同学入魔了#!》:https:\\/\\/manga.bilibili.com\\/m\\/detail\\/mc27189\\nP3《催眠麦克风-Division Rap Battle- side D.H&B.A.T》\\nP4《他和她的魔法契约》\\nP5《瓦尼塔斯的手记》\\nP6《见面5秒开始战斗》\\nP7《魔气来袭》\\nP8《尖帽子的魔法工坊》 \",\"id\":131384529,\"is_fav\":0,\"pictures\":[{\"img_height\":2920,\"img_size\":1993.103515625,\"img_src\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/album\\/24a3e5d04e8ad86fcdae48e6ee88f90a0351f82d.jpg\",\"img_tags\":null,\"img_width\":2000},{\"img_height\":2872,\"img_size\":2453.1513671875,\"img_src\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/album\\/d512d771dd3f91b54733f104e5de7e38d61ef56c.jpg\",\"img_tags\":null,\"img_width\":2000},{\"img_height\":2806,\"img_size\":4156.140625,\"img_src\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/album\\/119fe01717120eb9c8c04d2c48a22298c8f88d17.jpg\",\"img_tags\":null,\"img_width\":2000},{\"img_height\":1147,\"img_size\":152.23046875,\"img_src\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/album\\/d2fb2a6d2229a03ea967ee2182faefd67b0811fd.jpg\",\"img_tags\":null,\"img_width\":800},{\"img_height\":2637,\"img_size\":10432.2978515625,\"img_src\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/album\\/e8966e96d34938474eebfcf60f38e14932e09be4.jpg\",\"img_tags\":null,\"img_width\":3600},{\"img_height\":2268,\"img_size\":6175.017578125,\"img_src\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/album\\/4ed99d7329108e9e585db49da63a56bdcf7e8670.jpg\",\"img_tags\":null,\"img_width\":3200},{\"img_height\":1461,\"img_size\":283.990234375,\"img_src\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/album\\/a8f37ec732103b1912fd3448d06d610cae5486df.jpg\",\"img_tags\":null,\"img_width\":800},{\"img_height\":2871,\"img_size\":3639.478515625,\"img_src\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/album\\/fe8e58fd4f7c7063f880f064b3366e758dbfd7ee.jpg\",\"img_tags\":null,\"img_width\":2000}],\"pictures_count\":8,\"reply\":63,\"role\":[],\"settings\":{\"copy_forbidden\":\"0\"},\"source\":[],\"title\":\"\",\"upload_time\":1619262009},\"user\":{\"head_url\":\"https:\\/\\/i1.hdslb.com\\/bfs\\/face\\/2254162161a60b528cfec449f3450409a81ebc37.jpg\",\"name\":\"哔哩哔哩漫画\",\"uid\":326499679,\"vip\":{\"avatar_subscript\":1,\"due_date\":1941033600000,\"label\":{\"label_theme\":\"ten_annual_vip\",\"path\":\"\",\"text\":\"十年大会员\"},\"nickname_color\":\"#FB7299\",\"status\":1,\"theme_type\":0,\"type\":2,\"vip_pay_type\":0}}}",
- "extend_json": "{\"from\":{\"emoji_type\":1,\"from\":\"timer.publish\",\"up_close_comment\":0,\"verify\":{\"cc\":{\"nv\":1}}},\"like_icon\":{\"action\":\"\",\"action_url\":\"\",\"end\":\"\",\"end_url\":\"\",\"start\":\"\",\"start_url\":\"\"},\"topic\":{\"is_attach_topic\":1}}",
- "display": {
- "topic_info": {
- "topic_details": [
- {
- "topic_id": 7539944,
- "topic_name": "哔哩哔哩漫画",
- "is_activity": 0,
- "topic_link": ""
- },
- {
- "topic_id": 4386628,
- "topic_name": "辉夜大小姐想让我告白",
- "is_activity": 0,
- "topic_link": ""
- },
- {
- "topic_id": 8724199,
- "topic_name": "入间同学入魔了",
- "is_activity": 1,
- "topic_link": "https://www.bilibili.com/blackboard/dynamic/69330"
- }
- ]
- },
- "relation": {
- "status": 1,
- "is_follow": 0,
- "is_followed": 0
- },
- "up_act_button": {
- "report_title": "举报",
- "founder_report_title": "举报(发起人)",
- "top_title": "置顶",
- "top_confirm_title": "确定将此动态置顶吗",
- "top_cancel_title": "确定将此动态取消置顶吗"
- },
- "show_tip": {
- "del_tip": "要删除动态吗?"
- }
- }
- },
- {
- "desc": {
- "uid": 1572178656,
- "type": 2,
- "rid": 131375699,
- "acl": 0,
- "view": 13,
- "repost": 0,
- "comment": 0,
- "like": 0,
- "is_liked": 0,
- "dynamic_id": 517200331161362689,
- "timestamp": 1619258486,
- "pre_dy_id": 0,
- "orig_dy_id": 0,
- "orig_type": 0,
- "user_profile": {
- "info": {
- "uid": 1572178656,
- "uname": "星宿战纪漫画",
- "face": "https://i0.hdslb.com/bfs/face/f791586939dcbd3f19545af1e65c369983e63c39.jpg"
- },
- "card": {
- "official_verify": {
- "type": -1,
- "desc": ""
- }
- },
- "vip": {
- "vipType": 0,
- "vipDueDate": 0,
- "vipStatus": 0,
- "themeType": 0,
- "label": {
- "path": "",
- "text": "",
- "label_theme": "",
- "text_color": "",
- "bg_style": 0,
- "bg_color": "",
- "border_color": ""
- },
- "avatar_subscript": 0,
- "nickname_color": "",
- "role": 0,
- "avatar_subscript_url": ""
- },
- "pendant": {
- "pid": 0,
- "name": "",
- "image": "",
- "expire": 0,
- "image_enhance": "",
- "image_enhance_frame": ""
- },
- "rank": "10000",
- "sign": "",
- "level_info": {
- "current_level": 2
- }
- },
- "uid_type": 1,
- "recommend_info": {
- "is_attention": 0
- },
- "stype": 0,
- "r_type": 1,
- "inner_id": 0,
- "topic_board": "C",
- "topic_board_desc": "最新",
- "status": 1,
- "dynamic_id_str": "517200331161362689",
- "pre_dy_id_str": "0",
- "orig_dy_id_str": "0",
- "rid_str": "131375699"
- },
- "card": "{\"item\":{\"at_control\":\"\",\"category\":\"daily\",\"description\":\"#哔哩哔哩漫画# #星宿战纪# #星宿战纪漫画# #漫画# B漫:https:\\/\\/manga.bilibili.com\\/m\\/detail\\/mc29438\\n闭关修炼ing的小金蝉~可可爱爱[热词系列_奥力给]\",\"id\":131375699,\"is_fav\":0,\"pictures\":[{\"img_height\":593,\"img_size\":86.4052734375,\"img_src\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/album\\/d3074ad36616678a285de9011d3ba1cee04fa69e.jpg\",\"img_tags\":null,\"img_width\":375}],\"pictures_count\":1,\"reply\":0,\"role\":[],\"settings\":{\"copy_forbidden\":\"0\"},\"source\":[],\"title\":\"\",\"upload_time\":1619258486},\"user\":{\"head_url\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/face\\/f791586939dcbd3f19545af1e65c369983e63c39.jpg\",\"name\":\"星宿战纪漫画\",\"uid\":1572178656,\"vip\":{\"avatar_subscript\":0,\"due_date\":0,\"label\":{\"label_theme\":\"\",\"path\":\"\",\"text\":\"\"},\"nickname_color\":\"\",\"status\":0,\"theme_type\":0,\"type\":0,\"vip_pay_type\":0}}}",
- "extend_json": "{\"from\":{\"emoji_type\":1,\"from\":\"\",\"up_close_comment\":0,\"verify\":{}},\"like_icon\":{\"action\":\"\",\"action_url\":\"\",\"end\":\"\",\"end_url\":\"\",\"start\":\"\",\"start_url\":\"\"},\"topic\":{\"is_attach_topic\":1}}",
- "display": {
- "topic_info": {
- "topic_details": [
- {
- "topic_id": 7539944,
- "topic_name": "哔哩哔哩漫画",
- "is_activity": 0,
- "topic_link": ""
- },
- {
- "topic_id": 18523004,
- "topic_name": "星宿战纪",
- "is_activity": 0,
- "topic_link": ""
- },
- {
- "topic_id": 18523003,
- "topic_name": "星宿战纪漫画",
- "is_activity": 0,
- "topic_link": ""
- },
- {
- "topic_id": 1184,
- "topic_name": "漫画",
- "is_activity": 0,
- "topic_link": ""
- }
- ]
- },
- "emoji_info": {
- "emoji_details": [
- {
- "emoji_name": "[热词系列_奥力给]",
- "id": 1885,
- "package_id": 53,
- "state": 0,
- "type": 1,
- "attr": 2,
- "text": "[热词系列_奥力给]",
- "url": "https://i0.hdslb.com/bfs/emote/c9b8683827ec6c00fea5327c9bec14f581cef2aa.png",
- "meta": {
- "size": 2
- },
- "mtime": 1598525979
- }
- ]
- },
- "relation": {
- "status": 1,
- "is_follow": 0,
- "is_followed": 0
- },
- "up_act_button": {
- "report_title": "举报",
- "founder_report_title": "举报(发起人)",
- "top_title": "置顶",
- "top_confirm_title": "确定将此动态置顶吗",
- "top_cancel_title": "确定将此动态取消置顶吗"
- },
- "show_tip": {
- "del_tip": "要删除动态吗?"
- }
- }
- },
- {
- "desc": {
- "uid": 326499679,
- "type": 2,
- "rid": 131350038,
- "acl": 0,
- "view": 1974729,
- "repost": 13,
- "comment": 39,
- "like": 4732,
- "is_liked": 0,
- "dynamic_id": 517153601912668248,
- "timestamp": 1619247606,
- "pre_dy_id": 0,
- "orig_dy_id": 0,
- "orig_type": 0,
- "user_profile": {
- "info": {
- "uid": 326499679,
- "uname": "哔哩哔哩漫画",
- "face": "https://i1.hdslb.com/bfs/face/2254162161a60b528cfec449f3450409a81ebc37.jpg"
- },
- "card": {
- "official_verify": {
- "type": 1,
- "desc": "哔哩哔哩漫画官方账号"
- }
- },
- "vip": {
- "vipType": 2,
- "vipDueDate": 1941033600000,
- "vipStatus": 1,
- "themeType": 0,
- "label": {
- "path": "",
- "text": "十年大会员",
- "label_theme": "ten_annual_vip",
- "text_color": "#FFFFFF",
- "bg_style": 1,
- "bg_color": "#FB7299",
- "border_color": ""
- },
- "avatar_subscript": 1,
- "nickname_color": "#FB7299",
- "role": 7,
- "avatar_subscript_url": "https://i0.hdslb.com/bfs/vip/icon_Certification_big_member_22_3x.png"
- },
- "pendant": {
- "pid": 0,
- "name": "",
- "image": "",
- "expire": 0,
- "image_enhance": "",
- "image_enhance_frame": ""
- },
- "rank": "10000",
- "sign": "↑ 【关注漫画姬】就送【漫读券5张】,当日或次日登录哔哩哔哩漫画APP即可领取,快来关注领券吧(°∀°)ノ ↑",
- "level_info": {
- "current_level": 6
- }
- },
- "uid_type": 1,
- "recommend_info": {
- "is_attention": 0
- },
- "stype": 0,
- "r_type": 1,
- "inner_id": 0,
- "topic_board": "C",
- "topic_board_desc": "最新",
- "status": 1,
- "dynamic_id_str": "517153601912668248",
- "pre_dy_id_str": "0",
- "orig_dy_id_str": "0",
- "rid_str": "131350038"
- },
- "card": "{\"item\":{\"at_control\":\"\",\"category\":\"daily\",\"description\":\"【#哔哩哔哩漫画# 作品推荐】来读一部治愈系#欧漫#吧:《#格莱米耶姐妹#》https:\\/\\/manga.bilibili.com\\/m\\/detail\\/mc28726\\n[W-哈哈]还记得童年最爱的五个魔力少女吗?《#魔力W.i.t.c.h.#》的作者带着全新的故事来了!\\n[打call]熟悉的画风,同样的治愈,主角变成了可爱的三姐妹。她们想在妈妈生日当天送给她一本图画书,却意外发现了一张特别的照片,一个亲情秘密即将被揭晓…… \",\"id\":131350038,\"is_fav\":0,\"pictures\":[{\"img_height\":960,\"img_size\":911.2685546875,\"img_src\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/album\\/f88be70d1dee3dd408fb00daf27ca2b551045424.jpg\",\"img_tags\":null,\"img_width\":720},{\"img_height\":3705,\"img_size\":3552.703125,\"img_src\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/album\\/0c1ad02cfed7d09fb68da69f6f6ed3afb33759ac.png\",\"img_tags\":null,\"img_width\":800},{\"img_height\":3373,\"img_size\":2038.8671875,\"img_src\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/album\\/4eed376d55d27870b126b7089082cd6f32582c55.png\",\"img_tags\":null,\"img_width\":800}],\"pictures_count\":3,\"reply\":39,\"role\":[],\"settings\":{\"copy_forbidden\":\"0\"},\"source\":[],\"title\":\"\",\"upload_time\":1619247606},\"user\":{\"head_url\":\"https:\\/\\/i1.hdslb.com\\/bfs\\/face\\/2254162161a60b528cfec449f3450409a81ebc37.jpg\",\"name\":\"哔哩哔哩漫画\",\"uid\":326499679,\"vip\":{\"avatar_subscript\":1,\"due_date\":1941033600000,\"label\":{\"label_theme\":\"ten_annual_vip\",\"path\":\"\",\"text\":\"十年大会员\"},\"nickname_color\":\"#FB7299\",\"status\":1,\"theme_type\":0,\"type\":2,\"vip_pay_type\":0}}}",
- "extend_json": "{\"from\":{\"emoji_type\":1,\"from\":\"timer.publish\",\"up_close_comment\":0,\"verify\":{\"cc\":{\"nv\":1}}},\"like_icon\":{\"action\":\"\",\"action_url\":\"\",\"end\":\"\",\"end_url\":\"\",\"start\":\"\",\"start_url\":\"\"},\"topic\":{\"is_attach_topic\":1}}",
- "display": {
- "topic_info": {
- "topic_details": [
- {
- "topic_id": 7539944,
- "topic_name": "哔哩哔哩漫画",
- "is_activity": 0,
- "topic_link": ""
- },
- {
- "topic_id": 507003,
- "topic_name": "欧漫",
- "is_activity": 0,
- "topic_link": ""
- },
- {
- "topic_id": 19491399,
- "topic_name": "格莱米耶姐妹",
- "is_activity": 0,
- "topic_link": ""
- },
- {
- "topic_id": 19491398,
- "topic_name": "魔力W.i.t.c.h.",
- "is_activity": 0,
- "topic_link": ""
- },
- {
- "topic_id": 1161514,
- "topic_name": "魔力W.I.T.C.H.",
- "is_activity": 0,
- "topic_link": ""
- }
- ]
- },
- "emoji_info": {
- "emoji_details": [
- {
- "emoji_name": "[W-哈哈]",
- "id": 3045,
- "package_id": 1,
- "state": 0,
- "type": 1,
- "attr": 0,
- "text": "[W-哈哈]",
- "url": "https://i0.hdslb.com/bfs/emote/83d527303c8f62f494e6971c48836487e7d87b1b.png",
- "meta": {
- "size": 1
- },
- "mtime": 1608785082
- },
- {
- "emoji_name": "[打call]",
- "id": 510,
- "package_id": 1,
- "state": 0,
- "type": 1,
- "attr": 0,
- "text": "[打call]",
- "url": "https://i0.hdslb.com/bfs/emote/431432c43da3ee5aab5b0e4f8931953e649e9975.png",
- "meta": {
- "size": 1
- },
- "mtime": 1617293741
- }
- ]
- },
- "relation": {
- "status": 1,
- "is_follow": 0,
- "is_followed": 0
- },
- "up_act_button": {
- "report_title": "举报",
- "founder_report_title": "举报(发起人)",
- "top_title": "置顶",
- "top_confirm_title": "确定将此动态置顶吗",
- "top_cancel_title": "确定将此动态取消置顶吗"
- },
- "show_tip": {
- "del_tip": "要删除动态吗?"
- }
- }
- },
- {
- "desc": {
- "uid": 1902548007,
- "type": 2,
- "rid": 131326547,
- "acl": 0,
- "view": 1681,
- "repost": 0,
- "comment": 2,
- "like": 17,
- "is_liked": 0,
- "dynamic_id": 517110364476558101,
- "timestamp": 1619237539,
- "pre_dy_id": 0,
- "orig_dy_id": 0,
- "orig_type": 0,
- "user_profile": {
- "info": {
- "uid": 1902548007,
- "uname": "BV社",
- "face": "https://i0.hdslb.com/bfs/face/48f8e6afa688e37b9f1e3721a86bea8ce02688dc.jpg"
- },
- "card": {
- "official_verify": {
- "type": 1,
- "desc": "BV社官方账号"
- }
- },
- "vip": {
- "vipType": 0,
- "vipDueDate": 0,
- "vipStatus": 0,
- "themeType": 0,
- "label": {
- "path": "",
- "text": "",
- "label_theme": "",
- "text_color": "",
- "bg_style": 0,
- "bg_color": "",
- "border_color": ""
- },
- "avatar_subscript": 0,
- "nickname_color": "",
- "role": 0,
- "avatar_subscript_url": ""
- },
- "pendant": {
- "pid": 0,
- "name": "",
- "image": "",
- "expire": 0,
- "image_enhance": "",
- "image_enhance_frame": ""
- },
- "rank": "10000",
- "sign": "Vomic,让你爱的漫画更动听",
- "level_info": {
- "current_level": 2
- }
- },
- "uid_type": 1,
- "recommend_info": {
- "is_attention": 0
- },
- "stype": 0,
- "r_type": 1,
- "inner_id": 0,
- "topic_board": "C",
- "topic_board_desc": "最新",
- "status": 1,
- "dynamic_id_str": "517110364476558101",
- "pre_dy_id_str": "0",
- "orig_dy_id_str": "0",
- "rid_str": "131326547"
- },
- "card": "{\"item\":{\"at_control\":\"[{\\\"location\\\":93,\\\"type\\\":1,\\\"length\\\":8,\\\"data\\\":\\\"326499679\\\"},{\\\"location\\\":104,\\\"type\\\":1,\\\"length\\\":5,\\\"data\\\":\\\"1902548007\\\"},{\\\"location\\\":112,\\\"type\\\":1,\\\"length\\\":7,\\\"data\\\":\\\"492733946\\\"},{\\\"location\\\":122,\\\"type\\\":1,\\\"length\\\":6,\\\"data\\\":\\\"1740792\\\"}]\",\"category\":\"daily\",\"description\":\"#哔哩哔哩漫画#独家,#反派初始化# #Vomic# 我命定的男主!凌辰!!\\n第四集准时上线!2021年4月3日起每周六更新!更多精彩,小剧场,花絮,尽在哔哩哔哩漫画APP\\n \\n出品:@哔哩哔哩漫画\\n策划:@BV社\\n制作:@补天研究所\\n录制:@音熊联萌 \",\"id\":131326547,\"is_fav\":0,\"pictures\":[{\"img_height\":2400,\"img_size\":2228.2724609375,\"img_src\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/album\\/461e7359ad89788cea42f61690b9cf7c73cc6ab5.jpg\",\"img_tags\":null,\"img_width\":2400}],\"pictures_count\":1,\"reply\":2,\"role\":[],\"settings\":{\"copy_forbidden\":\"0\"},\"source\":[],\"title\":\"\",\"upload_time\":1619237539},\"user\":{\"head_url\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/face\\/48f8e6afa688e37b9f1e3721a86bea8ce02688dc.jpg\",\"name\":\"BV社\",\"uid\":1902548007,\"vip\":{\"avatar_subscript\":0,\"due_date\":0,\"label\":{\"label_theme\":\"\",\"path\":\"\",\"text\":\"\"},\"nickname_color\":\"\",\"status\":0,\"theme_type\":0,\"type\":0,\"vip_pay_type\":0}}}",
- "extend_json": "{\"ctrl\":[{\"data\":\"326499679\",\"length\":8,\"location\":93,\"type\":1},{\"data\":\"1902548007\",\"length\":5,\"location\":104,\"type\":1},{\"data\":\"492733946\",\"length\":7,\"location\":112,\"type\":1},{\"data\":\"1740792\",\"length\":6,\"location\":122,\"type\":1}],\"from\":{\"emoji_type\":1,\"from\":\"create.dynamic.web\",\"up_close_comment\":0,\"verify\":{\"asw\":{\"fl\":15,\"nv\":1},\"sw\":{\"fl\":15,\"nv\":1}}},\"like_icon\":{\"action\":\"\",\"action_url\":\"\",\"end\":\"\",\"end_url\":\"\",\"start\":\"\",\"start_url\":\"\"},\"topic\":{\"is_attach_topic\":1}}",
- "display": {
- "topic_info": {
- "topic_details": [
- {
- "topic_id": 7539944,
- "topic_name": "哔哩哔哩漫画",
- "is_activity": 0,
- "topic_link": ""
- },
- {
- "topic_id": 10526139,
- "topic_name": "反派初始化",
- "is_activity": 0,
- "topic_link": ""
- },
- {
- "topic_id": 3208432,
- "topic_name": "Vomic",
- "is_activity": 1,
- "topic_link": "https://www.bilibili.com/blackboard/dynamic/106426"
- },
- {
- "topic_id": 37542,
- "topic_name": "VOMIC",
- "is_activity": 1,
- "topic_link": "https://www.bilibili.com/blackboard/dynamic/106283"
- },
- {
- "topic_id": 8972604,
- "topic_name": "vomic",
- "is_activity": 1,
- "topic_link": "https://www.bilibili.com/blackboard/dynamic/106766"
- }
- ]
- },
- "relation": {
- "status": 1,
- "is_follow": 0,
- "is_followed": 0
- },
- "up_act_button": {
- "report_title": "举报",
- "founder_report_title": "举报(发起人)",
- "top_title": "置顶",
- "top_confirm_title": "确定将此动态置顶吗",
- "top_cancel_title": "确定将此动态取消置顶吗"
- },
- "show_tip": {
- "del_tip": "要删除动态吗?"
- }
- }
- },
- {
- "desc": {
- "uid": 1192711092,
- "type": 1,
- "rid": 516803952918881881,
- "acl": 0,
- "view": 231,
- "repost": 0,
- "comment": 0,
- "like": 0,
- "is_liked": 0,
- "dynamic_id": 516803952924449005,
- "timestamp": 1619166197,
- "pre_dy_id": 516417934145814823,
- "orig_dy_id": 516417934145814823,
- "orig_type": 2,
- "user_profile": {
- "info": {
- "uid": 1192711092,
- "uname": "会发光的偶恰",
- "face": "https://i0.hdslb.com/bfs/face/b85a508793bd96deec61e2491d60e68f10378395.jpg"
- },
- "card": {
- "official_verify": {
- "type": -1,
- "desc": ""
- }
- },
- "vip": {
- "vipType": 0,
- "vipDueDate": 0,
- "vipStatus": 0,
- "themeType": 0,
- "label": {
- "path": "",
- "text": "",
- "label_theme": "",
- "text_color": "",
- "bg_style": 0,
- "bg_color": "",
- "border_color": ""
- },
- "avatar_subscript": 0,
- "nickname_color": "",
- "role": 0,
- "avatar_subscript_url": ""
- },
- "pendant": {
- "pid": 0,
- "name": "",
- "image": "",
- "expire": 0,
- "image_enhance": "",
- "image_enhance_frame": ""
- },
- "rank": "10000",
- "sign": "",
- "level_info": {
- "current_level": 3
- }
- },
- "uid_type": 1,
- "recommend_info": {
- "is_attention": 0
- },
- "stype": 0,
- "r_type": 1,
- "inner_id": 0,
- "topic_board": "C",
- "topic_board_desc": "最新",
- "status": 1,
- "dynamic_id_str": "516803952924449005",
- "pre_dy_id_str": "516417934145814823",
- "orig_dy_id_str": "516417934145814823",
- "rid_str": "516803952918881881",
- "origin": {
- "uid": 326499679,
- "type": 2,
- "rid": 131093146,
- "acl": 1024,
- "view": 1794629,
- "repost": 10824,
- "dynamic_id": 516417934145814823,
- "timestamp": 1619076320,
- "uid_type": 1,
- "r_type": 1,
- "status": 1,
- "dynamic_id_str": "516417934145814823",
- "pre_dy_id_str": "0",
- "orig_dy_id_str": "0",
- "rid_str": "131093146"
- }
- },
- "card": "{ \"user\": { \"uid\": 1192711092, \"uname\": \"会发光的偶恰\", \"face\": \"https:\\/\\/i0.hdslb.com\\/bfs\\/face\\/b85a508793bd96deec61e2491d60e68f10378395.jpg\" }, \"item\": { \"rp_id\": 516803952918881881, \"uid\": 1192711092, \"content\": \"给我也整一个,我太爱了#漫画节#,#哔哩哔哩漫画#\", \"ctrl\": \"\", \"orig_dy_id\": 516417934145814823, \"pre_dy_id\": 516417934145814823, \"timestamp\": 1619166197, \"reply\": 0, \"orig_type\": 2 }, \"origin\": \"{\\\"item\\\":{\\\"at_control\\\":\\\"[{\\\\\\\"data\\\\\\\":\\\\\\\"5\\\\\\\",\\\\\\\"length\\\\\\\":0,\\\\\\\"location\\\\\\\":0,\\\\\\\"type\\\\\\\":2}]\\\",\\\"category\\\":\\\"daily\\\",\\\"description\\\":\\\"互动抽奖 【关+转】抽3位幸运小伙伴送【哔哩哔哩漫画商城 · 50元图书无门槛优惠券】~\\\\n【#漫画节# 买书礼】商城图书活动开启,23日0点抢新书秒杀,最高立减160元!\\\\n《罗小黑战记 兰溪镇2》《我是蜘蛛又怎样》等多款新书5元起!\\\\n更有8折立减券,来商城看看吧!\\\\n[羞羞] 活动指路:#哔哩哔哩漫画#APP - 我的 - 漫画商城\\\",\\\"id\\\":131093146,\\\"is_fav\\\":0,\\\"pictures\\\":[{\\\"img_height\\\":600,\\\"img_size\\\":251.2998046875,\\\"img_src\\\":\\\"https:\\\\\\/\\\\\\/i0.hdslb.com\\\\\\/bfs\\\\\\/album\\\\\\/1103a166b95de39f9f05455fed2bcfce5edfacc6.jpg\\\",\\\"img_tags\\\":null,\\\"img_width\\\":1200}],\\\"pictures_count\\\":1,\\\"reply\\\":857,\\\"role\\\":[],\\\"settings\\\":{\\\"copy_forbidden\\\":\\\"0\\\"},\\\"source\\\":[],\\\"title\\\":\\\"\\\",\\\"upload_time\\\":1619076320},\\\"user\\\":{\\\"head_url\\\":\\\"https:\\\\\\/\\\\\\/i1.hdslb.com\\\\\\/bfs\\\\\\/face\\\\\\/2254162161a60b528cfec449f3450409a81ebc37.jpg\\\",\\\"name\\\":\\\"哔哩哔哩漫画\\\",\\\"uid\\\":326499679,\\\"vip\\\":{\\\"avatar_subscript\\\":1,\\\"due_date\\\":1941033600000,\\\"label\\\":{\\\"label_theme\\\":\\\"ten_annual_vip\\\",\\\"path\\\":\\\"\\\",\\\"text\\\":\\\"十年大会员\\\"},\\\"nickname_color\\\":\\\"#FB7299\\\",\\\"status\\\":1,\\\"theme_type\\\":0,\\\"type\\\":2,\\\"vip_pay_type\\\":0}}}\", \"origin_extension\": { \"lott\": \"{\\\"lottery_id\\\":61227}\" }, \"origin_extend_json\": \"{\\\"\\\":{\\\"manga\\\":{\\\"manga_id\\\":26551}},\\\"ctrl\\\":[{\\\"data\\\":\\\"5\\\",\\\"length\\\":0,\\\"location\\\":0,\\\"type\\\":2}],\\\"from\\\":{\\\"emoji_type\\\":1,\\\"from\\\":\\\"create.dynamic.web\\\",\\\"up_close_comment\\\":0,\\\"verify\\\":{\\\"cc\\\":{\\\"vf\\\":1}}},\\\"like_icon\\\":{\\\"action\\\":\\\"\\\",\\\"action_url\\\":\\\"\\\",\\\"end\\\":\\\"\\\",\\\"end_url\\\":\\\"\\\",\\\"start\\\":\\\"\\\",\\\"start_url\\\":\\\"\\\"},\\\"lott\\\":{\\\"lottery_id\\\":61227},\\\"topic\\\":{\\\"is_attach_topic\\\":1}}\", \"origin_user\": { \"info\": { \"uid\": 326499679, \"uname\": \"哔哩哔哩漫画\", \"face\": \"https:\\/\\/i1.hdslb.com\\/bfs\\/face\\/2254162161a60b528cfec449f3450409a81ebc37.jpg\" }, \"card\": { \"official_verify\": { \"type\": 1, \"desc\": \"哔哩哔哩漫画官方账号\" } }, \"vip\": { \"vipType\": 2, \"vipDueDate\": 1941033600000, \"vipStatus\": 1, \"themeType\": 0, \"label\": { \"path\": \"\", \"text\": \"十年大会员\", \"label_theme\": \"ten_annual_vip\", \"text_color\": \"#FFFFFF\", \"bg_style\": 1, \"bg_color\": \"#FB7299\", \"border_color\": \"\" }, \"avatar_subscript\": 1, \"nickname_color\": \"#FB7299\", \"role\": 7, \"avatar_subscript_url\": \"https:\\/\\/i0.hdslb.com\\/bfs\\/vip\\/icon_Certification_big_member_22_3x.png\" }, \"pendant\": { \"pid\": 0, \"name\": \"\", \"image\": \"\", \"expire\": 0, \"image_enhance\": \"\", \"image_enhance_frame\": \"\" }, \"rank\": \"10000\", \"sign\": \"↑ 【关注漫画姬】就送【漫读券5张】,当日或次日登录哔哩哔哩漫画APP即可领取,快来关注领券吧(°∀°)ノ ↑\", \"level_info\": { \"current_level\": 6 } }, \"activity_infos\": { \"details\": [ { \"type\": 1, \"detail\": \"{\\\"is_show\\\":1,\\\"topic_id\\\":877418,\\\"topic_link\\\":\\\"https:\\\\\\/\\\\\\/www.bilibili.com\\\\\\/blackboard\\\\\\/activity-7uSyvlCGRS.html\\\",\\\"topic_name\\\":\\\"漫画节\\\"}\" } ] } }",
- "extend_json": "{\"from\":{\"emoji_type\":1,\"from\":\"create.comment\",\"up_close_comment\":0},\"like_icon\":{\"action\":\"\",\"action_url\":\"\",\"end\":\"\",\"end_url\":\"\",\"start\":\"\",\"start_url\":\"\"},\"topic\":{\"is_attach_topic\":1}}",
- "display": {
- "topic_info": {
- "topic_details": [
- {
- "topic_id": 877418,
- "topic_name": "漫画节",
- "is_activity": 1,
- "topic_link": "https://www.bilibili.com/blackboard/activity-7uSyvlCGRS.html"
- },
- {
- "topic_id": 7539944,
- "topic_name": "哔哩哔哩漫画",
- "is_activity": 0,
- "topic_link": ""
- }
- ]
- },
- "origin": {
- "topic_info": {
- "topic_details": [
- {
- "topic_id": 877418,
- "topic_name": "漫画节",
- "is_activity": 1,
- "topic_link": "https://www.bilibili.com/blackboard/activity-7uSyvlCGRS.html"
- },
- {
- "topic_id": 7539944,
- "topic_name": "哔哩哔哩漫画",
- "is_activity": 0,
- "topic_link": ""
- }
- ]
- },
- "emoji_info": {
- "emoji_details": [
- {
- "emoji_name": "[羞羞]",
- "id": 2901,
- "package_id": 1,
- "state": 0,
- "type": 1,
- "attr": 0,
- "text": "[羞羞]",
- "url": "https://i0.hdslb.com/bfs/emote/f4f9171e4d8c3f30827a8b96ea1ce1beb825ad50.png",
- "meta": {
- "size": 1
- },
- "mtime": 1606448649
- }
- ]
- },
- "relation": {
- "status": 1,
- "is_follow": 0,
- "is_followed": 0
- },
- "attach_card": {
- "type": "manga",
- "head_text": "相关漫画作品",
- "cover_url": "https://i0.hdslb.com/bfs/manga-static/e79378436e02fd7f227b901efb9fe79c2df9499c.jpg",
- "cover_type": 2,
- "title": "罗小黑战记·蓝溪镇",
- "desc_first": "更新至068",
- "desc_second": "搞笑,治愈,古风",
- "jump_url": "https://manga.bilibili.com/m/detail/mc26551?from=sub_card",
- "button": {
- "type": 2,
- "uncheck": {
- "icon": "https://i0.hdslb.com/bfs/bangumi/154b6898d2b2c20c21ccef9e41fcf809b518ebb4.png",
- "text": "追漫"
- },
- "check": {
- "icon": "",
- "text": "已追漫"
- },
- "status": 1
- },
- "oid_str": "26551"
- },
- "tags": [
- {
- "tag_type": 3,
- "sub_type": 1,
- "icon": "https://i0.hdslb.com/bfs/album/4c1880a3e9d5fd2c72b339929a73a4b83d2bab93.png",
- "text": "漫画节",
- "link": "https://www.bilibili.com/blackboard/activity-7uSyvlCGRS.html?topic_from=topic-card&name=%E6%BC%AB%E7%94%BB%E8%8A%82",
- "rid": 877418,
- "sub_module": "topic"
- }
- ],
- "add_on_card_info": [
- {
- "add_on_card_show_type": 2,
- "attach_card": {
- "type": "manga",
- "head_text": "相关漫画作品",
- "cover_url": "https://i0.hdslb.com/bfs/manga-static/e79378436e02fd7f227b901efb9fe79c2df9499c.jpg",
- "cover_type": 2,
- "title": "罗小黑战记·蓝溪镇",
- "desc_first": "更新至068",
- "desc_second": "搞笑,治愈,古风",
- "jump_url": "https://manga.bilibili.com/m/detail/mc26551?from=sub_card",
- "button": {
- "type": 2,
- "uncheck": {
- "icon": "https://i0.hdslb.com/bfs/bangumi/154b6898d2b2c20c21ccef9e41fcf809b518ebb4.png",
- "text": "追漫"
- },
- "check": {
- "icon": "",
- "text": "已追漫"
- },
- "status": 1
- },
- "oid_str": "26551"
- }
- }
- ],
- "show_tip": {
- "del_tip": "要删除动态吗?"
- }
- },
- "relation": {
- "status": 1,
- "is_follow": 0,
- "is_followed": 0
- },
- "up_act_button": {
- "report_title": "举报",
- "founder_report_title": "举报(发起人)",
- "top_title": "置顶",
- "top_confirm_title": "确定将此动态置顶吗",
- "top_cancel_title": "确定将此动态取消置顶吗"
- },
- "show_tip": {
- "del_tip": "要删除动态吗?"
- }
- }
- },
- {
- "desc": {
- "uid": 1365116,
- "type": 1,
- "rid": 516801496201774949,
- "acl": 0,
- "view": 185,
- "repost": 0,
- "comment": 0,
- "like": 0,
- "is_liked": 0,
- "dynamic_id": 516801496202094777,
- "timestamp": 1619165625,
- "pre_dy_id": 516417934145814823,
- "orig_dy_id": 516417934145814823,
- "orig_type": 2,
- "user_profile": {
- "info": {
- "uid": 1365116,
- "uname": "濑户的海参",
- "face": "https://i2.hdslb.com/bfs/face/8426c61be9c3ccd2296d080a54691c3bed5f2f9f.jpg"
- },
- "card": {
- "official_verify": {
- "type": -1,
- "desc": ""
- }
- },
- "vip": {
- "vipType": 0,
- "vipDueDate": 0,
- "vipStatus": 0,
- "themeType": 0,
- "label": {
- "path": "",
- "text": "",
- "label_theme": "",
- "text_color": "",
- "bg_style": 0,
- "bg_color": "",
- "border_color": ""
- },
- "avatar_subscript": 0,
- "nickname_color": "",
- "role": 0,
- "avatar_subscript_url": ""
- },
- "pendant": {
- "pid": 0,
- "name": "",
- "image": "",
- "expire": 0,
- "image_enhance": "",
- "image_enhance_frame": ""
- },
- "rank": "10000",
- "sign": "",
- "level_info": {
- "current_level": 5
- }
- },
- "uid_type": 1,
- "recommend_info": {
- "is_attention": 0
- },
- "stype": 0,
- "r_type": 1,
- "inner_id": 0,
- "topic_board": "C",
- "topic_board_desc": "最新",
- "status": 1,
- "dynamic_id_str": "516801496202094777",
- "pre_dy_id_str": "516417934145814823",
- "orig_dy_id_str": "516417934145814823",
- "rid_str": "516801496201774949",
- "origin": {
- "uid": 326499679,
- "type": 2,
- "rid": 131093146,
- "acl": 1024,
- "view": 1794629,
- "repost": 10824,
- "dynamic_id": 516417934145814823,
- "timestamp": 1619076320,
- "uid_type": 1,
- "r_type": 1,
- "status": 1,
- "dynamic_id_str": "516417934145814823",
- "pre_dy_id_str": "0",
- "orig_dy_id_str": "0",
- "rid_str": "131093146"
- }
- },
- "card": "{ \"user\": { \"uid\": 1365116, \"uname\": \"濑户的海参\", \"face\": \"https:\\/\\/i2.hdslb.com\\/bfs\\/face\\/8426c61be9c3ccd2296d080a54691c3bed5f2f9f.jpg\" }, \"item\": { \"rp_id\": 516801496201774949, \"uid\": 1365116, \"content\": \"嗯哼#漫画节#,#哔哩哔哩漫画#\", \"ctrl\": \"\", \"orig_dy_id\": 516417934145814823, \"pre_dy_id\": 516417934145814823, \"timestamp\": 1619165625, \"reply\": 0, \"orig_type\": 2 }, \"origin\": \"{\\\"item\\\":{\\\"at_control\\\":\\\"[{\\\\\\\"data\\\\\\\":\\\\\\\"5\\\\\\\",\\\\\\\"length\\\\\\\":0,\\\\\\\"location\\\\\\\":0,\\\\\\\"type\\\\\\\":2}]\\\",\\\"category\\\":\\\"daily\\\",\\\"description\\\":\\\"互动抽奖 【关+转】抽3位幸运小伙伴送【哔哩哔哩漫画商城 · 50元图书无门槛优惠券】~\\\\n【#漫画节# 买书礼】商城图书活动开启,23日0点抢新书秒杀,最高立减160元!\\\\n《罗小黑战记 兰溪镇2》《我是蜘蛛又怎样》等多款新书5元起!\\\\n更有8折立减券,来商城看看吧!\\\\n[羞羞] 活动指路:#哔哩哔哩漫画#APP - 我的 - 漫画商城\\\",\\\"id\\\":131093146,\\\"is_fav\\\":0,\\\"pictures\\\":[{\\\"img_height\\\":600,\\\"img_size\\\":251.2998046875,\\\"img_src\\\":\\\"https:\\\\\\/\\\\\\/i0.hdslb.com\\\\\\/bfs\\\\\\/album\\\\\\/1103a166b95de39f9f05455fed2bcfce5edfacc6.jpg\\\",\\\"img_tags\\\":null,\\\"img_width\\\":1200}],\\\"pictures_count\\\":1,\\\"reply\\\":857,\\\"role\\\":[],\\\"settings\\\":{\\\"copy_forbidden\\\":\\\"0\\\"},\\\"source\\\":[],\\\"title\\\":\\\"\\\",\\\"upload_time\\\":1619076320},\\\"user\\\":{\\\"head_url\\\":\\\"https:\\\\\\/\\\\\\/i1.hdslb.com\\\\\\/bfs\\\\\\/face\\\\\\/2254162161a60b528cfec449f3450409a81ebc37.jpg\\\",\\\"name\\\":\\\"哔哩哔哩漫画\\\",\\\"uid\\\":326499679,\\\"vip\\\":{\\\"avatar_subscript\\\":1,\\\"due_date\\\":1941033600000,\\\"label\\\":{\\\"label_theme\\\":\\\"ten_annual_vip\\\",\\\"path\\\":\\\"\\\",\\\"text\\\":\\\"十年大会员\\\"},\\\"nickname_color\\\":\\\"#FB7299\\\",\\\"status\\\":1,\\\"theme_type\\\":0,\\\"type\\\":2,\\\"vip_pay_type\\\":0}}}\", \"origin_extension\": { \"lott\": \"{\\\"lottery_id\\\":61227}\" }, \"origin_extend_json\": \"{\\\"\\\":{\\\"manga\\\":{\\\"manga_id\\\":26551}},\\\"ctrl\\\":[{\\\"data\\\":\\\"5\\\",\\\"length\\\":0,\\\"location\\\":0,\\\"type\\\":2}],\\\"from\\\":{\\\"emoji_type\\\":1,\\\"from\\\":\\\"create.dynamic.web\\\",\\\"up_close_comment\\\":0,\\\"verify\\\":{\\\"cc\\\":{\\\"vf\\\":1}}},\\\"like_icon\\\":{\\\"action\\\":\\\"\\\",\\\"action_url\\\":\\\"\\\",\\\"end\\\":\\\"\\\",\\\"end_url\\\":\\\"\\\",\\\"start\\\":\\\"\\\",\\\"start_url\\\":\\\"\\\"},\\\"lott\\\":{\\\"lottery_id\\\":61227},\\\"topic\\\":{\\\"is_attach_topic\\\":1}}\", \"origin_user\": { \"info\": { \"uid\": 326499679, \"uname\": \"哔哩哔哩漫画\", \"face\": \"https:\\/\\/i1.hdslb.com\\/bfs\\/face\\/2254162161a60b528cfec449f3450409a81ebc37.jpg\" }, \"card\": { \"official_verify\": { \"type\": 1, \"desc\": \"哔哩哔哩漫画官方账号\" } }, \"vip\": { \"vipType\": 2, \"vipDueDate\": 1941033600000, \"vipStatus\": 1, \"themeType\": 0, \"label\": { \"path\": \"\", \"text\": \"十年大会员\", \"label_theme\": \"ten_annual_vip\", \"text_color\": \"#FFFFFF\", \"bg_style\": 1, \"bg_color\": \"#FB7299\", \"border_color\": \"\" }, \"avatar_subscript\": 1, \"nickname_color\": \"#FB7299\", \"role\": 7, \"avatar_subscript_url\": \"https:\\/\\/i0.hdslb.com\\/bfs\\/vip\\/icon_Certification_big_member_22_3x.png\" }, \"pendant\": { \"pid\": 0, \"name\": \"\", \"image\": \"\", \"expire\": 0, \"image_enhance\": \"\", \"image_enhance_frame\": \"\" }, \"rank\": \"10000\", \"sign\": \"↑ 【关注漫画姬】就送【漫读券5张】,当日或次日登录哔哩哔哩漫画APP即可领取,快来关注领券吧(°∀°)ノ ↑\", \"level_info\": { \"current_level\": 6 } }, \"activity_infos\": { \"details\": [ { \"type\": 1, \"detail\": \"{\\\"is_show\\\":1,\\\"topic_id\\\":877418,\\\"topic_link\\\":\\\"https:\\\\\\/\\\\\\/www.bilibili.com\\\\\\/blackboard\\\\\\/activity-7uSyvlCGRS.html\\\",\\\"topic_name\\\":\\\"漫画节\\\"}\" } ] } }",
- "extend_json": "{\"from\":{\"emoji_type\":1,\"from\":\"create.comment\",\"up_close_comment\":0},\"like_icon\":{\"action\":\"\",\"action_url\":\"\",\"end\":\"\",\"end_url\":\"\",\"start\":\"\",\"start_url\":\"\"},\"topic\":{\"is_attach_topic\":1}}",
- "display": {
- "topic_info": {
- "topic_details": [
- {
- "topic_id": 877418,
- "topic_name": "漫画节",
- "is_activity": 1,
- "topic_link": "https://www.bilibili.com/blackboard/activity-7uSyvlCGRS.html"
- },
- {
- "topic_id": 7539944,
- "topic_name": "哔哩哔哩漫画",
- "is_activity": 0,
- "topic_link": ""
- }
- ]
- },
- "origin": {
- "topic_info": {
- "topic_details": [
- {
- "topic_id": 877418,
- "topic_name": "漫画节",
- "is_activity": 1,
- "topic_link": "https://www.bilibili.com/blackboard/activity-7uSyvlCGRS.html"
- },
- {
- "topic_id": 7539944,
- "topic_name": "哔哩哔哩漫画",
- "is_activity": 0,
- "topic_link": ""
- }
- ]
- },
- "emoji_info": {
- "emoji_details": [
- {
- "emoji_name": "[羞羞]",
- "id": 2901,
- "package_id": 1,
- "state": 0,
- "type": 1,
- "attr": 0,
- "text": "[羞羞]",
- "url": "https://i0.hdslb.com/bfs/emote/f4f9171e4d8c3f30827a8b96ea1ce1beb825ad50.png",
- "meta": {
- "size": 1
- },
- "mtime": 1606448649
- }
- ]
- },
- "relation": {
- "status": 1,
- "is_follow": 0,
- "is_followed": 0
- },
- "attach_card": {
- "type": "manga",
- "head_text": "相关漫画作品",
- "cover_url": "https://i0.hdslb.com/bfs/manga-static/e79378436e02fd7f227b901efb9fe79c2df9499c.jpg",
- "cover_type": 2,
- "title": "罗小黑战记·蓝溪镇",
- "desc_first": "更新至068",
- "desc_second": "搞笑,治愈,古风",
- "jump_url": "https://manga.bilibili.com/m/detail/mc26551?from=sub_card",
- "button": {
- "type": 2,
- "uncheck": {
- "icon": "https://i0.hdslb.com/bfs/bangumi/154b6898d2b2c20c21ccef9e41fcf809b518ebb4.png",
- "text": "追漫"
- },
- "check": {
- "icon": "",
- "text": "已追漫"
- },
- "status": 1
- },
- "oid_str": "26551"
- },
- "tags": [
- {
- "tag_type": 3,
- "sub_type": 1,
- "icon": "https://i0.hdslb.com/bfs/album/4c1880a3e9d5fd2c72b339929a73a4b83d2bab93.png",
- "text": "漫画节",
- "link": "https://www.bilibili.com/blackboard/activity-7uSyvlCGRS.html?topic_from=topic-card&name=%E6%BC%AB%E7%94%BB%E8%8A%82",
- "rid": 877418,
- "sub_module": "topic"
- }
- ],
- "add_on_card_info": [
- {
- "add_on_card_show_type": 2,
- "attach_card": {
- "type": "manga",
- "head_text": "相关漫画作品",
- "cover_url": "https://i0.hdslb.com/bfs/manga-static/e79378436e02fd7f227b901efb9fe79c2df9499c.jpg",
- "cover_type": 2,
- "title": "罗小黑战记·蓝溪镇",
- "desc_first": "更新至068",
- "desc_second": "搞笑,治愈,古风",
- "jump_url": "https://manga.bilibili.com/m/detail/mc26551?from=sub_card",
- "button": {
- "type": 2,
- "uncheck": {
- "icon": "https://i0.hdslb.com/bfs/bangumi/154b6898d2b2c20c21ccef9e41fcf809b518ebb4.png",
- "text": "追漫"
- },
- "check": {
- "icon": "",
- "text": "已追漫"
- },
- "status": 1
- },
- "oid_str": "26551"
- }
- }
- ],
- "show_tip": {
- "del_tip": "要删除动态吗?"
- }
- },
- "relation": {
- "status": 1,
- "is_follow": 0,
- "is_followed": 0
- },
- "up_act_button": {
- "report_title": "举报",
- "founder_report_title": "举报(发起人)",
- "top_title": "置顶",
- "top_confirm_title": "确定将此动态置顶吗",
- "top_cancel_title": "确定将此动态取消置顶吗"
- },
- "show_tip": {
- "del_tip": "要删除动态吗?"
- }
- }
- },
- {
- "desc": {
- "uid": 1902548007,
- "type": 2,
- "rid": 131192629,
- "view": 1537,
- "repost": 0,
- "comment": 1,
- "like": 18,
- "is_liked": 0,
- "dynamic_id": 516737432462144044,
- "timestamp": 1619150709,
- "orig_type": 0,
- "user_profile": {
- "info": {
- "uid": 1902548007,
- "uname": "BV社",
- "face": "https://i0.hdslb.com/bfs/face/48f8e6afa688e37b9f1e3721a86bea8ce02688dc.jpg"
- },
- "card": {
- "official_verify": {
- "type": 1,
- "desc": "BV社官方账号"
- }
- },
- "vip": {
- "vipType": 0,
- "vipDueDate": 0,
- "vipStatus": 0,
- "themeType": 0,
- "label": {
- "path": "",
- "text": "",
- "label_theme": "",
- "text_color": "",
- "bg_style": 0,
- "bg_color": "",
- "border_color": ""
- },
- "avatar_subscript": 0,
- "nickname_color": "",
- "role": 0,
- "avatar_subscript_url": ""
- },
- "pendant": {
- "pid": 0,
- "name": "",
- "image": "",
- "expire": 0,
- "image_enhance": "",
- "image_enhance_frame": ""
- },
- "rank": "10000",
- "sign": "Vomic,让你爱的漫画更动听",
- "level_info": {
- "current_level": 2
- }
- },
- "uid_type": 1,
- "recommend_info": {
- "is_attention": 0
- },
- "r_type": 1,
- "topic_board": "C",
- "topic_board_desc": "最新",
- "status": 1,
- "dynamic_id_str": "516737432462144044",
- "pre_dy_id_str": "0",
- "orig_dy_id_str": "0",
- "rid_str": "131192629"
- },
- "card": "{\"item\":{\"at_control\":\"[{\\\"location\\\":111,\\\"type\\\":1,\\\"length\\\":8,\\\"data\\\":\\\"326499679\\\"},{\\\"location\\\":122,\\\"type\\\":1,\\\"length\\\":5,\\\"data\\\":\\\"1902548007\\\"},{\\\"location\\\":130,\\\"type\\\":1,\\\"length\\\":6,\\\"data\\\":\\\"1740792\\\"}]\",\"category\":\"daily\",\"description\":\"#哔哩哔哩漫画#独家,#神赐予我这种尴尬的超能力究竟有什么用?# #Vomic# 这粉色情侣套间是怎么回事?搞这么大排场!?2021年4月9日起每周五更新!更多精彩,小剧场,花絮,尽在哔哩哔哩漫画APP \\n \\n出品:@哔哩哔哩漫画\\n策划:@BV社\\n承制:@音熊联萌 \",\"id\":131192629,\"is_fav\":0,\"pictures\":[{\"img_height\":2400,\"img_size\":2546.9873046875,\"img_src\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/album\\/b355832bc3bf9196f9a6e024504b99279e1463fa.jpg\",\"img_tags\":null,\"img_width\":2400}],\"pictures_count\":1,\"reply\":1,\"role\":[],\"settings\":{\"copy_forbidden\":\"0\"},\"source\":[],\"title\":\"\",\"upload_time\":1619150709},\"user\":{\"head_url\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/face\\/48f8e6afa688e37b9f1e3721a86bea8ce02688dc.jpg\",\"name\":\"BV社\",\"uid\":1902548007,\"vip\":{\"avatar_subscript\":0,\"due_date\":0,\"label\":{\"label_theme\":\"\",\"path\":\"\",\"text\":\"\"},\"nickname_color\":\"\",\"status\":0,\"theme_type\":0,\"type\":0,\"vip_pay_type\":0}}}",
- "extend_json": "{\"ctrl\":[{\"data\":\"326499679\",\"length\":8,\"location\":111,\"type\":1},{\"data\":\"1902548007\",\"length\":5,\"location\":122,\"type\":1},{\"data\":\"1740792\",\"length\":6,\"location\":130,\"type\":1}],\"from\":{\"emoji_type\":1,\"from\":\"timer.publish\",\"up_close_comment\":0,\"verify\":{\"asw\":{\"fl\":15,\"nv\":1},\"sw\":{\"fl\":15,\"nv\":1}}},\"like_icon\":{\"action\":\"\",\"action_url\":\"\",\"end\":\"\",\"end_url\":\"\",\"start\":\"\",\"start_url\":\"\"},\"topic\":{\"is_attach_topic\":1}}",
- "display": {
- "topic_info": {
- "topic_details": [
- {
- "topic_id": 7539944,
- "topic_name": "哔哩哔哩漫画",
- "is_activity": 0,
- "topic_link": ""
- },
- {
- "topic_id": 15321050,
- "topic_name": "神赐予我这种尴尬的超能力究竟有什么用?",
- "is_activity": 0,
- "topic_link": ""
- },
- {
- "topic_id": 3208432,
- "topic_name": "Vomic",
- "is_activity": 1,
- "topic_link": "https://www.bilibili.com/blackboard/dynamic/106426"
- },
- {
- "topic_id": 37542,
- "topic_name": "VOMIC",
- "is_activity": 1,
- "topic_link": "https://www.bilibili.com/blackboard/dynamic/106283"
- },
- {
- "topic_id": 8972604,
- "topic_name": "vomic",
- "is_activity": 1,
- "topic_link": "https://www.bilibili.com/blackboard/dynamic/106766"
- }
- ]
- },
- "relation": {
- "status": 1,
- "is_follow": 0,
- "is_followed": 0
- },
- "up_act_button": {
- "report_title": "举报",
- "founder_report_title": "举报(发起人)",
- "top_title": "置顶",
- "top_confirm_title": "确定将此动态置顶吗",
- "top_cancel_title": "确定将此动态取消置顶吗"
- },
- "show_tip": {
- "del_tip": "要删除动态吗?"
- }
- }
- },
- {
- "desc": {
- "uid": 326499679,
- "type": 8,
- "rid": 332648194,
- "view": 2470218,
- "repost": 11,
- "like": 8329,
- "is_liked": 0,
- "dynamic_id": 516720707859405128,
- "timestamp": 1619146815,
- "orig_dy_id": 516720707860453704,
- "orig_type": 0,
- "user_profile": {
- "info": {
- "uid": 326499679,
- "uname": "哔哩哔哩漫画",
- "face": "https://i1.hdslb.com/bfs/face/2254162161a60b528cfec449f3450409a81ebc37.jpg"
- },
- "card": {
- "official_verify": {
- "type": 1,
- "desc": "哔哩哔哩漫画官方账号"
- }
- },
- "vip": {
- "vipType": 2,
- "vipDueDate": 1941033600000,
- "vipStatus": 1,
- "themeType": 0,
- "label": {
- "path": "",
- "text": "十年大会员",
- "label_theme": "ten_annual_vip",
- "text_color": "#FFFFFF",
- "bg_style": 1,
- "bg_color": "#FB7299",
- "border_color": ""
- },
- "avatar_subscript": 1,
- "nickname_color": "#FB7299",
- "role": 7,
- "avatar_subscript_url": "https://i0.hdslb.com/bfs/vip/icon_Certification_big_member_22_3x.png"
- },
- "pendant": {
- "pid": 0,
- "name": "",
- "image": "",
- "expire": 0,
- "image_enhance": "",
- "image_enhance_frame": ""
- },
- "rank": "10000",
- "sign": "↑ 【关注漫画姬】就送【漫读券5张】,当日或次日登录哔哩哔哩漫画APP即可领取,快来关注领券吧(°∀°)ノ ↑",
- "level_info": {
- "current_level": 6
- }
- },
- "uid_type": 1,
- "recommend_info": {
- "is_attention": 0
- },
- "r_type": 1,
- "topic_board": "C",
- "topic_board_desc": "最新",
- "status": 1,
- "dynamic_id_str": "516720707859405128",
- "pre_dy_id_str": "0",
- "orig_dy_id_str": "516720707860453704",
- "rid_str": "332648194",
- "origin": {
- "uid": 628215255,
- "type": 8,
- "rid": 332648194,
- "view": 4802,
- "repost": 18,
- "dynamic_id": 516720707860453704,
- "timestamp": 1619146815,
- "uid_type": 1,
- "r_type": 1,
- "status": 1,
- "dynamic_id_str": "516720707860453704",
- "pre_dy_id_str": "0",
- "orig_dy_id_str": "0",
- "rid_str": "332648194",
- "bvid": "BV1eA411L7Ck"
- },
- "bvid": "BV1eA411L7Ck"
- },
- "card": "{\"aid\":332648194,\"attribute\":0,\"cid\":327661869,\"copyright\":1,\"ctime\":1619091334,\"desc\":\"漫画节之际,恰逢世界读书日,哔哩哔哩漫画联合欧漫达高,邀请到了法国驻上海总领事馆文化领事柯梅燕女士在线推荐漫画啦!\\n被称为“图像小说”的纯正法国漫画是什么样呢?让我们一起跟着柯梅燕女士的介绍看看这本《莫奈逐光者》,领略欧陆漫画艺术的独特魅力吧~\",\"dimension\":{\"height\":2160,\"rotate\":0,\"width\":3840},\"duration\":219,\"dynamic\":\"漫画节之际,恰逢世界读书日,法国驻上海总领事馆文化领事柯梅燕女士应哔哩哔哩漫画与@欧漫达高 邀请,来给大家推荐漫画啦!\",\"item\":{\"at_control\":\"\"},\"jump_url\":\"bilibili:\\/\\/video\\/332648194\\/?page=1&player_preload=null&player_width=3840&player_height=2160&player_rotate=0\",\"mission_id\":20024,\"owner\":{\"face\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/face\\/341a390cbae7efc021d3c492da56665f2a4944ee.jpg\",\"mid\":628215255,\"name\":\"faguowenhua\"},\"pic\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/archive\\/7de60703c311c2afae10fab44a18bd3fbb5b3a13.jpg\",\"player_info\":null,\"pubdate\":1619146812,\"rights\":{\"autoplay\":1,\"bp\":0,\"download\":0,\"elec\":0,\"hd5\":1,\"is_cooperation\":1,\"movie\":0,\"no_background\":0,\"no_reprint\":1,\"pay\":0,\"ugc_pay\":0,\"ugc_pay_preview\":0},\"short_link\":\"https:\\/\\/b23.tv\\/BV1eA411L7Ck\",\"short_link_v2\":\"https:\\/\\/b23.tv\\/BV1eA411L7Ck\",\"stat\":{\"aid\":332648194,\"coin\":291,\"danmaku\":18,\"dislike\":0,\"favorite\":295,\"his_rank\":0,\"like\":8329,\"now_rank\":0,\"reply\":148,\"share\":95,\"view\":42929},\"state\":0,\"tid\":124,\"title\":\"大师的故事《莫奈逐光者》——来自法国文化领事的漫画推荐│哔哩哔哩漫画节\",\"tname\":\"社科人文\",\"videos\":1}",
- "extend_json": "{\"\":{\"ogv\":{\"ogv_id\":0}},\"dispute\":{\"content\":\"\"},\"from\":{\"from\":\"\",\"verify\":{}},\"like_icon\":{\"action\":\"\",\"action_url\":\"\",\"end\":\"\",\"end_url\":\"\",\"start\":\"\",\"start_url\":\"\"},\"topic\":{\"is_attach_topic\":1}}",
- "activity_infos": {
- "details": [
- {
- "type": 1,
- "detail": "{\"is_show\":1,\"topic_id\":877418,\"topic_link\":\"https:\\/\\/www.bilibili.com\\/blackboard\\/activity-7uSyvlCGRS.html\",\"topic_name\":\"漫画节\"}"
- }
- ]
- },
- "display": {
- "topic_info": {
- "topic_details": [
- {
- "topic_id": 19380831,
- "topic_name": "2021读书日",
- "is_activity": 0,
- "topic_link": ""
- },
- {
- "topic_id": 7539944,
- "topic_name": "哔哩哔哩漫画",
- "is_activity": 0,
- "topic_link": ""
- },
- {
- "topic_id": 1449371,
- "topic_name": "法国漫画",
- "is_activity": 0,
- "topic_link": ""
- },
- {
- "topic_id": 877418,
- "topic_name": "漫画节",
- "is_activity": 1,
- "topic_link": "https://www.bilibili.com/blackboard/activity-7uSyvlCGRS.html"
- },
- {
- "topic_id": 591844,
- "topic_name": "莫奈",
- "is_activity": 0,
- "topic_link": ""
- },
- {
- "topic_id": 507003,
- "topic_name": "欧漫",
- "is_activity": 0,
- "topic_link": ""
- }
- ]
- },
- "usr_action_txt": "与他人联合创作",
- "relation": {
- "status": 1,
- "is_follow": 0,
- "is_followed": 0
- },
- "tags": [
- {
- "tag_type": 3,
- "sub_type": 1,
- "icon": "https://i0.hdslb.com/bfs/album/4c1880a3e9d5fd2c72b339929a73a4b83d2bab93.png",
- "text": "漫画节",
- "link": "https://www.bilibili.com/blackboard/activity-7uSyvlCGRS.html?topic_from=topic-card&name=%E6%BC%AB%E7%94%BB%E8%8A%82",
- "rid": 877418,
- "sub_module": "topic"
- }
- ],
- "up_act_button": {
- "report_title": "举报",
- "founder_report_title": "举报(发起人)",
- "top_title": "置顶",
- "top_confirm_title": "确定将此动态置顶吗",
- "top_cancel_title": "确定将此动态取消置顶吗"
- },
- "show_tip": {
- "del_tip": "要删除动态吗?"
- },
- "cover_play_icon_url": "https://i0.hdslb.com/bfs/album/2269afa7897830b397797ebe5f032b899b405c67.png"
- }
- },
- {
- "desc": {
- "uid": 326499679,
- "type": 2,
- "rid": 131140536,
- "view": 2969785,
- "repost": 11,
- "comment": 55,
- "like": 5077,
- "is_liked": 0,
- "dynamic_id": 516519647563103432,
- "timestamp": 1619100002,
- "orig_type": 0,
- "user_profile": {
- "info": {
- "uid": 326499679,
- "uname": "哔哩哔哩漫画",
- "face": "https://i1.hdslb.com/bfs/face/2254162161a60b528cfec449f3450409a81ebc37.jpg"
- },
- "card": {
- "official_verify": {
- "type": 1,
- "desc": "哔哩哔哩漫画官方账号"
- }
- },
- "vip": {
- "vipType": 2,
- "vipDueDate": 1941033600000,
- "vipStatus": 1,
- "themeType": 0,
- "label": {
- "path": "",
- "text": "十年大会员",
- "label_theme": "ten_annual_vip",
- "text_color": "#FFFFFF",
- "bg_style": 1,
- "bg_color": "#FB7299",
- "border_color": ""
- },
- "avatar_subscript": 1,
- "nickname_color": "#FB7299",
- "role": 7,
- "avatar_subscript_url": "https://i0.hdslb.com/bfs/vip/icon_Certification_big_member_22_3x.png"
- },
- "pendant": {
- "pid": 0,
- "name": "",
- "image": "",
- "expire": 0,
- "image_enhance": "",
- "image_enhance_frame": ""
- },
- "rank": "10000",
- "sign": "↑ 【关注漫画姬】就送【漫读券5张】,当日或次日登录哔哩哔哩漫画APP即可领取,快来关注领券吧(°∀°)ノ ↑",
- "level_info": {
- "current_level": 6
- }
- },
- "uid_type": 1,
- "recommend_info": {
- "is_attention": 0
- },
- "r_type": 1,
- "topic_board": "C",
- "topic_board_desc": "最新",
- "status": 1,
- "dynamic_id_str": "516519647563103432",
- "pre_dy_id_str": "0",
- "orig_dy_id_str": "0",
- "rid_str": "131140536"
- },
- "card": "{\"item\":{\"at_control\":\"\",\"category\":\"daily\",\"description\":\"【#哔哩哔哩漫画# 作品推荐】《#蘑菇汤#》:https:\\/\\/manga.bilibili.com\\/m\\/detail\\/mc29622\\n[霜叶-疑问]才刚转学离开了熟悉的朋友们,就被爸爸送的“生日礼物”震惊到!\\n[煌-震撼]在2次敲打礼物树后,雅丽瞬间往地下坠落?!魅力无穷的蘑菇族的故事现在开始! \",\"id\":131140536,\"is_fav\":0,\"pictures\":[{\"img_height\":960,\"img_size\":198.8623046875,\"img_src\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/album\\/b9f8d6849478db32593ebd4b6b452b873c989fae.jpg\",\"img_tags\":null,\"img_width\":720},{\"img_height\":4532,\"img_size\":4342.27734375,\"img_src\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/album\\/ce9803ca6c0e3424cebcfa42fc4d9a59e809f3d7.jpg\",\"img_tags\":null,\"img_width\":1280},{\"img_height\":2293,\"img_size\":298.7080078125,\"img_src\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/album\\/d52ce6a063eba9c8256458e85e776cd3c82b07f7.jpg\",\"img_tags\":null,\"img_width\":1280},{\"img_height\":4122,\"img_size\":2115.80859375,\"img_src\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/album\\/7bd83bd470376334a3c5ce9266cb6f045cb72faa.jpg\",\"img_tags\":null,\"img_width\":1280},{\"img_height\":4149,\"img_size\":1425.8837890625,\"img_src\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/album\\/80aaba99dbc558287b89aa961329e15814ff85a2.jpg\",\"img_tags\":null,\"img_width\":1280},{\"img_height\":5019,\"img_size\":1546.1396484375,\"img_src\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/album\\/3a86cdd61a701559935bf87bdd7a3f68f59cf5f6.jpg\",\"img_tags\":null,\"img_width\":1280}],\"pictures_count\":6,\"reply\":55,\"role\":[],\"settings\":{\"copy_forbidden\":\"0\"},\"source\":[],\"title\":\"\",\"upload_time\":1619100002},\"user\":{\"head_url\":\"https:\\/\\/i1.hdslb.com\\/bfs\\/face\\/2254162161a60b528cfec449f3450409a81ebc37.jpg\",\"name\":\"哔哩哔哩漫画\",\"uid\":326499679,\"vip\":{\"avatar_subscript\":1,\"due_date\":1941033600000,\"label\":{\"label_theme\":\"ten_annual_vip\",\"path\":\"\",\"text\":\"十年大会员\"},\"nickname_color\":\"#FB7299\",\"status\":1,\"theme_type\":0,\"type\":2,\"vip_pay_type\":0}}}",
- "extend_json": "{\"\":{\"manga\":{\"manga_id\":29622}},\"from\":{\"emoji_type\":1,\"from\":\"timer.publish\",\"up_close_comment\":0,\"verify\":{\"cc\":{\"nv\":1}}},\"like_icon\":{\"action\":\"\",\"action_url\":\"\",\"end\":\"\",\"end_url\":\"\",\"start\":\"\",\"start_url\":\"\"},\"topic\":{\"is_attach_topic\":1}}",
- "display": {
- "topic_info": {
- "topic_details": [
- {
- "topic_id": 7539944,
- "topic_name": "哔哩哔哩漫画",
- "is_activity": 0,
- "topic_link": ""
- },
- {
- "topic_id": 699,
- "topic_name": "蘑菇汤",
- "is_activity": 0,
- "topic_link": ""
- }
- ]
- },
- "emoji_info": {
- "emoji_details": [
- {
- "emoji_name": "[煌-震撼]",
- "id": 3047,
- "package_id": 1,
- "state": 0,
- "type": 1,
- "attr": 0,
- "text": "[煌-震撼]",
- "url": "https://i0.hdslb.com/bfs/emote/7bb39ac289bc97fe52af047020a9bf324ecdebe1.png",
- "meta": {
- "size": 1
- },
- "mtime": 1608785082
- },
- {
- "emoji_name": "[霜叶-疑问]",
- "id": 3048,
- "package_id": 1,
- "state": 0,
- "type": 1,
- "attr": 0,
- "text": "[霜叶-疑问]",
- "url": "https://i0.hdslb.com/bfs/emote/ada3aea8594e724511c1daad15fb3b23900d8e24.png",
- "meta": {
- "size": 1
- },
- "mtime": 1608785082
- }
- ]
- },
- "relation": {
- "status": 1,
- "is_follow": 0,
- "is_followed": 0
- },
- "attach_card": {
- "type": "manga",
- "head_text": "相关漫画作品",
- "cover_url": "https://i0.hdslb.com/bfs/manga-static/72bb5ca8058c0a5b19093136f09a77c2dca707cb.jpg",
- "cover_type": 2,
- "title": "蘑菇汤",
- "desc_first": "更新至13",
- "desc_second": "奇幻,日常,治愈",
- "jump_url": "https://manga.bilibili.com/m/detail/mc29622?from=sub_card",
- "button": {
- "type": 2,
- "uncheck": {
- "icon": "https://i0.hdslb.com/bfs/bangumi/154b6898d2b2c20c21ccef9e41fcf809b518ebb4.png",
- "text": "追漫"
- },
- "check": {
- "icon": "",
- "text": "已追漫"
- },
- "status": 1
- },
- "oid_str": "29622"
- },
- "add_on_card_info": [
- {
- "add_on_card_show_type": 2,
- "attach_card": {
- "type": "manga",
- "head_text": "相关漫画作品",
- "cover_url": "https://i0.hdslb.com/bfs/manga-static/72bb5ca8058c0a5b19093136f09a77c2dca707cb.jpg",
- "cover_type": 2,
- "title": "蘑菇汤",
- "desc_first": "更新至13",
- "desc_second": "奇幻,日常,治愈",
- "jump_url": "https://manga.bilibili.com/m/detail/mc29622?from=sub_card",
- "button": {
- "type": 2,
- "uncheck": {
- "icon": "https://i0.hdslb.com/bfs/bangumi/154b6898d2b2c20c21ccef9e41fcf809b518ebb4.png",
- "text": "追漫"
- },
- "check": {
- "icon": "",
- "text": "已追漫"
- },
- "status": 1
- },
- "oid_str": "29622"
- }
- }
- ],
- "up_act_button": {
- "report_title": "举报",
- "founder_report_title": "举报(发起人)",
- "top_title": "置顶",
- "top_confirm_title": "确定将此动态置顶吗",
- "top_cancel_title": "确定将此动态取消置顶吗"
- },
- "show_tip": {
- "del_tip": "要删除动态吗?"
- }
- }
- },
- {
- "desc": {
- "uid": 326499679,
- "type": 2,
- "rid": 131131421,
- "acl": 0,
- "view": 2620670,
- "repost": 8,
- "comment": 46,
- "like": 4764,
- "is_liked": 0,
- "dynamic_id": 516504207153429574,
- "timestamp": 1619096407,
- "pre_dy_id": 0,
- "orig_dy_id": 0,
- "orig_type": 0,
- "user_profile": {
- "info": {
- "uid": 326499679,
- "uname": "哔哩哔哩漫画",
- "face": "https://i1.hdslb.com/bfs/face/2254162161a60b528cfec449f3450409a81ebc37.jpg"
- },
- "card": {
- "official_verify": {
- "type": 1,
- "desc": "哔哩哔哩漫画官方账号"
- }
- },
- "vip": {
- "vipType": 2,
- "vipDueDate": 1941033600000,
- "vipStatus": 1,
- "themeType": 0,
- "label": {
- "path": "",
- "text": "十年大会员",
- "label_theme": "ten_annual_vip",
- "text_color": "#FFFFFF",
- "bg_style": 1,
- "bg_color": "#FB7299",
- "border_color": ""
- },
- "avatar_subscript": 1,
- "nickname_color": "#FB7299",
- "role": 7,
- "avatar_subscript_url": "https://i0.hdslb.com/bfs/vip/icon_Certification_big_member_22_3x.png"
- },
- "pendant": {
- "pid": 0,
- "name": "",
- "image": "",
- "expire": 0,
- "image_enhance": "",
- "image_enhance_frame": ""
- },
- "rank": "10000",
- "sign": "↑ 【关注漫画姬】就送【漫读券5张】,当日或次日登录哔哩哔哩漫画APP即可领取,快来关注领券吧(°∀°)ノ ↑",
- "level_info": {
- "current_level": 6
- }
- },
- "uid_type": 1,
- "recommend_info": {
- "is_attention": 0
- },
- "stype": 0,
- "r_type": 1,
- "inner_id": 0,
- "topic_board": "C",
- "topic_board_desc": "最新",
- "status": 1,
- "dynamic_id_str": "516504207153429574",
- "pre_dy_id_str": "0",
- "orig_dy_id_str": "0",
- "rid_str": "131131421"
- },
- "card": "{\"item\":{\"at_control\":\"\",\"category\":\"daily\",\"description\":\"【#哔哩哔哩漫画# 作品推荐】《#身体互换#》:https:\\/\\/manga.bilibili.com\\/m\\/detail\\/mc29621 \\n[热词系列_害]青梅竹马三人组,同是失恋沦落人,相逢在许愿池边时奇怪的事情发生了……\\n[热词系列_知识增加]什么?我和喜欢的女生互换了身体?!学霸、落落大方、机智果断的属性都出现在我自己的身上,突……突然感觉自己变帅了?\",\"id\":131131421,\"is_fav\":0,\"pictures\":[{\"img_height\":960,\"img_size\":537.4560546875,\"img_src\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/album\\/0144a1a68b77eb293915fe8e63876a592c39a179.jpg\",\"img_tags\":null,\"img_width\":720},{\"img_height\":2687,\"img_size\":880.25,\"img_src\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/album\\/5c169c961e6abe6ed9e19a508d8ce742219fce48.jpg\",\"img_tags\":null,\"img_width\":1280},{\"img_height\":2329,\"img_size\":649.5859375,\"img_src\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/album\\/20d28936c37fa2c62e9ef5bab0050d670a6074c7.jpg\",\"img_tags\":null,\"img_width\":1280},{\"img_height\":2236,\"img_size\":703.5146484375,\"img_src\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/album\\/5ddea24d47abb40636d05b1cd07a759eb7fe7967.jpg\",\"img_tags\":null,\"img_width\":1280},{\"img_height\":3472,\"img_size\":714.130859375,\"img_src\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/album\\/d1c9aafd4317192c3815fb342aee64887cfd1a6e.jpg\",\"img_tags\":null,\"img_width\":2500},{\"img_height\":6321,\"img_size\":3838.9482421875,\"img_src\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/album\\/f16021df4379261ec1c118d7e2a3b7259e759671.jpg\",\"img_tags\":null,\"img_width\":2500}],\"pictures_count\":6,\"reply\":46,\"role\":[],\"settings\":{\"copy_forbidden\":\"0\"},\"source\":[],\"title\":\"\",\"upload_time\":1619096407},\"user\":{\"head_url\":\"https:\\/\\/i1.hdslb.com\\/bfs\\/face\\/2254162161a60b528cfec449f3450409a81ebc37.jpg\",\"name\":\"哔哩哔哩漫画\",\"uid\":326499679,\"vip\":{\"avatar_subscript\":1,\"due_date\":1941033600000,\"label\":{\"label_theme\":\"ten_annual_vip\",\"path\":\"\",\"text\":\"十年大会员\"},\"nickname_color\":\"#FB7299\",\"status\":1,\"theme_type\":0,\"type\":2,\"vip_pay_type\":0}}}",
- "extend_json": "{\"\":{\"manga\":{\"manga_id\":29621}},\"from\":{\"emoji_type\":1,\"from\":\"timer.publish\",\"up_close_comment\":0,\"verify\":{\"cc\":{\"nv\":1}}},\"like_icon\":{\"action\":\"\",\"action_url\":\"\",\"end\":\"\",\"end_url\":\"\",\"start\":\"\",\"start_url\":\"\"},\"topic\":{\"is_attach_topic\":1}}",
- "display": {
- "topic_info": {
- "topic_details": [
- {
- "topic_id": 7539944,
- "topic_name": "哔哩哔哩漫画",
- "is_activity": 0,
- "topic_link": ""
- },
- {
- "topic_id": 200686,
- "topic_name": "身体互换",
- "is_activity": 1,
- "topic_link": "https://www.bilibili.com/blackboard/dynamic/20573"
- }
- ]
- },
- "emoji_info": {
- "emoji_details": [
- {
- "emoji_name": "[热词系列_害]",
- "id": 1965,
- "package_id": 53,
- "state": 0,
- "type": 1,
- "attr": 2,
- "text": "[热词系列_害]",
- "url": "https://i0.hdslb.com/bfs/emote/cbe798a194612958537c5282fcca7c3bcd2aa15c.png",
- "meta": {
- "size": 2
- },
- "mtime": 1598525979
- },
- {
- "emoji_name": "[热词系列_知识增加]",
- "id": 1937,
- "package_id": 53,
- "state": 0,
- "type": 1,
- "attr": 2,
- "text": "[热词系列_知识增加]",
- "url": "https://i0.hdslb.com/bfs/emote/142409b595982b8210b2958f3d340f3b47942645.png",
- "meta": {
- "size": 2
- },
- "mtime": 1617293934
- }
- ]
- },
- "relation": {
- "status": 1,
- "is_follow": 0,
- "is_followed": 0
- },
- "attach_card": {
- "type": "manga",
- "head_text": "相关漫画作品",
- "cover_url": "https://i0.hdslb.com/bfs/manga-static/2f7e4c1c1e6122c6488ce986d5785319fc329b89.jpg",
- "cover_type": 2,
- "title": "身体互换",
- "desc_first": "更新至15",
- "desc_second": "恋爱,校园,奇幻",
- "jump_url": "https://manga.bilibili.com/m/detail/mc29621?from=sub_card",
- "button": {
- "type": 2,
- "uncheck": {
- "icon": "https://i0.hdslb.com/bfs/bangumi/154b6898d2b2c20c21ccef9e41fcf809b518ebb4.png",
- "text": "追漫"
- },
- "check": {
- "icon": "",
- "text": "已追漫"
- },
- "status": 1
- },
- "oid_str": "29621"
- },
- "add_on_card_info": [
- {
- "add_on_card_show_type": 2,
- "attach_card": {
- "type": "manga",
- "head_text": "相关漫画作品",
- "cover_url": "https://i0.hdslb.com/bfs/manga-static/2f7e4c1c1e6122c6488ce986d5785319fc329b89.jpg",
- "cover_type": 2,
- "title": "身体互换",
- "desc_first": "更新至15",
- "desc_second": "恋爱,校园,奇幻",
- "jump_url": "https://manga.bilibili.com/m/detail/mc29621?from=sub_card",
- "button": {
- "type": 2,
- "uncheck": {
- "icon": "https://i0.hdslb.com/bfs/bangumi/154b6898d2b2c20c21ccef9e41fcf809b518ebb4.png",
- "text": "追漫"
- },
- "check": {
- "icon": "",
- "text": "已追漫"
- },
- "status": 1
- },
- "oid_str": "29621"
- }
- }
- ],
- "up_act_button": {
- "report_title": "举报",
- "founder_report_title": "举报(发起人)",
- "top_title": "置顶",
- "top_confirm_title": "确定将此动态置顶吗",
- "top_cancel_title": "确定将此动态取消置顶吗"
- },
- "show_tip": {
- "del_tip": "要删除动态吗?"
- }
- }
- },
- {
- "desc": {
- "uid": 398468825,
- "type": 8,
- "rid": 545184671,
- "acl": 0,
- "view": 393,
- "repost": 0,
- "like": 8,
- "is_liked": 0,
- "dynamic_id": 516478317094534470,
- "timestamp": 1619090379,
- "pre_dy_id": 0,
- "orig_dy_id": 0,
- "orig_type": 0,
- "user_profile": {
- "info": {
- "uid": 398468825,
- "uname": "欧漫达高",
- "face": "https://i2.hdslb.com/bfs/face/0ba24b18b461b80c5727b5dee9a66bb9e25c1f46.jpg"
- },
- "card": {
- "official_verify": {
- "type": 1,
- "desc": "欧漫达高文化传媒(上海)有限公司"
- }
- },
- "vip": {
- "vipType": 0,
- "vipDueDate": 0,
- "vipStatus": 0,
- "themeType": 0,
- "label": {
- "path": "",
- "text": "",
- "label_theme": "",
- "text_color": "",
- "bg_style": 0,
- "bg_color": "",
- "border_color": ""
- },
- "avatar_subscript": 0,
- "nickname_color": "",
- "role": 0,
- "avatar_subscript_url": ""
- },
- "pendant": {
- "pid": 0,
- "name": "",
- "image": "",
- "expire": 0,
- "image_enhance": "",
- "image_enhance_frame": ""
- },
- "rank": "10000",
- "sign": "经典欧洲绘本、漫画、动画集合地。Weibo:欧漫达高 WeChat:DargaudShanghai",
- "level_info": {
- "current_level": 2
- }
- },
- "uid_type": 1,
- "recommend_info": {
- "is_attention": 0
- },
- "stype": 0,
- "r_type": 1,
- "inner_id": 0,
- "topic_board": "C",
- "topic_board_desc": "最新",
- "status": 1,
- "dynamic_id_str": "516478317094534470",
- "pre_dy_id_str": "0",
- "orig_dy_id_str": "0",
- "rid_str": "545184671",
- "bvid": "BV1ki4y1A7Kb"
- },
- "card": "{\"aid\":545184671,\"attribute\":0,\"cid\":327679459,\"copyright\":1,\"ctime\":1619090379,\"desc\":\"2151年,由于气候变化,世界人口缩减到了原来的十分之一,人类生活在脆弱的平衡之中。仅剩的7个城市区建立了新的社会生活模式。宇航员西蒙是名为“未来计划”的太空探险任务的一员,但这将是一场有去无回的旅行,承载着人类历史上前所未有的野心。在出发之前,西蒙带儿子尤里兜了最后一次风。开始了解世界的尤里能否明白母亲对完美、对冒险和对未知的渴求呢?\",\"dimension\":{\"height\":1080,\"rotate\":0,\"width\":1920},\"duration\":58,\"dynamic\":\"昨天的科幻欧漫预告片还没看过瘾?今天和另一部科幻漫的编剧一起规划未来吧!这位作者的日常向漫画《双面人生》中文版在#哔哩哔哩漫画#就能看哦~\",\"item\":{\"at_control\":\"\"},\"jump_url\":\"bilibili:\\/\\/video\\/545184671\\/?page=1&player_preload=null&player_width=1920&player_height=1080&player_rotate=0\",\"owner\":{\"face\":\"https:\\/\\/i2.hdslb.com\\/bfs\\/face\\/0ba24b18b461b80c5727b5dee9a66bb9e25c1f46.jpg\",\"mid\":398468825,\"name\":\"欧漫达高\"},\"pic\":\"https:\\/\\/i2.hdslb.com\\/bfs\\/archive\\/3411696f65b2bce0954f1dc66b1adc0a73de398a.jpg\",\"player_info\":null,\"pubdate\":1619090379,\"rights\":{\"autoplay\":1,\"bp\":0,\"download\":0,\"elec\":0,\"hd5\":0,\"is_cooperation\":0,\"movie\":0,\"no_background\":0,\"no_reprint\":1,\"pay\":0,\"ugc_pay\":0,\"ugc_pay_preview\":0},\"short_link\":\"https:\\/\\/b23.tv\\/BV1ki4y1A7Kb\",\"short_link_v2\":\"https:\\/\\/b23.tv\\/BV1ki4y1A7Kb\",\"stat\":{\"aid\":545184671,\"coin\":4,\"danmaku\":0,\"dislike\":0,\"favorite\":1,\"his_rank\":0,\"like\":8,\"now_rank\":0,\"reply\":0,\"share\":1,\"view\":29},\"state\":0,\"tid\":27,\"title\":\"【欧漫作家访谈】《未来计划》(SOON)作者Thomas Cadène采访\",\"tname\":\"综合\",\"videos\":1}",
- "extend_json": "{\"\":{\"ogv\":{\"ogv_id\":0}},\"dispute\":{\"content\":\"\"},\"from\":{\"from\":\"\",\"verify\":{\"asw\":{\"fl\":15},\"sw\":{\"fl\":15}}},\"like_icon\":{\"action\":\"\",\"action_url\":\"\",\"end\":\"\",\"end_url\":\"\",\"start\":\"\",\"start_url\":\"\"},\"topic\":{\"is_attach_topic\":1}}",
- "display": {
- "topic_info": {
- "topic_details": [
- {
- "topic_id": 7539944,
- "topic_name": "哔哩哔哩漫画",
- "is_activity": 0,
- "topic_link": ""
- },
- {
- "topic_id": 530918,
- "topic_name": "动漫杂谈",
- "is_activity": 0,
- "topic_link": ""
- },
- {
- "topic_id": 444408,
- "topic_name": "编剧",
- "is_activity": 0,
- "topic_link": ""
- },
- {
- "topic_id": 43646,
- "topic_name": "生态",
- "is_activity": 0,
- "topic_link": ""
- },
- {
- "topic_id": 33730,
- "topic_name": "法语",
- "is_activity": 0,
- "topic_link": ""
- },
- {
- "topic_id": 13619,
- "topic_name": "欧美",
- "is_activity": 0,
- "topic_link": ""
- },
- {
- "topic_id": 9264,
- "topic_name": "宇宙",
- "is_activity": 0,
- "topic_link": ""
- }
- ]
- },
- "usr_action_txt": "投稿了视频",
- "relation": {
- "status": 1,
- "is_follow": 0,
- "is_followed": 0
- },
- "up_act_button": {
- "report_title": "举报",
- "founder_report_title": "举报(发起人)",
- "top_title": "置顶",
- "top_confirm_title": "确定将此动态置顶吗",
- "top_cancel_title": "确定将此动态取消置顶吗"
- },
- "show_tip": {
- "del_tip": "要删除动态吗?"
- },
- "cover_play_icon_url": "https://i0.hdslb.com/bfs/album/2269afa7897830b397797ebe5f032b899b405c67.png"
- }
- },
- {
- "desc": {
- "uid": 326499679,
- "type": 8,
- "rid": 630241940,
- "view": 2624796,
- "repost": 5,
- "like": 10051,
- "is_liked": 0,
- "dynamic_id": 516457881632645972,
- "timestamp": 1619085621,
- "orig_dy_id": 516457881633694548,
- "orig_type": 0,
- "user_profile": {
- "info": {
- "uid": 326499679,
- "uname": "哔哩哔哩漫画",
- "face": "https://i1.hdslb.com/bfs/face/2254162161a60b528cfec449f3450409a81ebc37.jpg"
- },
- "card": {
- "official_verify": {
- "type": 1,
- "desc": "哔哩哔哩漫画官方账号"
- }
- },
- "vip": {
- "vipType": 2,
- "vipDueDate": 1941033600000,
- "vipStatus": 1,
- "themeType": 0,
- "label": {
- "path": "",
- "text": "十年大会员",
- "label_theme": "ten_annual_vip",
- "text_color": "#FFFFFF",
- "bg_style": 1,
- "bg_color": "#FB7299",
- "border_color": ""
- },
- "avatar_subscript": 1,
- "nickname_color": "#FB7299",
- "role": 7,
- "avatar_subscript_url": "https://i0.hdslb.com/bfs/vip/icon_Certification_big_member_22_3x.png"
- },
- "pendant": {
- "pid": 0,
- "name": "",
- "image": "",
- "expire": 0,
- "image_enhance": "",
- "image_enhance_frame": ""
- },
- "rank": "10000",
- "sign": "↑ 【关注漫画姬】就送【漫读券5张】,当日或次日登录哔哩哔哩漫画APP即可领取,快来关注领券吧(°∀°)ノ ↑",
- "level_info": {
- "current_level": 6
- }
- },
- "uid_type": 1,
- "recommend_info": {
- "is_attention": 0
- },
- "r_type": 1,
- "topic_board": "C",
- "topic_board_desc": "最新",
- "status": 1,
- "dynamic_id_str": "516457881632645972",
- "pre_dy_id_str": "0",
- "orig_dy_id_str": "516457881633694548",
- "rid_str": "630241940",
- "origin": {
- "uid": 7435683,
- "type": 8,
- "rid": 630241940,
- "acl": 0,
- "view": 32239,
- "repost": 13,
- "like": 0,
- "dynamic_id": 516457881633694548,
- "timestamp": 1619085621,
- "pre_dy_id": 0,
- "orig_dy_id": 0,
- "uid_type": 1,
- "stype": 0,
- "r_type": 1,
- "inner_id": 0,
- "status": 1,
- "dynamic_id_str": "516457881633694548",
- "pre_dy_id_str": "0",
- "orig_dy_id_str": "0",
- "rid_str": "630241940",
- "bvid": "BV1b84y1F7qT"
- },
- "bvid": "BV1b84y1F7qT"
- },
- "card": "{\"aid\":630241940,\"attribute\":0,\"cid\":325729439,\"copyright\":1,\"ctime\":1618830035,\"desc\":\"BGM:No Rainbows In The Desert (Pluto Tapes),歌手名:Unlike Pluto\\n咒术回战单素材,帅就完事!求3连!\",\"dimension\":{\"height\":1080,\"rotate\":0,\"width\":1920},\"duration\":94,\"dynamic\":\"\",\"item\":{\"at_control\":\"\"},\"jump_url\":\"bilibili:\\/\\/video\\/630241940\\/?page=1&player_preload=null&player_width=1920&player_height=1080&player_rotate=0\",\"owner\":{\"face\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/face\\/a536ad1c4c66e17113cfb599fcbb97e03bcdae44.jpg\",\"mid\":7435683,\"name\":\"葉月Mashiro灬\"},\"pic\":\"https:\\/\\/i2.hdslb.com\\/bfs\\/archive\\/663b7f275b0f93356523880aa7e626803168df93.jpg\",\"player_info\":null,\"pubdate\":1619085619,\"rights\":{\"autoplay\":1,\"bp\":0,\"download\":0,\"elec\":0,\"hd5\":1,\"is_cooperation\":1,\"movie\":0,\"no_background\":0,\"no_reprint\":1,\"pay\":0,\"ugc_pay\":0,\"ugc_pay_preview\":0},\"short_link\":\"https:\\/\\/b23.tv\\/BV1b84y1F7qT\",\"short_link_v2\":\"https:\\/\\/b23.tv\\/BV1b84y1F7qT\",\"stat\":{\"aid\":630241940,\"coin\":889,\"danmaku\":146,\"dislike\":0,\"favorite\":1167,\"his_rank\":0,\"like\":10051,\"now_rank\":0,\"reply\":95,\"share\":205,\"view\":61405},\"state\":0,\"tid\":24,\"title\":\"全员高能!这才是咒术回战!\",\"tname\":\"MAD·AMV\",\"videos\":1}",
- "extend_json": "{\"\":{\"decoration\":{\"decoration_id\":0},\"game\":{\"game_id\":0},\"manga\":{\"manga_id\":26505},\"match\":{\"match_id\":0},\"official_activity\":{\"official_activity_id\":0},\"ogv\":{\"auto_bind\":0,\"ogv_id\":0},\"pgc\":0,\"pugv\":{\"pugv_id\":0},\"reserve\":{\"reserve_id\":0},\"ugc\":{\"ugc_id\":0}},\"bottom\":{},\"dispute\":{\"content\":\"\"},\"from\":{\"from\":\"\"},\"like_icon\":{\"action\":\"\",\"action_url\":\"\",\"end\":\"\",\"end_url\":\"\",\"start\":\"\",\"start_url\":\"\"},\"topic\":{\"is_attach_topic\":1}}",
- "display": {
- "topic_info": {
- "topic_details": [
- {
- "topic_id": 391,
- "topic_name": "AMV",
- "is_activity": 0,
- "topic_link": ""
- },
- {
- "topic_id": 281,
- "topic_name": "MAD",
- "is_activity": 0,
- "topic_link": ""
- },
- {
- "topic_id": 7662089,
- "topic_name": "五条悟",
- "is_activity": 1,
- "topic_link": "https://www.bilibili.com/blackboard/dynamic/66796"
- },
- {
- "topic_id": 7539944,
- "topic_name": "哔哩哔哩漫画",
- "is_activity": 0,
- "topic_link": ""
- },
- {
- "topic_id": 6497596,
- "topic_name": "咒术回战",
- "is_activity": 0,
- "topic_link": ""
- },
- {
- "topic_id": 3545,
- "topic_name": "热血",
- "is_activity": 0,
- "topic_link": ""
- }
- ]
- },
- "usr_action_txt": "与他人联合创作",
- "relation": {
- "status": 1,
- "is_follow": 0,
- "is_followed": 0
- },
- "attach_card": {
- "type": "manga",
- "head_text": "相关漫画作品",
- "cover_url": "https://i0.hdslb.com/bfs/manga-static/ca4c24bd8bf896545811f401106c19588b80549d.png",
- "cover_type": 2,
- "title": "咒术回战",
- "desc_first": "更新至146",
- "desc_second": "冒险,热血,奇幻",
- "jump_url": "https://manga.bilibili.com/m/detail/mc26505?from=sub_card",
- "button": {
- "type": 2,
- "uncheck": {
- "icon": "https://i0.hdslb.com/bfs/bangumi/154b6898d2b2c20c21ccef9e41fcf809b518ebb4.png",
- "text": "追漫"
- },
- "check": {
- "icon": "",
- "text": "已追漫"
- },
- "status": 1
- },
- "oid_str": "26505"
- },
- "add_on_card_info": [
- {
- "add_on_card_show_type": 2,
- "attach_card": {
- "type": "manga",
- "head_text": "相关漫画作品",
- "cover_url": "https://i0.hdslb.com/bfs/manga-static/ca4c24bd8bf896545811f401106c19588b80549d.png",
- "cover_type": 2,
- "title": "咒术回战",
- "desc_first": "更新至146",
- "desc_second": "冒险,热血,奇幻",
- "jump_url": "https://manga.bilibili.com/m/detail/mc26505?from=sub_card",
- "button": {
- "type": 2,
- "uncheck": {
- "icon": "https://i0.hdslb.com/bfs/bangumi/154b6898d2b2c20c21ccef9e41fcf809b518ebb4.png",
- "text": "追漫"
- },
- "check": {
- "icon": "",
- "text": "已追漫"
- },
- "status": 1
- },
- "oid_str": "26505"
- }
- }
- ],
- "up_act_button": {
- "report_title": "举报",
- "founder_report_title": "举报(发起人)",
- "top_title": "置顶",
- "top_confirm_title": "确定将此动态置顶吗",
- "top_cancel_title": "确定将此动态取消置顶吗"
- },
- "show_tip": {
- "del_tip": "要删除动态吗?"
- },
- "cover_play_icon_url": "https://i0.hdslb.com/bfs/album/2269afa7897830b397797ebe5f032b899b405c67.png"
- }
- }
- ],
- "offset": "516457881632645972",
- "_gt_": 0
- }
-}
-```
-
\ No newline at end of file
diff --git a/docs/dynamic/topic.md b/docs/dynamic/topic.md
index 68a53e8..3ee34db 100644
--- a/docs/dynamic/topic.md
+++ b/docs/dynamic/topic.md
@@ -1,4 +1,7935 @@
-# 话题搜索
+# 话题
+
+## 获取包含置顶及热门的动态列表
+
+> https://api.vc.bilibili.com/topic_svr/v1/topic_svr/fetch_dynamics
+
+*请求方式:GET*
+
+**url参数:**
+
+| 参数名 | 类型 | 内容 | 必要性 | 备注 |
+| ------------ | ---- | ---------- | ------ | -------- |
+| topic_name | str | 话题名称 | 必要(可选) | topic_id与topic_name任选一个 |
+| topic_id | num | 话题id | 必要(可选) | topic_id与topic_name任选一个 |
+| sortby | num | 排序方式 | 非必要 | 一般情况下带上参数2,在部分话题中使用可以排除热门部分|
+| offset | num | 偏移值 | 非必要| 可用于偏移显示的动态列表(为`0`时获取不包含置顶及热门的最新动态) |
+
+**json回复:**
+
+根对象:
+
+| 字段 | 类型 | 内容 | 备注 |
+| ------- | ---- | -------- | ------- |
+| code | num | 返回值 | 0:成功 |
+| data | obj | 信息本体 | |
+| message | str | 错误信息 | 默认为空 |
+| msg | num | 空 | |
+
+`data`对象:
+
+| 字段 | 类型 | 内容 | 备注 |
+| ----------- | ----- | ---------- | ------------ |
+| attentions | obj | 当前登录账户关注列表(仅在传递了登录信息时出现) | |
+| cards | array | 动态列表 | |
+| founder_uid | num | 0 | 作用尚不明确 |
+| has_more | num | 当前话题是否有额外的动态 | 0:无额外动态
1:有额外动态 |
+| is_drawer_topic | num | 0 | 作用尚不明确 |
+| offset | str | 接下来获取列表时的偏移值 | 一般为当前获取的话题列表下最后一个动态id |
+| \_gt\_ | num | 0 | 作用尚不明确 |
+
+`data`中的`cards`数组:
+
+| 项 | 类型 | 内容 | 备注 |
+| ---- | ---- | ------------- | ---- |
+| 0 | obj | 第1条动态卡片 | |
+| n | obj | 第(n+1)条动态卡片 | |
+| …… | obj | …… | …… |
+
+`data`中的`cards`数组中的对象:
+
+基本同 [获取特定动态卡片信息](get_dynamic_detail.md) 中的data对象
+
+**示例:**
+
+获取话题`哔哩哔哩漫画`(话题id`7539944`)的当前动态列表(包含置顶&热门)
+
+topic_name方式:
+```shell
+curl -G 'https://api.vc.bilibili.com/topic_svr/v1/topic_svr/fetch_dynamics' \
+--data-urlencode 'topic_name=哔哩哔哩漫画&sortby=2'
+```
+topic_id方式:
+```shell
+curl -G 'https://api.vc.bilibili.com/topic_svr/v1/topic_svr/fetch_dynamics' \
+--data-urlencode 'topic_id=7539944&sortby=2'
+```
+
+
+查看响应示例:
+
+```json
+{
+ "code": 0,
+ "msg": "",
+ "message": "",
+ "data": {
+ "has_more": 1,
+ "cards": [
+ {
+ "desc": {
+ "uid": 628215255,
+ "type": 8,
+ "rid": 332648194,
+ "view": 4768,
+ "repost": 18,
+ "like": 8325,
+ "is_liked": 0,
+ "dynamic_id": 516720707860453704,
+ "timestamp": 1619146815,
+ "orig_type": 0,
+ "user_profile": {
+ "info": {
+ "uid": 628215255,
+ "uname": "faguowenhua",
+ "face": "https://i0.hdslb.com/bfs/face/341a390cbae7efc021d3c492da56665f2a4944ee.jpg"
+ },
+ "card": {
+ "official_verify": {
+ "type": 1,
+ "desc": "法国文化官方账号"
+ }
+ },
+ "vip": {
+ "vipType": 0,
+ "vipDueDate": 0,
+ "vipStatus": 0,
+ "themeType": 0,
+ "label": {
+ "path": "",
+ "text": "",
+ "label_theme": "",
+ "text_color": "",
+ "bg_style": 0,
+ "bg_color": "",
+ "border_color": ""
+ },
+ "avatar_subscript": 0,
+ "nickname_color": "",
+ "role": 0,
+ "avatar_subscript_url": ""
+ },
+ "pendant": {
+ "pid": 0,
+ "name": "",
+ "image": "",
+ "expire": 0,
+ "image_enhance": "",
+ "image_enhance_frame": ""
+ },
+ "rank": "10000",
+ "sign": "法国驻华使馆文化处官方平台",
+ "level_info": {
+ "current_level": 2
+ }
+ },
+ "uid_type": 1,
+ "recommend_info": {
+ "is_attention": 0
+ },
+ "r_type": 1,
+ "topic_board": "A",
+ "topic_board_desc": "热门",
+ "status": 1,
+ "dynamic_id_str": "516720707860453704",
+ "pre_dy_id_str": "0",
+ "orig_dy_id_str": "0",
+ "rid_str": "332648194",
+ "bvid": "BV1eA411L7Ck"
+ },
+ "card": "{\"aid\":332648194,\"attribute\":0,\"cid\":327661869,\"copyright\":1,\"ctime\":1619091334,\"desc\":\"漫画节之际,恰逢世界读书日,哔哩哔哩漫画联合欧漫达高,邀请到了法国驻上海总领事馆文化领事柯梅燕女士在线推荐漫画啦!\\n被称为“图像小说”的纯正法国漫画是什么样呢?让我们一起跟着柯梅燕女士的介绍看看这本《莫奈逐光者》,领略欧陆漫画艺术的独特魅力吧~\",\"dimension\":{\"height\":2160,\"rotate\":0,\"width\":3840},\"duration\":219,\"dynamic\":\"漫画节之际,恰逢世界读书日,法国驻上海总领事馆文化领事柯梅燕女士应哔哩哔哩漫画与@欧漫达高 邀请,来给大家推荐漫画啦!\",\"item\":{\"at_control\":\"\"},\"jump_url\":\"bilibili:\\/\\/video\\/332648194\\/?page=1&player_preload=null&player_width=3840&player_height=2160&player_rotate=0\",\"mission_id\":20024,\"owner\":{\"face\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/face\\/341a390cbae7efc021d3c492da56665f2a4944ee.jpg\",\"mid\":628215255,\"name\":\"faguowenhua\"},\"pic\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/archive\\/7de60703c311c2afae10fab44a18bd3fbb5b3a13.jpg\",\"player_info\":null,\"pubdate\":1619146812,\"rights\":{\"autoplay\":1,\"bp\":0,\"download\":0,\"elec\":0,\"hd5\":1,\"is_cooperation\":1,\"movie\":0,\"no_background\":0,\"no_reprint\":1,\"pay\":0,\"ugc_pay\":0,\"ugc_pay_preview\":0},\"short_link\":\"https:\\/\\/b23.tv\\/BV1eA411L7Ck\",\"short_link_v2\":\"https:\\/\\/b23.tv\\/BV1eA411L7Ck\",\"stat\":{\"aid\":332648194,\"coin\":291,\"danmaku\":18,\"dislike\":0,\"favorite\":295,\"his_rank\":0,\"like\":8325,\"now_rank\":0,\"reply\":148,\"share\":95,\"view\":42916},\"state\":0,\"tid\":124,\"title\":\"大师的故事《莫奈逐光者》——来自法国文化领事的漫画推荐│哔哩哔哩漫画节\",\"tname\":\"社科人文\",\"videos\":1}",
+ "extend_json": "{\"\":{\"ogv\":{\"ogv_id\":0}},\"dispute\":{\"content\":\"\"},\"from\":{\"from\":\"\",\"verify\":{}},\"like_icon\":{\"action\":\"\",\"action_url\":\"\",\"end\":\"\",\"end_url\":\"\",\"start\":\"\",\"start_url\":\"\"},\"topic\":{\"is_attach_topic\":1}}",
+ "activity_infos": {
+ "details": [
+ {
+ "type": 1,
+ "detail": "{\"is_show\":1,\"topic_id\":877418,\"topic_link\":\"https:\\/\\/www.bilibili.com\\/blackboard\\/activity-7uSyvlCGRS.html\",\"topic_name\":\"漫画节\"}"
+ }
+ ]
+ },
+ "display": {
+ "topic_info": {
+ "topic_details": [
+ {
+ "topic_id": 19380831,
+ "topic_name": "2021读书日",
+ "is_activity": 0,
+ "topic_link": ""
+ },
+ {
+ "topic_id": 7539944,
+ "topic_name": "哔哩哔哩漫画",
+ "is_activity": 0,
+ "topic_link": ""
+ },
+ {
+ "topic_id": 1449371,
+ "topic_name": "法国漫画",
+ "is_activity": 0,
+ "topic_link": ""
+ },
+ {
+ "topic_id": 877418,
+ "topic_name": "漫画节",
+ "is_activity": 1,
+ "topic_link": "https://www.bilibili.com/blackboard/activity-7uSyvlCGRS.html"
+ },
+ {
+ "topic_id": 591844,
+ "topic_name": "莫奈",
+ "is_activity": 0,
+ "topic_link": ""
+ },
+ {
+ "topic_id": 507003,
+ "topic_name": "欧漫",
+ "is_activity": 0,
+ "topic_link": ""
+ }
+ ]
+ },
+ "usr_action_txt": "投稿了视频",
+ "relation": {
+ "status": 1,
+ "is_follow": 0,
+ "is_followed": 0
+ },
+ "tags": [
+ {
+ "tag_type": 3,
+ "sub_type": 1,
+ "icon": "https://i0.hdslb.com/bfs/album/4c1880a3e9d5fd2c72b339929a73a4b83d2bab93.png",
+ "text": "漫画节",
+ "link": "https://www.bilibili.com/blackboard/activity-7uSyvlCGRS.html?topic_from=topic-card&name=%E6%BC%AB%E7%94%BB%E8%8A%82",
+ "rid": 877418,
+ "sub_module": "topic"
+ }
+ ],
+ "up_act_button": {
+ "report_title": "举报",
+ "founder_report_title": "举报(发起人)",
+ "top_title": "置顶",
+ "top_confirm_title": "确定将此动态置顶吗",
+ "top_cancel_title": "确定将此动态取消置顶吗"
+ },
+ "show_tip": {
+ "del_tip": "要删除动态吗?"
+ },
+ "cover_play_icon_url": "https://i0.hdslb.com/bfs/album/2269afa7897830b397797ebe5f032b899b405c67.png"
+ }
+ },
+ {
+ "desc": {
+ "uid": 7435683,
+ "type": 8,
+ "rid": 630241940,
+ "acl": 0,
+ "view": 32187,
+ "repost": 13,
+ "like": 10044,
+ "is_liked": 0,
+ "dynamic_id": 516457881633694548,
+ "timestamp": 1619085621,
+ "pre_dy_id": 0,
+ "orig_dy_id": 0,
+ "orig_type": 0,
+ "user_profile": {
+ "info": {
+ "uid": 7435683,
+ "uname": "葉月Mashiro灬",
+ "face": "https://i0.hdslb.com/bfs/face/a536ad1c4c66e17113cfb599fcbb97e03bcdae44.jpg"
+ },
+ "card": {
+ "official_verify": {
+ "type": 0,
+ "desc": "bilibili 知名动漫UP主"
+ }
+ },
+ "vip": {
+ "vipType": 2,
+ "vipDueDate": 1642694400000,
+ "vipStatus": 1,
+ "themeType": 0,
+ "label": {
+ "path": "",
+ "text": "年度大会员",
+ "label_theme": "annual_vip",
+ "text_color": "#FFFFFF",
+ "bg_style": 1,
+ "bg_color": "#FB7299",
+ "border_color": ""
+ },
+ "avatar_subscript": 1,
+ "nickname_color": "#FB7299",
+ "role": 3,
+ "avatar_subscript_url": "https://i0.hdslb.com/bfs/vip/icon_Certification_big_member_22_3x.png"
+ },
+ "pendant": {
+ "pid": 2701,
+ "name": "七濑胡桃",
+ "image": "https://i0.hdslb.com/bfs/garb/item/2c40fe802d1935d96e4fc63ec42274d8846a34b7.png",
+ "expire": 0,
+ "image_enhance": "https://i0.hdslb.com/bfs/garb/item/2c40fe802d1935d96e4fc63ec42274d8846a34b7.png",
+ "image_enhance_frame": ""
+ },
+ "rank": "10000",
+ "sign": "个人up主 商业合作QQ:740998177月月本人 动漫交流群:958318991 约稿请私信",
+ "level_info": {
+ "current_level": 6
+ }
+ },
+ "uid_type": 1,
+ "recommend_info": {
+ "is_attention": 0
+ },
+ "stype": 0,
+ "r_type": 1,
+ "inner_id": 0,
+ "topic_board": "A",
+ "topic_board_desc": "热门",
+ "status": 1,
+ "dynamic_id_str": "516457881633694548",
+ "pre_dy_id_str": "0",
+ "orig_dy_id_str": "0",
+ "rid_str": "630241940",
+ "bvid": "BV1b84y1F7qT"
+ },
+ "card": "{\"aid\":630241940,\"attribute\":0,\"cid\":325729439,\"copyright\":1,\"ctime\":1618830035,\"desc\":\"BGM:No Rainbows In The Desert (Pluto Tapes),歌手名:Unlike Pluto\\n咒术回战单素材,帅就完事!求3连!\",\"dimension\":{\"height\":1080,\"rotate\":0,\"width\":1920},\"duration\":94,\"dynamic\":\"\",\"item\":{\"at_control\":\"\"},\"jump_url\":\"bilibili:\\/\\/video\\/630241940\\/?page=1&player_preload=null&player_width=1920&player_height=1080&player_rotate=0\",\"owner\":{\"face\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/face\\/a536ad1c4c66e17113cfb599fcbb97e03bcdae44.jpg\",\"mid\":7435683,\"name\":\"葉月Mashiro灬\"},\"pic\":\"https:\\/\\/i2.hdslb.com\\/bfs\\/archive\\/663b7f275b0f93356523880aa7e626803168df93.jpg\",\"player_info\":null,\"pubdate\":1619085619,\"rights\":{\"autoplay\":1,\"bp\":0,\"download\":0,\"elec\":0,\"hd5\":1,\"is_cooperation\":1,\"movie\":0,\"no_background\":0,\"no_reprint\":1,\"pay\":0,\"ugc_pay\":0,\"ugc_pay_preview\":0},\"short_link\":\"https:\\/\\/b23.tv\\/BV1b84y1F7qT\",\"short_link_v2\":\"https:\\/\\/b23.tv\\/BV1b84y1F7qT\",\"stat\":{\"aid\":630241940,\"coin\":889,\"danmaku\":146,\"dislike\":0,\"favorite\":1163,\"his_rank\":0,\"like\":10044,\"now_rank\":0,\"reply\":95,\"share\":205,\"view\":61268},\"state\":0,\"tid\":24,\"title\":\"全员高能!这才是咒术回战!\",\"tname\":\"MAD·AMV\",\"videos\":1}",
+ "extend_json": "{\"\":{\"decoration\":{\"decoration_id\":0},\"game\":{\"game_id\":0},\"manga\":{\"manga_id\":26505},\"match\":{\"match_id\":0},\"official_activity\":{\"official_activity_id\":0},\"ogv\":{\"auto_bind\":0,\"ogv_id\":0},\"pgc\":0,\"pugv\":{\"pugv_id\":0},\"reserve\":{\"reserve_id\":0},\"ugc\":{\"ugc_id\":0}},\"bottom\":{},\"dispute\":{\"content\":\"\"},\"from\":{\"from\":\"\"},\"like_icon\":{\"action\":\"\",\"action_url\":\"\",\"end\":\"\",\"end_url\":\"\",\"start\":\"\",\"start_url\":\"\"},\"topic\":{\"is_attach_topic\":1}}",
+ "display": {
+ "topic_info": {
+ "topic_details": [
+ {
+ "topic_id": 391,
+ "topic_name": "AMV",
+ "is_activity": 0,
+ "topic_link": ""
+ },
+ {
+ "topic_id": 281,
+ "topic_name": "MAD",
+ "is_activity": 0,
+ "topic_link": ""
+ },
+ {
+ "topic_id": 7662089,
+ "topic_name": "五条悟",
+ "is_activity": 1,
+ "topic_link": "https://www.bilibili.com/blackboard/dynamic/66796"
+ },
+ {
+ "topic_id": 7539944,
+ "topic_name": "哔哩哔哩漫画",
+ "is_activity": 0,
+ "topic_link": ""
+ },
+ {
+ "topic_id": 6497596,
+ "topic_name": "咒术回战",
+ "is_activity": 0,
+ "topic_link": ""
+ },
+ {
+ "topic_id": 3545,
+ "topic_name": "热血",
+ "is_activity": 0,
+ "topic_link": ""
+ }
+ ]
+ },
+ "usr_action_txt": "投稿了视频",
+ "relation": {
+ "status": 1,
+ "is_follow": 0,
+ "is_followed": 0
+ },
+ "attach_card": {
+ "type": "manga",
+ "head_text": "相关漫画作品",
+ "cover_url": "https://i0.hdslb.com/bfs/manga-static/ca4c24bd8bf896545811f401106c19588b80549d.png",
+ "cover_type": 2,
+ "title": "咒术回战",
+ "desc_first": "更新至146",
+ "desc_second": "冒险,热血,奇幻",
+ "jump_url": "https://manga.bilibili.com/m/detail/mc26505?from=sub_card",
+ "button": {
+ "type": 2,
+ "uncheck": {
+ "icon": "https://i0.hdslb.com/bfs/bangumi/154b6898d2b2c20c21ccef9e41fcf809b518ebb4.png",
+ "text": "追漫"
+ },
+ "check": {
+ "icon": "",
+ "text": "已追漫"
+ },
+ "status": 1
+ },
+ "oid_str": "26505"
+ },
+ "add_on_card_info": [
+ {
+ "add_on_card_show_type": 2,
+ "attach_card": {
+ "type": "manga",
+ "head_text": "相关漫画作品",
+ "cover_url": "https://i0.hdslb.com/bfs/manga-static/ca4c24bd8bf896545811f401106c19588b80549d.png",
+ "cover_type": 2,
+ "title": "咒术回战",
+ "desc_first": "更新至146",
+ "desc_second": "冒险,热血,奇幻",
+ "jump_url": "https://manga.bilibili.com/m/detail/mc26505?from=sub_card",
+ "button": {
+ "type": 2,
+ "uncheck": {
+ "icon": "https://i0.hdslb.com/bfs/bangumi/154b6898d2b2c20c21ccef9e41fcf809b518ebb4.png",
+ "text": "追漫"
+ },
+ "check": {
+ "icon": "",
+ "text": "已追漫"
+ },
+ "status": 1
+ },
+ "oid_str": "26505"
+ }
+ }
+ ],
+ "up_act_button": {
+ "report_title": "举报",
+ "founder_report_title": "举报(发起人)",
+ "top_title": "置顶",
+ "top_confirm_title": "确定将此动态置顶吗",
+ "top_cancel_title": "确定将此动态取消置顶吗"
+ },
+ "show_tip": {
+ "del_tip": "要删除动态吗?"
+ },
+ "cover_play_icon_url": "https://i0.hdslb.com/bfs/album/2269afa7897830b397797ebe5f032b899b405c67.png"
+ }
+ },
+ {
+ "desc": {
+ "uid": 381355897,
+ "type": 2,
+ "rid": 131242904,
+ "acl": 0,
+ "view": 20829,
+ "repost": 0,
+ "comment": 0,
+ "like": 99,
+ "is_liked": 0,
+ "dynamic_id": 516859813265346703,
+ "timestamp": 1619179203,
+ "pre_dy_id": 0,
+ "orig_dy_id": 0,
+ "orig_type": 0,
+ "user_profile": {
+ "info": {
+ "uid": 381355897,
+ "uname": "电绘狂",
+ "face": "https://i1.hdslb.com/bfs/face/19c52b3c93e12698cd1e23093f8e2661e32e2533.jpg"
+ },
+ "card": {
+ "official_verify": {
+ "type": -1,
+ "desc": ""
+ }
+ },
+ "vip": {
+ "vipType": 1,
+ "vipDueDate": 1580486400000,
+ "vipStatus": 0,
+ "themeType": 0,
+ "label": {
+ "path": "",
+ "text": "",
+ "label_theme": "",
+ "text_color": "",
+ "bg_style": 0,
+ "bg_color": "",
+ "border_color": ""
+ },
+ "avatar_subscript": 0,
+ "nickname_color": "",
+ "role": 0,
+ "avatar_subscript_url": ""
+ },
+ "pendant": {
+ "pid": 1823,
+ "name": "春日樱花",
+ "image": "https://i1.hdslb.com/bfs/garb/item/dbe7d6c13cfa15ee717f7219501dc4613affbb9c.png",
+ "expire": 0,
+ "image_enhance": "https://i1.hdslb.com/bfs/garb/item/dbe7d6c13cfa15ee717f7219501dc4613affbb9c.png",
+ "image_enhance_frame": ""
+ },
+ "rank": "10000",
+ "sign": "交流群:100931574、cctalk&B站每周三天 直播绘画教学+改图",
+ "level_info": {
+ "current_level": 6
+ }
+ },
+ "uid_type": 1,
+ "recommend_info": {
+ "is_attention": 0
+ },
+ "stype": 0,
+ "r_type": 1,
+ "inner_id": 0,
+ "topic_board": "A",
+ "topic_board_desc": "热门",
+ "status": 1,
+ "dynamic_id_str": "516859813265346703",
+ "pre_dy_id_str": "0",
+ "orig_dy_id_str": "0",
+ "rid_str": "131242904"
+ },
+ "card": "{\"item\":{\"at_control\":\"\",\"category\":\"daily\",\"description\":\"【#寒远#第十话:你穿什么都好看!!】\\n新角色登场!!猜猜他们是小公主的谁呢?[妙啊]\\n彩色条漫+每周五更新+ :https:\\/\\/manga.bilibili.com\\/detail\\/mc29468 \\n\\n#哔哩哔哩漫画# \",\"id\":131242904,\"is_fav\":0,\"pictures\":[{\"img_height\":1260,\"img_size\":151.478515625,\"img_src\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/album\\/cce04242486413faf4299ba0fd4e6cb072cd376e.jpg\",\"img_tags\":null,\"img_width\":750},{\"img_height\":1040,\"img_size\":126.9970703125,\"img_src\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/album\\/678a826ac0e2e869e4ee2c1556a60c69d626dbfd.jpg\",\"img_tags\":null,\"img_width\":750}],\"pictures_count\":2,\"reply\":0,\"role\":[],\"settings\":{\"copy_forbidden\":\"0\"},\"source\":[],\"title\":\"\",\"upload_time\":1619179203},\"user\":{\"head_url\":\"https:\\/\\/i1.hdslb.com\\/bfs\\/face\\/19c52b3c93e12698cd1e23093f8e2661e32e2533.jpg\",\"name\":\"电绘狂\",\"uid\":381355897,\"vip\":{\"avatar_subscript\":0,\"due_date\":1580486400000,\"label\":{\"label_theme\":\"\",\"path\":\"\",\"text\":\"\"},\"nickname_color\":\"\",\"status\":0,\"theme_type\":0,\"type\":1,\"vip_pay_type\":0}}}",
+ "extend_json": "{\"from\":{\"emoji_type\":1,\"from\":\"timer.publish\",\"up_close_comment\":0,\"verify\":{\"cc\":{\"nv\":1}}},\"like_icon\":{\"action\":\"\",\"action_url\":\"\",\"end\":\"\",\"end_url\":\"\",\"start\":\"\",\"start_url\":\"\"},\"topic\":{\"is_attach_topic\":1}}",
+ "display": {
+ "topic_info": {
+ "topic_details": [
+ {
+ "topic_id": 17996793,
+ "topic_name": "寒远",
+ "is_activity": 0,
+ "topic_link": ""
+ },
+ {
+ "topic_id": 7539944,
+ "topic_name": "哔哩哔哩漫画",
+ "is_activity": 0,
+ "topic_link": ""
+ }
+ ]
+ },
+ "emoji_info": {
+ "emoji_details": [
+ {
+ "emoji_name": "[妙啊]",
+ "id": 435,
+ "package_id": 1,
+ "state": 0,
+ "type": 1,
+ "attr": 0,
+ "text": "[妙啊]",
+ "url": "https://i0.hdslb.com/bfs/emote/b4cb77159d58614a9b787b91b1cd22a81f383535.png",
+ "meta": {
+ "size": 1
+ },
+ "mtime": 1617293741
+ }
+ ]
+ },
+ "relation": {
+ "status": 1,
+ "is_follow": 0,
+ "is_followed": 0
+ },
+ "up_act_button": {
+ "report_title": "举报",
+ "founder_report_title": "举报(发起人)",
+ "top_title": "置顶",
+ "top_confirm_title": "确定将此动态置顶吗",
+ "top_cancel_title": "确定将此动态取消置顶吗"
+ },
+ "show_tip": {
+ "del_tip": "要删除动态吗?"
+ }
+ }
+ },
+ {
+ "desc": {
+ "uid": 350963773,
+ "type": 8,
+ "rid": 972741830,
+ "acl": 0,
+ "view": 2059,
+ "repost": 5,
+ "like": 53,
+ "is_liked": 0,
+ "dynamic_id": 515066247810442308,
+ "timestamp": 1618761606,
+ "pre_dy_id": 0,
+ "orig_dy_id": 0,
+ "orig_type": 0,
+ "user_profile": {
+ "info": {
+ "uid": 350963773,
+ "uname": "届不到_Zula",
+ "face": "https://i1.hdslb.com/bfs/face/613e6dcd59feaecf875092ae945834a362b37f6c.jpg"
+ },
+ "card": {
+ "official_verify": {
+ "type": -1,
+ "desc": ""
+ }
+ },
+ "vip": {
+ "vipType": 2,
+ "vipDueDate": 1674403200000,
+ "vipStatus": 1,
+ "themeType": 0,
+ "label": {
+ "path": "",
+ "text": "年度大会员",
+ "label_theme": "annual_vip",
+ "text_color": "#FFFFFF",
+ "bg_style": 1,
+ "bg_color": "#FB7299",
+ "border_color": ""
+ },
+ "avatar_subscript": 1,
+ "nickname_color": "#FB7299",
+ "role": 3,
+ "avatar_subscript_url": "https://i0.hdslb.com/bfs/vip/icon_Certification_big_member_22_3x.png"
+ },
+ "pendant": {
+ "pid": 0,
+ "name": "",
+ "image": "",
+ "expire": 0,
+ "image_enhance": "",
+ "image_enhance_frame": ""
+ },
+ "rank": "10000",
+ "sign": "什么时候来个卡车,善良的送我去异世界",
+ "level_info": {
+ "current_level": 5
+ }
+ },
+ "uid_type": 1,
+ "recommend_info": {
+ "is_attention": 0
+ },
+ "stype": 0,
+ "r_type": 1,
+ "inner_id": 0,
+ "topic_board": "A",
+ "topic_board_desc": "热门",
+ "status": 1,
+ "dynamic_id_str": "515066247810442308",
+ "pre_dy_id_str": "0",
+ "orig_dy_id_str": "0",
+ "rid_str": "972741830",
+ "bvid": "BV1Mp4y1b7vk"
+ },
+ "card": "{\"aid\":972741830,\"attribute\":0,\"cid\":325740795,\"copyright\":1,\"ctime\":1618713447,\"desc\":\"我永远喜欢水原千鹤!\\n水原千鹤应援群:605563880\\n欢迎加入!\",\"dimension\":{\"height\":1080,\"rotate\":0,\"width\":1920},\"duration\":207,\"dynamic\":\"水原千鹤,生日快乐\",\"item\":{\"at_control\":\"\"},\"jump_url\":\"bilibili:\\/\\/video\\/972741830\\/?page=1&player_preload=null&player_width=1920&player_height=1080&player_rotate=0\",\"owner\":{\"face\":\"https:\\/\\/i1.hdslb.com\\/bfs\\/face\\/613e6dcd59feaecf875092ae945834a362b37f6c.jpg\",\"mid\":350963773,\"name\":\"届不到_Zula\"},\"pic\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/archive\\/5e8a7e26b2b386626f3ddc54d1999ee3f1978888.jpg\",\"player_info\":null,\"pubdate\":1618761602,\"rights\":{\"autoplay\":1,\"bp\":0,\"download\":0,\"elec\":0,\"hd5\":0,\"is_cooperation\":0,\"movie\":0,\"no_background\":0,\"no_reprint\":1,\"pay\":0,\"ugc_pay\":0,\"ugc_pay_preview\":0},\"short_link\":\"https:\\/\\/b23.tv\\/BV1Mp4y1b7vk\",\"short_link_v2\":\"https:\\/\\/b23.tv\\/BV1Mp4y1b7vk\",\"stat\":{\"aid\":972741830,\"coin\":58,\"danmaku\":15,\"dislike\":0,\"favorite\":29,\"his_rank\":0,\"like\":53,\"now_rank\":0,\"reply\":45,\"share\":15,\"view\":427},\"state\":0,\"tid\":24,\"title\":\"【2021水原千鹤生贺】此生能遇见你,真是太好了\",\"tname\":\"MAD·AMV\",\"up_from_v2\":19,\"videos\":2}",
+ "extend_json": "{\"\":{\"ogv\":{\"ogv_id\":0}},\"bottom\":{},\"dispute\":{\"content\":\"\"},\"from\":{\"from\":\"\",\"verify\":{}},\"like_icon\":{\"action\":\"\",\"action_url\":\"\",\"end\":\"\",\"end_url\":\"\",\"start\":\"\",\"start_url\":\"\"},\"topic\":{\"is_attach_topic\":1}}",
+ "display": {
+ "topic_info": {
+ "topic_details": [
+ {
+ "topic_id": 7539944,
+ "topic_name": "哔哩哔哩漫画",
+ "is_activity": 0,
+ "topic_link": ""
+ },
+ {
+ "topic_id": 170379,
+ "topic_name": "生贺",
+ "is_activity": 0,
+ "topic_link": ""
+ },
+ {
+ "topic_id": 4145,
+ "topic_name": "恋爱",
+ "is_activity": 0,
+ "topic_link": ""
+ },
+ {
+ "topic_id": 391,
+ "topic_name": "AMV",
+ "is_activity": 0,
+ "topic_link": ""
+ },
+ {
+ "topic_id": 281,
+ "topic_name": "MAD",
+ "is_activity": 0,
+ "topic_link": ""
+ },
+ {
+ "topic_id": 7382791,
+ "topic_name": "水原千鹤",
+ "is_activity": 1,
+ "topic_link": "https://www.bilibili.com/blackboard/dynamic/43055"
+ }
+ ]
+ },
+ "usr_action_txt": "投稿了视频",
+ "relation": {
+ "status": 1,
+ "is_follow": 0,
+ "is_followed": 0
+ },
+ "tags": [
+ {
+ "tag_type": 5,
+ "icon": "https://i0.hdslb.com/bfs/album/969bfb96b77f12acb2e36068fa03de3b418b2219.png",
+ "text": "领取专属形象赢大奖",
+ "link": "https://www.bilibili.com/blackboard/activity-K4Yvj51WtJ.html",
+ "sub_module": "diversion",
+ "show_action": 0
+ }
+ ],
+ "up_act_button": {
+ "report_title": "举报",
+ "founder_report_title": "举报(发起人)",
+ "top_title": "置顶",
+ "top_confirm_title": "确定将此动态置顶吗",
+ "top_cancel_title": "确定将此动态取消置顶吗"
+ },
+ "show_tip": {
+ "del_tip": "要删除动态吗?"
+ },
+ "cover_play_icon_url": "https://i0.hdslb.com/bfs/album/2269afa7897830b397797ebe5f032b899b405c67.png"
+ }
+ },
+ {
+ "desc": {
+ "uid": 326499679,
+ "type": 2,
+ "rid": 131534120,
+ "acl": 0,
+ "view": 196445,
+ "repost": 2,
+ "comment": 54,
+ "like": 1048,
+ "is_liked": 0,
+ "dynamic_id": 517602000793534062,
+ "timestamp": 1619352007,
+ "pre_dy_id": 0,
+ "orig_dy_id": 0,
+ "orig_type": 0,
+ "user_profile": {
+ "info": {
+ "uid": 326499679,
+ "uname": "哔哩哔哩漫画",
+ "face": "https://i1.hdslb.com/bfs/face/2254162161a60b528cfec449f3450409a81ebc37.jpg"
+ },
+ "card": {
+ "official_verify": {
+ "type": 1,
+ "desc": "哔哩哔哩漫画官方账号"
+ }
+ },
+ "vip": {
+ "vipType": 2,
+ "vipDueDate": 1941033600000,
+ "vipStatus": 1,
+ "themeType": 0,
+ "label": {
+ "path": "",
+ "text": "十年大会员",
+ "label_theme": "ten_annual_vip",
+ "text_color": "#FFFFFF",
+ "bg_style": 1,
+ "bg_color": "#FB7299",
+ "border_color": ""
+ },
+ "avatar_subscript": 1,
+ "nickname_color": "#FB7299",
+ "role": 7,
+ "avatar_subscript_url": "https://i0.hdslb.com/bfs/vip/icon_Certification_big_member_22_3x.png"
+ },
+ "pendant": {
+ "pid": 0,
+ "name": "",
+ "image": "",
+ "expire": 0,
+ "image_enhance": "",
+ "image_enhance_frame": ""
+ },
+ "rank": "10000",
+ "sign": "↑ 【关注漫画姬】就送【漫读券5张】,当日或次日登录哔哩哔哩漫画APP即可领取,快来关注领券吧(°∀°)ノ ↑",
+ "level_info": {
+ "current_level": 6
+ }
+ },
+ "uid_type": 1,
+ "recommend_info": {
+ "is_attention": 0
+ },
+ "stype": 0,
+ "r_type": 1,
+ "inner_id": 0,
+ "topic_board": "C",
+ "topic_board_desc": "最新",
+ "status": 1,
+ "dynamic_id_str": "517602000793534062",
+ "pre_dy_id_str": "0",
+ "orig_dy_id_str": "0",
+ "rid_str": "131534120"
+ },
+ "card": "{\"item\":{\"at_control\":\"\",\"category\":\"daily\",\"description\":\"【#哔哩哔哩漫画# 作品推荐】兽人控狂喜!《#不莱梅乐队#》:https:\\/\\/manga.bilibili.com\\/m\\/detail\\/mc28880\\n[思考]大家小时候看过一篇叫做《不莱梅的音乐家》的格林童话吗?\\n[惊喜]只不过在这部#欧漫#里,这四个动物的目的不是赶走强盗,而是追逐梦想、爱情、自由、正义。在这个充满混沌的世界里,他们将用音乐的力量改写自己和他人的命运。 \",\"id\":131534120,\"is_fav\":0,\"pictures\":[{\"img_height\":1922,\"img_size\":1163.9267578125,\"img_src\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/album\\/f5a82f03475eed52973b3cecb2b5180b090cc5f0.png\",\"img_tags\":null,\"img_width\":1080},{\"img_height\":757,\"img_size\":273.130859375,\"img_src\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/album\\/ca4055c7b9c246e7e922190102d5c87cd4dbcea8.png\",\"img_tags\":null,\"img_width\":436},{\"img_height\":1067,\"img_size\":640.29296875,\"img_src\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/album\\/9de3ece4d374d07fb7b192db4520779a477cdf97.png\",\"img_tags\":null,\"img_width\":542},{\"img_height\":972,\"img_size\":374.8349609375,\"img_src\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/album\\/cac12d548a3686335d3154cce672f1823ca92517.png\",\"img_tags\":null,\"img_width\":487}],\"pictures_count\":4,\"reply\":54,\"role\":[],\"settings\":{\"copy_forbidden\":\"0\"},\"source\":[],\"title\":\"\",\"upload_time\":1619352007},\"user\":{\"head_url\":\"https:\\/\\/i1.hdslb.com\\/bfs\\/face\\/2254162161a60b528cfec449f3450409a81ebc37.jpg\",\"name\":\"哔哩哔哩漫画\",\"uid\":326499679,\"vip\":{\"avatar_subscript\":1,\"due_date\":1941033600000,\"label\":{\"label_theme\":\"ten_annual_vip\",\"path\":\"\",\"text\":\"十年大会员\"},\"nickname_color\":\"#FB7299\",\"status\":1,\"theme_type\":0,\"type\":2,\"vip_pay_type\":0}}}",
+ "extend_json": "{\"from\":{\"emoji_type\":1,\"from\":\"timer.publish\",\"up_close_comment\":0,\"verify\":{\"asw\":{\"fl\":15,\"nv\":1},\"cc\":{\"nv\":1},\"sw\":{\"fl\":15,\"nv\":1}}},\"like_icon\":{\"action\":\"\",\"action_url\":\"\",\"end\":\"\",\"end_url\":\"\",\"start\":\"\",\"start_url\":\"\"},\"topic\":{\"is_attach_topic\":1}}",
+ "display": {
+ "topic_info": {
+ "topic_details": [
+ {
+ "topic_id": 7539944,
+ "topic_name": "哔哩哔哩漫画",
+ "is_activity": 0,
+ "topic_link": ""
+ },
+ {
+ "topic_id": 15149492,
+ "topic_name": "不莱梅乐队",
+ "is_activity": 0,
+ "topic_link": ""
+ },
+ {
+ "topic_id": 507003,
+ "topic_name": "欧漫",
+ "is_activity": 0,
+ "topic_link": ""
+ }
+ ]
+ },
+ "emoji_info": {
+ "emoji_details": [
+ {
+ "emoji_name": "[思考]",
+ "id": 1941,
+ "package_id": 1,
+ "state": 0,
+ "type": 1,
+ "attr": 0,
+ "text": "[思考]",
+ "url": "https://i0.hdslb.com/bfs/emote/cfa9b7e89e4bfe04bbcd34ccb1b0df37f4fa905c.png",
+ "meta": {
+ "size": 1
+ },
+ "mtime": 1597738918
+ },
+ {
+ "emoji_name": "[惊喜]",
+ "id": 19,
+ "package_id": 1,
+ "state": 0,
+ "type": 1,
+ "attr": 0,
+ "text": "[惊喜]",
+ "url": "https://i0.hdslb.com/bfs/emote/0afecaf3a3499479af946f29749e1a6c285b6f65.png",
+ "meta": {
+ "size": 1
+ },
+ "mtime": 1597738918
+ }
+ ]
+ },
+ "relation": {
+ "status": 1,
+ "is_follow": 0,
+ "is_followed": 0
+ },
+ "up_act_button": {
+ "report_title": "举报",
+ "founder_report_title": "举报(发起人)",
+ "top_title": "置顶",
+ "top_confirm_title": "确定将此动态置顶吗",
+ "top_cancel_title": "确定将此动态取消置顶吗"
+ },
+ "show_tip": {
+ "del_tip": "要删除动态吗?"
+ }
+ }
+ },
+ {
+ "desc": {
+ "uid": 240911350,
+ "type": 1,
+ "rid": 517516389208371264,
+ "acl": 0,
+ "view": 237,
+ "repost": 0,
+ "comment": 0,
+ "like": 2,
+ "is_liked": 0,
+ "dynamic_id": 517516389214088892,
+ "timestamp": 1619332074,
+ "pre_dy_id": 517479366596833835,
+ "orig_dy_id": 517479366596833835,
+ "orig_type": 2,
+ "user_profile": {
+ "info": {
+ "uid": 240911350,
+ "uname": "Kekkai-piano",
+ "face": "https://i1.hdslb.com/bfs/face/f9b56adf0e9fb16d556fb5af93fc8367a255e4af.jpg"
+ },
+ "card": {
+ "official_verify": {
+ "type": -1,
+ "desc": ""
+ }
+ },
+ "vip": {
+ "vipType": 2,
+ "vipDueDate": 1658851200000,
+ "vipStatus": 1,
+ "themeType": 0,
+ "label": {
+ "path": "",
+ "text": "年度大会员",
+ "label_theme": "annual_vip",
+ "text_color": "#FFFFFF",
+ "bg_style": 1,
+ "bg_color": "#FB7299",
+ "border_color": ""
+ },
+ "avatar_subscript": 1,
+ "nickname_color": "#FB7299",
+ "role": 3,
+ "avatar_subscript_url": "https://i0.hdslb.com/bfs/vip/icon_Certification_big_member_22_3x.png"
+ },
+ "pendant": {
+ "pid": 2511,
+ "name": "初音未来13周年",
+ "image": "https://i1.hdslb.com/bfs/garb/item/4f8f3f1f2d47f0dad84f66aa57acd4409ea46361.png",
+ "expire": 0,
+ "image_enhance": "https://i1.hdslb.com/bfs/garb/item/fe0b83b53e2342b16646f6e7a9370d8a867decdb.webp",
+ "image_enhance_frame": "https://i1.hdslb.com/bfs/garb/item/127c507ec8448be30cf5f79500ecc6ef2fd32f2c.png"
+ },
+ "rank": "10000",
+ "sign": "看动画片的88键音游爱好者 \n专业人士轻喷 \n正在寻找缺失之物 \n超天変地異みたいな狂騒にも慣れて\n高三备考ing,莫要取关(bushi)",
+ "level_info": {
+ "current_level": 5
+ }
+ },
+ "uid_type": 1,
+ "recommend_info": {
+ "is_attention": 0
+ },
+ "stype": 0,
+ "r_type": 1,
+ "inner_id": 0,
+ "topic_board": "C",
+ "topic_board_desc": "最新",
+ "status": 1,
+ "dynamic_id_str": "517516389214088892",
+ "pre_dy_id_str": "517479366596833835",
+ "orig_dy_id_str": "517479366596833835",
+ "rid_str": "517516389208371264",
+ "origin": {
+ "uid": 326499679,
+ "type": 2,
+ "rid": 131479206,
+ "acl": 1024,
+ "view": 1379492,
+ "repost": 11233,
+ "dynamic_id": 517479366596833835,
+ "timestamp": 1619323454,
+ "uid_type": 1,
+ "r_type": 1,
+ "status": 1,
+ "dynamic_id_str": "517479366596833835",
+ "pre_dy_id_str": "0",
+ "orig_dy_id_str": "0",
+ "rid_str": "131479206"
+ }
+ },
+ "card": "{ \"user\": { \"uid\": 240911350, \"uname\": \"Kekkai-piano\", \"face\": \"https:\\/\\/i1.hdslb.com\\/bfs\\/face\\/f9b56adf0e9fb16d556fb5af93fc8367a255e4af.jpg\" }, \"item\": { \"rp_id\": 517516389208371264, \"uid\": 240911350, \"content\": \"分母报道[doge]#哔哩哔哩漫画#,#AISHA#\", \"orig_dy_id\": 517479366596833835, \"pre_dy_id\": 517479366596833835, \"timestamp\": 1619332074, \"reply\": 0, \"orig_type\": 2 }, \"origin\": \"{\\\"item\\\":{\\\"at_control\\\":\\\"[{\\\\\\\"data\\\\\\\":\\\\\\\"5\\\\\\\",\\\\\\\"length\\\\\\\":0,\\\\\\\"location\\\\\\\":0,\\\\\\\"type\\\\\\\":2},{\\\\\\\"location\\\\\\\":19,\\\\\\\"type\\\\\\\":1,\\\\\\\"length\\\\\\\":8,\\\\\\\"data\\\\\\\":\\\\\\\"1425490690\\\\\\\"}]\\\",\\\"category\\\":\\\"daily\\\",\\\"description\\\":\\\"互动抽奖 关+转,抽3位幸运小伙伴送@漫画家法吉特 【《逆光》画集作者签名版】~\\\\n #哔哩哔哩漫画#重磅安利之《#AISHA#》\\\\n当当当当!剧情党福音~\\\\n答题就有机会赢得礼物?还有法吉特太太亲签精美画集?\\\\n活动入口→https:\\\\\\/\\\\\\/www.bilibili.com\\\\\\/blackboard\\\\\\/topic\\\\\\/activity-oPISh007wv.html\\\\n\\\\n你以为这样就结束了了吗?\\\\nNONONO~\\\\n法吉特老师首次出版个人作品集《逆光》~商城4月25日0点首发开售!\\\\n有法吉特老师签名版掉落哦!随书额外附赠专属书签特典!\\\\n活动指路:哔哩哔哩漫画APP-我的-商城-banner\\\",\\\"id\\\":131479206,\\\"is_fav\\\":0,\\\"pictures\\\":[{\\\"img_height\\\":782,\\\"img_size\\\":1097.2451171875,\\\"img_src\\\":\\\"https:\\\\\\/\\\\\\/i0.hdslb.com\\\\\\/bfs\\\\\\/album\\\\\\/8965a784f77e2545f4f2f168df4f417ed3ace818.png\\\",\\\"img_tags\\\":null,\\\"img_width\\\":750}],\\\"pictures_count\\\":1,\\\"reply\\\":573,\\\"role\\\":[],\\\"settings\\\":{\\\"copy_forbidden\\\":\\\"0\\\"},\\\"source\\\":[],\\\"title\\\":\\\"\\\",\\\"upload_time\\\":1619323454},\\\"user\\\":{\\\"head_url\\\":\\\"https:\\\\\\/\\\\\\/i1.hdslb.com\\\\\\/bfs\\\\\\/face\\\\\\/2254162161a60b528cfec449f3450409a81ebc37.jpg\\\",\\\"name\\\":\\\"哔哩哔哩漫画\\\",\\\"uid\\\":326499679,\\\"vip\\\":{\\\"avatar_subscript\\\":1,\\\"due_date\\\":1941033600000,\\\"label\\\":{\\\"label_theme\\\":\\\"ten_annual_vip\\\",\\\"path\\\":\\\"\\\",\\\"text\\\":\\\"十年大会员\\\"},\\\"nickname_color\\\":\\\"#FB7299\\\",\\\"status\\\":1,\\\"theme_type\\\":0,\\\"type\\\":2,\\\"vip_pay_type\\\":0}}}\", \"origin_extension\": { \"lott\": \"{\\\"lottery_id\\\":61398}\" }, \"origin_extend_json\": \"{\\\"ctrl\\\":[{\\\"data\\\":\\\"5\\\",\\\"length\\\":0,\\\"location\\\":0,\\\"type\\\":2},{\\\"data\\\":\\\"1425490690\\\",\\\"length\\\":8,\\\"location\\\":19,\\\"type\\\":1}],\\\"from\\\":{\\\"emoji_type\\\":1,\\\"from\\\":\\\"create.dynamic.web\\\",\\\"up_close_comment\\\":0,\\\"verify\\\":{\\\"asw\\\":{\\\"fl\\\":15,\\\"nv\\\":1},\\\"cc\\\":{\\\"vf\\\":1},\\\"sw\\\":{\\\"fl\\\":15,\\\"nv\\\":1}}},\\\"like_icon\\\":{\\\"action\\\":\\\"\\\",\\\"action_url\\\":\\\"\\\",\\\"end\\\":\\\"\\\",\\\"end_url\\\":\\\"\\\",\\\"start\\\":\\\"\\\",\\\"start_url\\\":\\\"\\\"},\\\"lott\\\":{\\\"lottery_id\\\":61398},\\\"topic\\\":{\\\"is_attach_topic\\\":1}}\", \"origin_user\": { \"info\": { \"uid\": 326499679, \"uname\": \"哔哩哔哩漫画\", \"face\": \"https:\\/\\/i1.hdslb.com\\/bfs\\/face\\/2254162161a60b528cfec449f3450409a81ebc37.jpg\" }, \"card\": { \"official_verify\": { \"type\": 1, \"desc\": \"哔哩哔哩漫画官方账号\" } }, \"vip\": { \"vipType\": 2, \"vipDueDate\": 1941033600000, \"vipStatus\": 1, \"themeType\": 0, \"label\": { \"path\": \"\", \"text\": \"十年大会员\", \"label_theme\": \"ten_annual_vip\", \"text_color\": \"#FFFFFF\", \"bg_style\": 1, \"bg_color\": \"#FB7299\", \"border_color\": \"\" }, \"avatar_subscript\": 1, \"nickname_color\": \"#FB7299\", \"role\": 7, \"avatar_subscript_url\": \"https:\\/\\/i0.hdslb.com\\/bfs\\/vip\\/icon_Certification_big_member_22_3x.png\" }, \"pendant\": { \"pid\": 0, \"name\": \"\", \"image\": \"\", \"expire\": 0, \"image_enhance\": \"\", \"image_enhance_frame\": \"\" }, \"rank\": \"10000\", \"sign\": \"↑ 【关注漫画姬】就送【漫读券5张】,当日或次日登录哔哩哔哩漫画APP即可领取,快来关注领券吧(°∀°)ノ ↑\", \"level_info\": { \"current_level\": 6 } } }",
+ "extend_json": "{\"from\":{\"emoji_type\":1,\"from\":\"create.comment\",\"up_close_comment\":0},\"like_icon\":{\"action\":\"\",\"action_url\":\"\",\"end\":\"\",\"end_url\":\"\",\"start\":\"\",\"start_url\":\"\"},\"topic\":{\"is_attach_topic\":1}}",
+ "display": {
+ "topic_info": {
+ "topic_details": [
+ {
+ "topic_id": 7539944,
+ "topic_name": "哔哩哔哩漫画",
+ "is_activity": 0,
+ "topic_link": ""
+ },
+ {
+ "topic_id": 148830,
+ "topic_name": "AISHA",
+ "is_activity": 1,
+ "topic_link": "https://www.bilibili.com/blackboard/dynamic/18159"
+ },
+ {
+ "topic_id": 2514603,
+ "topic_name": "aisha",
+ "is_activity": 0,
+ "topic_link": ""
+ }
+ ]
+ },
+ "origin": {
+ "topic_info": {
+ "topic_details": [
+ {
+ "topic_id": 7539944,
+ "topic_name": "哔哩哔哩漫画",
+ "is_activity": 0,
+ "topic_link": ""
+ },
+ {
+ "topic_id": 148830,
+ "topic_name": "AISHA",
+ "is_activity": 1,
+ "topic_link": "https://www.bilibili.com/blackboard/dynamic/18159"
+ },
+ {
+ "topic_id": 2514603,
+ "topic_name": "aisha",
+ "is_activity": 0,
+ "topic_link": ""
+ }
+ ]
+ },
+ "relation": {
+ "status": 1,
+ "is_follow": 0,
+ "is_followed": 0
+ },
+ "show_tip": {
+ "del_tip": "要删除动态吗?"
+ }
+ },
+ "emoji_info": {
+ "emoji_details": [
+ {
+ "emoji_name": "[doge]",
+ "id": 26,
+ "package_id": 1,
+ "state": 0,
+ "type": 1,
+ "attr": 0,
+ "text": "[doge]",
+ "url": "https://i0.hdslb.com/bfs/emote/3087d273a78ccaff4bb1e9972e2ba2a7583c9f11.png",
+ "meta": {
+ "size": 1
+ },
+ "mtime": 1617293741
+ }
+ ]
+ },
+ "relation": {
+ "status": 1,
+ "is_follow": 0,
+ "is_followed": 0
+ },
+ "up_act_button": {
+ "report_title": "举报",
+ "founder_report_title": "举报(发起人)",
+ "top_title": "置顶",
+ "top_confirm_title": "确定将此动态置顶吗",
+ "top_cancel_title": "确定将此动态取消置顶吗"
+ },
+ "show_tip": {
+ "del_tip": "要删除动态吗?"
+ }
+ }
+ },
+ {
+ "desc": {
+ "uid": 1192711092,
+ "type": 1,
+ "rid": 517505230885402892,
+ "acl": 0,
+ "view": 2,
+ "repost": 0,
+ "comment": 0,
+ "like": 0,
+ "is_liked": 0,
+ "dynamic_id": 517505230886905525,
+ "timestamp": 1619329476,
+ "pre_dy_id": 517241610091321208,
+ "orig_dy_id": 517241610091321208,
+ "orig_type": 2,
+ "user_profile": {
+ "info": {
+ "uid": 1192711092,
+ "uname": "会发光的偶恰",
+ "face": "https://i0.hdslb.com/bfs/face/b85a508793bd96deec61e2491d60e68f10378395.jpg"
+ },
+ "card": {
+ "official_verify": {
+ "type": -1,
+ "desc": ""
+ }
+ },
+ "vip": {
+ "vipType": 0,
+ "vipDueDate": 0,
+ "vipStatus": 0,
+ "themeType": 0,
+ "label": {
+ "path": "",
+ "text": "",
+ "label_theme": "",
+ "text_color": "",
+ "bg_style": 0,
+ "bg_color": "",
+ "border_color": ""
+ },
+ "avatar_subscript": 0,
+ "nickname_color": "",
+ "role": 0,
+ "avatar_subscript_url": ""
+ },
+ "pendant": {
+ "pid": 0,
+ "name": "",
+ "image": "",
+ "expire": 0,
+ "image_enhance": "",
+ "image_enhance_frame": ""
+ },
+ "rank": "10000",
+ "sign": "",
+ "level_info": {
+ "current_level": 3
+ }
+ },
+ "uid_type": 1,
+ "recommend_info": {
+ "is_attention": 0
+ },
+ "stype": 0,
+ "r_type": 1,
+ "inner_id": 0,
+ "topic_board": "C",
+ "topic_board_desc": "最新",
+ "status": 1,
+ "dynamic_id_str": "517505230886905525",
+ "pre_dy_id_str": "517241610091321208",
+ "orig_dy_id_str": "517241610091321208",
+ "rid_str": "517505230885402892",
+ "origin": {
+ "uid": 326499679,
+ "type": 2,
+ "rid": 131403515,
+ "acl": 1024,
+ "view": 1951519,
+ "repost": 16543,
+ "dynamic_id": 517241610091321208,
+ "timestamp": 1619268097,
+ "uid_type": 1,
+ "r_type": 1,
+ "status": 1,
+ "dynamic_id_str": "517241610091321208",
+ "pre_dy_id_str": "0",
+ "orig_dy_id_str": "0",
+ "rid_str": "131403515"
+ }
+ },
+ "card": "{ \"user\": { \"uid\": 1192711092, \"uname\": \"会发光的偶恰\", \"face\": \"https:\\/\\/i0.hdslb.com\\/bfs\\/face\\/b85a508793bd96deec61e2491d60e68f10378395.jpg\" }, \"item\": { \"rp_id\": 517505230885402892, \"uid\": 1192711092, \"content\": \"我最喜欢这个了,我也想要#哔哩哔哩漫画#\", \"orig_dy_id\": 517241610091321208, \"pre_dy_id\": 517241610091321208, \"timestamp\": 1619329476, \"reply\": 0, \"orig_type\": 2 }, \"origin\": \"{\\\"item\\\":{\\\"at_control\\\":\\\"[{\\\\\\\"type\\\\\\\":2,\\\\\\\"location\\\\\\\":0,\\\\\\\"length\\\\\\\":0,\\\\\\\"data\\\\\\\":\\\\\\\"5\\\\\\\"}]\\\",\\\"category\\\":\\\"daily\\\",\\\"description\\\":\\\"互动抽奖 【关+转】抽1位小伙伴送【哔哩哔哩小电视兔子包】~\\\\n【#哔哩哔哩漫画# 作品推荐】大量西幻少女漫爆更来啦———\\\\n[干杯] 即日起,《重生成为公爵家的丑女》《暴君的监护人是反派魔女》《姐姐捡回了男主》等大量西幻少女精品漫画爆更,追漫更有樱花立牌\\\\\\/玩偶等福利好礼相送!\\\\n[干杯] 快来哔哩哔哩漫画追漫吧~\\\",\\\"id\\\":131403515,\\\"is_fav\\\":0,\\\"pictures\\\":[{\\\"img_height\\\":1357,\\\"img_size\\\":1759.1650390625,\\\"img_src\\\":\\\"https:\\\\\\/\\\\\\/i0.hdslb.com\\\\\\/bfs\\\\\\/album\\\\\\/1ce565e7f36e0ae5a3809df21bb39aa2fe578a88.png\\\",\\\"img_tags\\\":null,\\\"img_width\\\":1080},{\\\"img_height\\\":1238,\\\"img_size\\\":832.51953125,\\\"img_src\\\":\\\"https:\\\\\\/\\\\\\/i0.hdslb.com\\\\\\/bfs\\\\\\/album\\\\\\/6df0150c77a7f42a5d31cce8bb006105a660dad9.png\\\",\\\"img_tags\\\":null,\\\"img_width\\\":1080},{\\\"img_height\\\":2193,\\\"img_size\\\":3424.060546875,\\\"img_src\\\":\\\"https:\\\\\\/\\\\\\/i0.hdslb.com\\\\\\/bfs\\\\\\/album\\\\\\/adce81c59436184b56d84e5394583d2ab491b2e6.png\\\",\\\"img_tags\\\":null,\\\"img_width\\\":1080},{\\\"img_height\\\":800,\\\"img_size\\\":166.1552734375,\\\"img_src\\\":\\\"https:\\\\\\/\\\\\\/i0.hdslb.com\\\\\\/bfs\\\\\\/album\\\\\\/9c4e8d6fc04d5a1f3df225d5967fb65c7a3f5f09.jpg\\\",\\\"img_tags\\\":null,\\\"img_width\\\":800}],\\\"pictures_count\\\":4,\\\"reply\\\":1003,\\\"role\\\":[],\\\"settings\\\":{\\\"copy_forbidden\\\":\\\"0\\\"},\\\"source\\\":[],\\\"title\\\":\\\"\\\",\\\"upload_time\\\":1619268097},\\\"user\\\":{\\\"head_url\\\":\\\"https:\\\\\\/\\\\\\/i1.hdslb.com\\\\\\/bfs\\\\\\/face\\\\\\/2254162161a60b528cfec449f3450409a81ebc37.jpg\\\",\\\"name\\\":\\\"哔哩哔哩漫画\\\",\\\"uid\\\":326499679,\\\"vip\\\":{\\\"avatar_subscript\\\":1,\\\"due_date\\\":1941033600000,\\\"label\\\":{\\\"label_theme\\\":\\\"ten_annual_vip\\\",\\\"path\\\":\\\"\\\",\\\"text\\\":\\\"十年大会员\\\"},\\\"nickname_color\\\":\\\"#FB7299\\\",\\\"status\\\":1,\\\"theme_type\\\":0,\\\"type\\\":2,\\\"vip_pay_type\\\":0}}}\", \"origin_extension\": { \"lott\": \"{\\\"callbackId\\\":10,\\\"lottery_id\\\":61382,\\\"lottery_time\\\":1620504000,\\\"title\\\":\\\"互动抽奖\\\"}\" }, \"origin_extend_json\": \"{\\\"ctrl\\\":[{\\\"data\\\":\\\"5\\\",\\\"length\\\":0,\\\"location\\\":0,\\\"type\\\":2}],\\\"from\\\":{\\\"emoji_type\\\":1,\\\"from\\\":\\\"\\\",\\\"up_close_comment\\\":0,\\\"verify\\\":{\\\"asw\\\":{\\\"fl\\\":15,\\\"nv\\\":1},\\\"cc\\\":{\\\"vf\\\":1},\\\"sw\\\":{\\\"fl\\\":15,\\\"nv\\\":1}}},\\\"like_icon\\\":{\\\"action\\\":\\\"\\\",\\\"action_url\\\":\\\"\\\",\\\"end\\\":\\\"\\\",\\\"end_url\\\":\\\"\\\",\\\"start\\\":\\\"\\\",\\\"start_url\\\":\\\"\\\"},\\\"lott\\\":{\\\"callbackId\\\":10,\\\"lottery_id\\\":61382,\\\"lottery_time\\\":1620504000,\\\"title\\\":\\\"互动抽奖\\\"},\\\"topic\\\":{\\\"is_attach_topic\\\":1}}\", \"origin_user\": { \"info\": { \"uid\": 326499679, \"uname\": \"哔哩哔哩漫画\", \"face\": \"https:\\/\\/i1.hdslb.com\\/bfs\\/face\\/2254162161a60b528cfec449f3450409a81ebc37.jpg\" }, \"card\": { \"official_verify\": { \"type\": 1, \"desc\": \"哔哩哔哩漫画官方账号\" } }, \"vip\": { \"vipType\": 2, \"vipDueDate\": 1941033600000, \"vipStatus\": 1, \"themeType\": 0, \"label\": { \"path\": \"\", \"text\": \"十年大会员\", \"label_theme\": \"ten_annual_vip\", \"text_color\": \"#FFFFFF\", \"bg_style\": 1, \"bg_color\": \"#FB7299\", \"border_color\": \"\" }, \"avatar_subscript\": 1, \"nickname_color\": \"#FB7299\", \"role\": 7, \"avatar_subscript_url\": \"https:\\/\\/i0.hdslb.com\\/bfs\\/vip\\/icon_Certification_big_member_22_3x.png\" }, \"pendant\": { \"pid\": 0, \"name\": \"\", \"image\": \"\", \"expire\": 0, \"image_enhance\": \"\", \"image_enhance_frame\": \"\" }, \"rank\": \"10000\", \"sign\": \"↑ 【关注漫画姬】就送【漫读券5张】,当日或次日登录哔哩哔哩漫画APP即可领取,快来关注领券吧(°∀°)ノ ↑\", \"level_info\": { \"current_level\": 6 } } }",
+ "extend_json": "{\"from\":{\"emoji_type\":1,\"from\":\"create.comment\",\"up_close_comment\":0},\"like_icon\":{\"action\":\"\",\"action_url\":\"\",\"end\":\"\",\"end_url\":\"\",\"start\":\"\",\"start_url\":\"\"},\"topic\":{\"is_attach_topic\":1}}",
+ "display": {
+ "topic_info": {
+ "topic_details": [
+ {
+ "topic_id": 7539944,
+ "topic_name": "哔哩哔哩漫画",
+ "is_activity": 0,
+ "topic_link": ""
+ }
+ ]
+ },
+ "origin": {
+ "topic_info": {
+ "topic_details": [
+ {
+ "topic_id": 7539944,
+ "topic_name": "哔哩哔哩漫画",
+ "is_activity": 0,
+ "topic_link": ""
+ }
+ ]
+ },
+ "emoji_info": {
+ "emoji_details": [
+ {
+ "emoji_name": "[干杯]",
+ "id": 1949,
+ "package_id": 1,
+ "state": 0,
+ "type": 1,
+ "attr": 0,
+ "text": "[干杯]",
+ "url": "https://i0.hdslb.com/bfs/emote/8da12d5f55a2c7e9778dcc05b40571979fe208e6.png",
+ "meta": {
+ "size": 1
+ },
+ "mtime": 1597738918
+ }
+ ]
+ },
+ "relation": {
+ "status": 1,
+ "is_follow": 0,
+ "is_followed": 0
+ },
+ "show_tip": {
+ "del_tip": "要删除动态吗?"
+ }
+ },
+ "relation": {
+ "status": 1,
+ "is_follow": 0,
+ "is_followed": 0
+ },
+ "up_act_button": {
+ "report_title": "举报",
+ "founder_report_title": "举报(发起人)",
+ "top_title": "置顶",
+ "top_confirm_title": "确定将此动态置顶吗",
+ "top_cancel_title": "确定将此动态取消置顶吗"
+ },
+ "show_tip": {
+ "del_tip": "要删除动态吗?"
+ }
+ }
+ },
+ {
+ "desc": {
+ "uid": 1365116,
+ "type": 1,
+ "rid": 517503525787575777,
+ "acl": 0,
+ "view": 1,
+ "repost": 0,
+ "comment": 0,
+ "like": 0,
+ "is_liked": 0,
+ "dynamic_id": 517503525779637979,
+ "timestamp": 1619329079,
+ "pre_dy_id": 517241610091321208,
+ "orig_dy_id": 517241610091321208,
+ "orig_type": 2,
+ "user_profile": {
+ "info": {
+ "uid": 1365116,
+ "uname": "濑户的海参",
+ "face": "https://i2.hdslb.com/bfs/face/8426c61be9c3ccd2296d080a54691c3bed5f2f9f.jpg"
+ },
+ "card": {
+ "official_verify": {
+ "type": -1,
+ "desc": ""
+ }
+ },
+ "vip": {
+ "vipType": 0,
+ "vipDueDate": 0,
+ "vipStatus": 0,
+ "themeType": 0,
+ "label": {
+ "path": "",
+ "text": "",
+ "label_theme": "",
+ "text_color": "",
+ "bg_style": 0,
+ "bg_color": "",
+ "border_color": ""
+ },
+ "avatar_subscript": 0,
+ "nickname_color": "",
+ "role": 0,
+ "avatar_subscript_url": ""
+ },
+ "pendant": {
+ "pid": 0,
+ "name": "",
+ "image": "",
+ "expire": 0,
+ "image_enhance": "",
+ "image_enhance_frame": ""
+ },
+ "rank": "10000",
+ "sign": "",
+ "level_info": {
+ "current_level": 5
+ }
+ },
+ "uid_type": 1,
+ "recommend_info": {
+ "is_attention": 0
+ },
+ "stype": 0,
+ "r_type": 1,
+ "inner_id": 0,
+ "topic_board": "C",
+ "topic_board_desc": "最新",
+ "status": 1,
+ "dynamic_id_str": "517503525779637979",
+ "pre_dy_id_str": "517241610091321208",
+ "orig_dy_id_str": "517241610091321208",
+ "rid_str": "517503525787575777",
+ "origin": {
+ "uid": 326499679,
+ "type": 2,
+ "rid": 131403515,
+ "acl": 1024,
+ "view": 1951519,
+ "repost": 16543,
+ "comment": 1003,
+ "like": 6950,
+ "is_liked": 0,
+ "dynamic_id": 517241610091321208,
+ "timestamp": 1619268097,
+ "user_profile": {
+ "info": {
+ "uid": 326499679,
+ "uname": "哔哩哔哩漫画",
+ "face": "https://i1.hdslb.com/bfs/face/2254162161a60b528cfec449f3450409a81ebc37.jpg"
+ },
+ "card": {
+ "official_verify": {
+ "type": 1,
+ "desc": "哔哩哔哩漫画官方账号"
+ }
+ },
+ "vip": {
+ "vipType": 2,
+ "vipDueDate": 1941033600000,
+ "vipStatus": 1,
+ "themeType": 0,
+ "label": {
+ "path": "",
+ "text": "十年大会员",
+ "label_theme": "ten_annual_vip",
+ "text_color": "#FFFFFF",
+ "bg_style": 1,
+ "bg_color": "#FB7299",
+ "border_color": ""
+ },
+ "avatar_subscript": 1,
+ "nickname_color": "#FB7299",
+ "role": 7,
+ "avatar_subscript_url": "https://i0.hdslb.com/bfs/vip/icon_Certification_big_member_22_3x.png"
+ },
+ "pendant": {
+ "pid": 0,
+ "name": "",
+ "image": "",
+ "expire": 0,
+ "image_enhance": "",
+ "image_enhance_frame": ""
+ },
+ "rank": "10000",
+ "sign": "↑ 【关注漫画姬】就送【漫读券5张】,当日或次日登录哔哩哔哩漫画APP即可领取,快来关注领券吧(°∀°)ノ ↑",
+ "level_info": {
+ "current_level": 6
+ }
+ },
+ "uid_type": 1,
+ "r_type": 1,
+ "status": 1,
+ "dynamic_id_str": "517241610091321208",
+ "pre_dy_id_str": "0",
+ "orig_dy_id_str": "0",
+ "rid_str": "131403515"
+ }
+ },
+ "card": "{ \"user\": { \"uid\": 1365116, \"uname\": \"濑户的海参\", \"face\": \"https:\\/\\/i2.hdslb.com\\/bfs\\/face\\/8426c61be9c3ccd2296d080a54691c3bed5f2f9f.jpg\" }, \"item\": { \"rp_id\": 517503525787575777, \"uid\": 1365116, \"content\": \"嗯哼#哔哩哔哩漫画#\", \"orig_dy_id\": 517241610091321208, \"pre_dy_id\": 517241610091321208, \"timestamp\": 1619329079, \"reply\": 0, \"orig_type\": 2 }, \"origin\": \"{\\\"item\\\":{\\\"at_control\\\":\\\"[{\\\\\\\"type\\\\\\\":2,\\\\\\\"location\\\\\\\":0,\\\\\\\"length\\\\\\\":0,\\\\\\\"data\\\\\\\":\\\\\\\"5\\\\\\\"}]\\\",\\\"category\\\":\\\"daily\\\",\\\"description\\\":\\\"互动抽奖 【关+转】抽1位小伙伴送【哔哩哔哩小电视兔子包】~\\\\n【#哔哩哔哩漫画# 作品推荐】大量西幻少女漫爆更来啦———\\\\n[干杯] 即日起,《重生成为公爵家的丑女》《暴君的监护人是反派魔女》《姐姐捡回了男主》等大量西幻少女精品漫画爆更,追漫更有樱花立牌\\\\\\/玩偶等福利好礼相送!\\\\n[干杯] 快来哔哩哔哩漫画追漫吧~\\\",\\\"id\\\":131403515,\\\"is_fav\\\":0,\\\"pictures\\\":[{\\\"img_height\\\":1357,\\\"img_size\\\":1759.1650390625,\\\"img_src\\\":\\\"https:\\\\\\/\\\\\\/i0.hdslb.com\\\\\\/bfs\\\\\\/album\\\\\\/1ce565e7f36e0ae5a3809df21bb39aa2fe578a88.png\\\",\\\"img_tags\\\":null,\\\"img_width\\\":1080},{\\\"img_height\\\":1238,\\\"img_size\\\":832.51953125,\\\"img_src\\\":\\\"https:\\\\\\/\\\\\\/i0.hdslb.com\\\\\\/bfs\\\\\\/album\\\\\\/6df0150c77a7f42a5d31cce8bb006105a660dad9.png\\\",\\\"img_tags\\\":null,\\\"img_width\\\":1080},{\\\"img_height\\\":2193,\\\"img_size\\\":3424.060546875,\\\"img_src\\\":\\\"https:\\\\\\/\\\\\\/i0.hdslb.com\\\\\\/bfs\\\\\\/album\\\\\\/adce81c59436184b56d84e5394583d2ab491b2e6.png\\\",\\\"img_tags\\\":null,\\\"img_width\\\":1080},{\\\"img_height\\\":800,\\\"img_size\\\":166.1552734375,\\\"img_src\\\":\\\"https:\\\\\\/\\\\\\/i0.hdslb.com\\\\\\/bfs\\\\\\/album\\\\\\/9c4e8d6fc04d5a1f3df225d5967fb65c7a3f5f09.jpg\\\",\\\"img_tags\\\":null,\\\"img_width\\\":800}],\\\"pictures_count\\\":4,\\\"reply\\\":1003,\\\"role\\\":[],\\\"settings\\\":{\\\"copy_forbidden\\\":\\\"0\\\"},\\\"source\\\":[],\\\"title\\\":\\\"\\\",\\\"upload_time\\\":1619268097},\\\"user\\\":{\\\"head_url\\\":\\\"https:\\\\\\/\\\\\\/i1.hdslb.com\\\\\\/bfs\\\\\\/face\\\\\\/2254162161a60b528cfec449f3450409a81ebc37.jpg\\\",\\\"name\\\":\\\"哔哩哔哩漫画\\\",\\\"uid\\\":326499679,\\\"vip\\\":{\\\"avatar_subscript\\\":1,\\\"due_date\\\":1941033600000,\\\"label\\\":{\\\"label_theme\\\":\\\"ten_annual_vip\\\",\\\"path\\\":\\\"\\\",\\\"text\\\":\\\"十年大会员\\\"},\\\"nickname_color\\\":\\\"#FB7299\\\",\\\"status\\\":1,\\\"theme_type\\\":0,\\\"type\\\":2,\\\"vip_pay_type\\\":0}}}\", \"origin_extension\": { \"lott\": \"{\\\"callbackId\\\":10,\\\"lottery_id\\\":61382,\\\"lottery_time\\\":1620504000,\\\"title\\\":\\\"互动抽奖\\\"}\" }, \"origin_extend_json\": \"{\\\"ctrl\\\":[{\\\"data\\\":\\\"5\\\",\\\"length\\\":0,\\\"location\\\":0,\\\"type\\\":2}],\\\"from\\\":{\\\"emoji_type\\\":1,\\\"from\\\":\\\"\\\",\\\"up_close_comment\\\":0,\\\"verify\\\":{\\\"asw\\\":{\\\"fl\\\":15,\\\"nv\\\":1},\\\"cc\\\":{\\\"vf\\\":1},\\\"sw\\\":{\\\"fl\\\":15,\\\"nv\\\":1}}},\\\"like_icon\\\":{\\\"action\\\":\\\"\\\",\\\"action_url\\\":\\\"\\\",\\\"end\\\":\\\"\\\",\\\"end_url\\\":\\\"\\\",\\\"start\\\":\\\"\\\",\\\"start_url\\\":\\\"\\\"},\\\"lott\\\":{\\\"callbackId\\\":10,\\\"lottery_id\\\":61382,\\\"lottery_time\\\":1620504000,\\\"title\\\":\\\"互动抽奖\\\"},\\\"topic\\\":{\\\"is_attach_topic\\\":1}}\", \"origin_user\": { \"info\": { \"uid\": 326499679, \"uname\": \"哔哩哔哩漫画\", \"face\": \"https:\\/\\/i1.hdslb.com\\/bfs\\/face\\/2254162161a60b528cfec449f3450409a81ebc37.jpg\" }, \"card\": { \"official_verify\": { \"type\": 1, \"desc\": \"哔哩哔哩漫画官方账号\" } }, \"vip\": { \"vipType\": 2, \"vipDueDate\": 1941033600000, \"vipStatus\": 1, \"themeType\": 0, \"label\": { \"path\": \"\", \"text\": \"十年大会员\", \"label_theme\": \"ten_annual_vip\", \"text_color\": \"#FFFFFF\", \"bg_style\": 1, \"bg_color\": \"#FB7299\", \"border_color\": \"\" }, \"avatar_subscript\": 1, \"nickname_color\": \"#FB7299\", \"role\": 7, \"avatar_subscript_url\": \"https:\\/\\/i0.hdslb.com\\/bfs\\/vip\\/icon_Certification_big_member_22_3x.png\" }, \"pendant\": { \"pid\": 0, \"name\": \"\", \"image\": \"\", \"expire\": 0, \"image_enhance\": \"\", \"image_enhance_frame\": \"\" }, \"rank\": \"10000\", \"sign\": \"↑ 【关注漫画姬】就送【漫读券5张】,当日或次日登录哔哩哔哩漫画APP即可领取,快来关注领券吧(°∀°)ノ ↑\", \"level_info\": { \"current_level\": 6 } } }",
+ "extend_json": "{\"from\":{\"emoji_type\":1,\"from\":\"create.comment\",\"up_close_comment\":0},\"like_icon\":{\"action\":\"\",\"action_url\":\"\",\"end\":\"\",\"end_url\":\"\",\"start\":\"\",\"start_url\":\"\"},\"topic\":{\"is_attach_topic\":1}}",
+ "display": {
+ "topic_info": {
+ "topic_details": [
+ {
+ "topic_id": 7539944,
+ "topic_name": "哔哩哔哩漫画",
+ "is_activity": 0,
+ "topic_link": ""
+ }
+ ]
+ },
+ "origin": {
+ "topic_info": {
+ "topic_details": [
+ {
+ "topic_id": 7539944,
+ "topic_name": "哔哩哔哩漫画",
+ "is_activity": 0,
+ "topic_link": ""
+ }
+ ]
+ },
+ "emoji_info": {
+ "emoji_details": [
+ {
+ "emoji_name": "[干杯]",
+ "id": 1949,
+ "package_id": 1,
+ "state": 0,
+ "type": 1,
+ "attr": 0,
+ "text": "[干杯]",
+ "url": "https://i0.hdslb.com/bfs/emote/8da12d5f55a2c7e9778dcc05b40571979fe208e6.png",
+ "meta": {
+ "size": 1
+ },
+ "mtime": 1597738918
+ }
+ ]
+ },
+ "relation": {
+ "status": 1,
+ "is_follow": 0,
+ "is_followed": 0
+ },
+ "show_tip": {
+ "del_tip": "要删除动态吗?"
+ }
+ },
+ "relation": {
+ "status": 1,
+ "is_follow": 0,
+ "is_followed": 0
+ },
+ "up_act_button": {
+ "report_title": "举报",
+ "founder_report_title": "举报(发起人)",
+ "top_title": "置顶",
+ "top_confirm_title": "确定将此动态置顶吗",
+ "top_cancel_title": "确定将此动态取消置顶吗"
+ },
+ "show_tip": {
+ "del_tip": "要删除动态吗?"
+ }
+ }
+ },
+ {
+ "desc": {
+ "uid": 326499679,
+ "type": 2,
+ "rid": 131489076,
+ "acl": 0,
+ "view": 1385233,
+ "repost": 31,
+ "comment": 23,
+ "like": 3737,
+ "is_liked": 0,
+ "dynamic_id": 517501494260096644,
+ "timestamp": 1619328606,
+ "pre_dy_id": 0,
+ "orig_dy_id": 0,
+ "orig_type": 0,
+ "user_profile": {
+ "info": {
+ "uid": 326499679,
+ "uname": "哔哩哔哩漫画",
+ "face": "https://i1.hdslb.com/bfs/face/2254162161a60b528cfec449f3450409a81ebc37.jpg"
+ },
+ "card": {
+ "official_verify": {
+ "type": 1,
+ "desc": "哔哩哔哩漫画官方账号"
+ }
+ },
+ "vip": {
+ "vipType": 2,
+ "vipDueDate": 1941033600000,
+ "vipStatus": 1,
+ "themeType": 0,
+ "label": {
+ "path": "",
+ "text": "十年大会员",
+ "label_theme": "ten_annual_vip",
+ "text_color": "#FFFFFF",
+ "bg_style": 1,
+ "bg_color": "#FB7299",
+ "border_color": ""
+ },
+ "avatar_subscript": 1,
+ "nickname_color": "#FB7299",
+ "role": 7,
+ "avatar_subscript_url": "https://i0.hdslb.com/bfs/vip/icon_Certification_big_member_22_3x.png"
+ },
+ "pendant": {
+ "pid": 0,
+ "name": "",
+ "image": "",
+ "expire": 0,
+ "image_enhance": "",
+ "image_enhance_frame": ""
+ },
+ "rank": "10000",
+ "sign": "↑ 【关注漫画姬】就送【漫读券5张】,当日或次日登录哔哩哔哩漫画APP即可领取,快来关注领券吧(°∀°)ノ ↑",
+ "level_info": {
+ "current_level": 6
+ }
+ },
+ "uid_type": 1,
+ "recommend_info": {
+ "is_attention": 0
+ },
+ "stype": 0,
+ "r_type": 1,
+ "inner_id": 0,
+ "topic_board": "C",
+ "topic_board_desc": "最新",
+ "status": 1,
+ "dynamic_id_str": "517501494260096644",
+ "pre_dy_id_str": "0",
+ "orig_dy_id_str": "0",
+ "rid_str": "131489076"
+ },
+ "card": "{\"item\":{\"at_control\":\"\",\"category\":\"daily\",\"description\":\"【#哔哩哔哩漫画# 限免活动+周边路透】✿ヽ(°▽°)ノ✿ \\n《#天宝伏妖录#》漫画第二卷将在【4月25日至5月2日】限时免费1周[打call][打call],感谢大家一直以来的支持[W-哈哈]!精彩剧情,不容错过!\\n同时之前《#天宝伏妖录#》第三卷活动售卖的周边近期在准备开补款啦~\\n小伙伴们先看看限定周边的实物图透叭(P1-P8)[打call]! 新卷也一直在筹备中,新卷封面同时奉上(P9)! \\n【追漫传送】:https:\\/\\/manga.bilibili.com\\/m\\/detail\\/mc27592 \",\"id\":131489076,\"is_fav\":0,\"pictures\":[{\"img_height\":5046,\"img_size\":16654.3876953125,\"img_src\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/album\\/6bcd7a96fe7bc616a7ea334319b58a3ab451cda2.jpg\",\"img_tags\":null,\"img_width\":6728},{\"img_height\":5046,\"img_size\":15713.2236328125,\"img_src\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/album\\/41e9e8ed2f181ce84adbb1175dcfc47b6b32d270.jpg\",\"img_tags\":null,\"img_width\":6728},{\"img_height\":5136,\"img_size\":20368.2822265625,\"img_src\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/album\\/81936f0dacc1fa63264d18cdba738b3582562cdd.jpg\",\"img_tags\":null,\"img_width\":7705},{\"img_height\":4427,\"img_size\":15909.310546875,\"img_src\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/album\\/5116024add807a033cf63395683c5b6ade28fbcf.jpg\",\"img_tags\":null,\"img_width\":6641},{\"img_height\":5136,\"img_size\":20431.3994140625,\"img_src\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/album\\/61155f325c5a862b0dcdb1dacc95f252ac768a4e.jpg\",\"img_tags\":null,\"img_width\":7705},{\"img_height\":5261,\"img_size\":19335.5029296875,\"img_src\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/album\\/6f5a7241d8f0093952edf16195b4d0aecfa2c6cd.jpg\",\"img_tags\":null,\"img_width\":7014},{\"img_height\":1408,\"img_size\":4784.3037109375,\"img_src\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/album\\/0350c791822a980d72450da226b1d61fa7b68c8f.png\",\"img_tags\":null,\"img_width\":1878},{\"img_height\":1408,\"img_size\":4614.8251953125,\"img_src\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/album\\/271187137e9973d07f01763a9a41b9b7f25f68fd.png\",\"img_tags\":null,\"img_width\":1878},{\"img_height\":3508,\"img_size\":1452.4482421875,\"img_src\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/album\\/f818bb197c7cc914ed4c921a6f7488f87ca15faf.jpg\",\"img_tags\":null,\"img_width\":2480}],\"pictures_count\":9,\"reply\":23,\"role\":[],\"settings\":{\"copy_forbidden\":\"0\"},\"source\":[],\"title\":\"\",\"upload_time\":1619328606},\"user\":{\"head_url\":\"https:\\/\\/i1.hdslb.com\\/bfs\\/face\\/2254162161a60b528cfec449f3450409a81ebc37.jpg\",\"name\":\"哔哩哔哩漫画\",\"uid\":326499679,\"vip\":{\"avatar_subscript\":1,\"due_date\":1941033600000,\"label\":{\"label_theme\":\"ten_annual_vip\",\"path\":\"\",\"text\":\"十年大会员\"},\"nickname_color\":\"#FB7299\",\"status\":1,\"theme_type\":0,\"type\":2,\"vip_pay_type\":0}}}",
+ "extend_json": "{\"from\":{\"emoji_type\":1,\"from\":\"timer.publish\",\"up_close_comment\":0,\"verify\":{\"cc\":{\"nv\":1}}},\"like_icon\":{\"action\":\"\",\"action_url\":\"\",\"end\":\"\",\"end_url\":\"\",\"start\":\"\",\"start_url\":\"\"},\"topic\":{\"is_attach_topic\":1}}",
+ "display": {
+ "topic_info": {
+ "topic_details": [
+ {
+ "topic_id": 7539944,
+ "topic_name": "哔哩哔哩漫画",
+ "is_activity": 0,
+ "topic_link": ""
+ },
+ {
+ "topic_id": 3812656,
+ "topic_name": "天宝伏妖录",
+ "is_activity": 1,
+ "topic_link": "https://www.bilibili.com/blackboard/dynamic/62601"
+ }
+ ]
+ },
+ "emoji_info": {
+ "emoji_details": [
+ {
+ "emoji_name": "[W-哈哈]",
+ "id": 3045,
+ "package_id": 1,
+ "state": 0,
+ "type": 1,
+ "attr": 0,
+ "text": "[W-哈哈]",
+ "url": "https://i0.hdslb.com/bfs/emote/83d527303c8f62f494e6971c48836487e7d87b1b.png",
+ "meta": {
+ "size": 1
+ },
+ "mtime": 1608785082
+ },
+ {
+ "emoji_name": "[打call]",
+ "id": 510,
+ "package_id": 1,
+ "state": 0,
+ "type": 1,
+ "attr": 0,
+ "text": "[打call]",
+ "url": "https://i0.hdslb.com/bfs/emote/431432c43da3ee5aab5b0e4f8931953e649e9975.png",
+ "meta": {
+ "size": 1
+ },
+ "mtime": 1617293741
+ }
+ ]
+ },
+ "relation": {
+ "status": 1,
+ "is_follow": 0,
+ "is_followed": 0
+ },
+ "up_act_button": {
+ "report_title": "举报",
+ "founder_report_title": "举报(发起人)",
+ "top_title": "置顶",
+ "top_confirm_title": "确定将此动态置顶吗",
+ "top_cancel_title": "确定将此动态取消置顶吗"
+ },
+ "show_tip": {
+ "del_tip": "要删除动态吗?"
+ }
+ }
+ },
+ {
+ "desc": {
+ "uid": 1902548007,
+ "type": 2,
+ "rid": 131480564,
+ "acl": 0,
+ "view": 1056,
+ "repost": 0,
+ "comment": 0,
+ "like": 16,
+ "is_liked": 0,
+ "dynamic_id": 517482725259184156,
+ "timestamp": 1619324236,
+ "pre_dy_id": 0,
+ "orig_dy_id": 0,
+ "orig_type": 0,
+ "user_profile": {
+ "info": {
+ "uid": 1902548007,
+ "uname": "BV社",
+ "face": "https://i0.hdslb.com/bfs/face/48f8e6afa688e37b9f1e3721a86bea8ce02688dc.jpg"
+ },
+ "card": {
+ "official_verify": {
+ "type": 1,
+ "desc": "BV社官方账号"
+ }
+ },
+ "vip": {
+ "vipType": 0,
+ "vipDueDate": 0,
+ "vipStatus": 0,
+ "themeType": 0,
+ "label": {
+ "path": "",
+ "text": "",
+ "label_theme": "",
+ "text_color": "",
+ "bg_style": 0,
+ "bg_color": "",
+ "border_color": ""
+ },
+ "avatar_subscript": 0,
+ "nickname_color": "",
+ "role": 0,
+ "avatar_subscript_url": ""
+ },
+ "pendant": {
+ "pid": 0,
+ "name": "",
+ "image": "",
+ "expire": 0,
+ "image_enhance": "",
+ "image_enhance_frame": ""
+ },
+ "rank": "10000",
+ "sign": "Vomic,让你爱的漫画更动听",
+ "level_info": {
+ "current_level": 2
+ }
+ },
+ "uid_type": 1,
+ "recommend_info": {
+ "is_attention": 0
+ },
+ "stype": 0,
+ "r_type": 1,
+ "inner_id": 0,
+ "topic_board": "C",
+ "topic_board_desc": "最新",
+ "status": 1,
+ "dynamic_id_str": "517482725259184156",
+ "pre_dy_id_str": "0",
+ "orig_dy_id_str": "0",
+ "rid_str": "131480564"
+ },
+ "card": "{\"item\":{\"at_control\":\"[{\\\"location\\\":122,\\\"type\\\":1,\\\"length\\\":8,\\\"data\\\":\\\"326499679\\\"},{\\\"location\\\":133,\\\"type\\\":1,\\\"length\\\":5,\\\"data\\\":\\\"1902548007\\\"},{\\\"location\\\":141,\\\"type\\\":1,\\\"length\\\":9,\\\"data\\\":\\\"386135764\\\"},{\\\"location\\\":153,\\\"type\\\":1,\\\"length\\\":6,\\\"data\\\":\\\"1740792\\\"}]\",\"category\":\"daily\",\"description\":\"#哔哩哔哩漫画#独家\\n“女鬼”找上门,却是为了救人?\\n“养尸地?那是啥?里面有宝贝嘛?”\\n“有凶尸。”\\n哟,父子俩这是什么情况?\\n惊奇 #Vomic##幽冥诡匠#第五集正式上线!每周日更新!更多精彩,小剧场,花絮,尽在哔哩哔哩漫画APP\\n出品:@哔哩哔哩漫画\\n策划:@BV社\\n制作:@回声漫响工作室\\n录制:@音熊联萌 \",\"id\":131480564,\"is_fav\":0,\"pictures\":[{\"img_height\":2400,\"img_size\":2852.115234375,\"img_src\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/album\\/cb7632509c8cb8a7703f5ab289320b26a07ec62e.jpg\",\"img_tags\":null,\"img_width\":2400}],\"pictures_count\":1,\"reply\":0,\"role\":[],\"settings\":{\"copy_forbidden\":\"0\"},\"source\":[],\"title\":\"\",\"upload_time\":1619324236},\"user\":{\"head_url\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/face\\/48f8e6afa688e37b9f1e3721a86bea8ce02688dc.jpg\",\"name\":\"BV社\",\"uid\":1902548007,\"vip\":{\"avatar_subscript\":0,\"due_date\":0,\"label\":{\"label_theme\":\"\",\"path\":\"\",\"text\":\"\"},\"nickname_color\":\"\",\"status\":0,\"theme_type\":0,\"type\":0,\"vip_pay_type\":0}}}",
+ "extend_json": "{\"ctrl\":[{\"data\":\"326499679\",\"length\":8,\"location\":122,\"type\":1},{\"data\":\"1902548007\",\"length\":5,\"location\":133,\"type\":1},{\"data\":\"386135764\",\"length\":9,\"location\":141,\"type\":1},{\"data\":\"1740792\",\"length\":6,\"location\":153,\"type\":1}],\"from\":{\"emoji_type\":1,\"from\":\"create.dynamic.web\",\"up_close_comment\":0,\"verify\":{\"asw\":{\"fl\":15,\"nv\":1},\"sw\":{\"fl\":15,\"nv\":1}}},\"like_icon\":{\"action\":\"\",\"action_url\":\"\",\"end\":\"\",\"end_url\":\"\",\"start\":\"\",\"start_url\":\"\"},\"topic\":{\"is_attach_topic\":1}}",
+ "display": {
+ "topic_info": {
+ "topic_details": [
+ {
+ "topic_id": 7539944,
+ "topic_name": "哔哩哔哩漫画",
+ "is_activity": 0,
+ "topic_link": ""
+ },
+ {
+ "topic_id": 3208432,
+ "topic_name": "Vomic",
+ "is_activity": 1,
+ "topic_link": "https://www.bilibili.com/blackboard/dynamic/106426"
+ },
+ {
+ "topic_id": 7128092,
+ "topic_name": "幽冥诡匠",
+ "is_activity": 1,
+ "topic_link": "https://www.bilibili.com/blackboard/dynamic/42527"
+ },
+ {
+ "topic_id": 37542,
+ "topic_name": "VOMIC",
+ "is_activity": 1,
+ "topic_link": "https://www.bilibili.com/blackboard/dynamic/106283"
+ },
+ {
+ "topic_id": 8972604,
+ "topic_name": "vomic",
+ "is_activity": 1,
+ "topic_link": "https://www.bilibili.com/blackboard/dynamic/106766"
+ }
+ ]
+ },
+ "relation": {
+ "status": 1,
+ "is_follow": 0,
+ "is_followed": 0
+ },
+ "up_act_button": {
+ "report_title": "举报",
+ "founder_report_title": "举报(发起人)",
+ "top_title": "置顶",
+ "top_confirm_title": "确定将此动态置顶吗",
+ "top_cancel_title": "确定将此动态取消置顶吗"
+ },
+ "show_tip": {
+ "del_tip": "要删除动态吗?"
+ }
+ }
+ },
+ {
+ "desc": {
+ "uid": 255495142,
+ "type": 1,
+ "rid": 517480856950088884,
+ "acl": 0,
+ "view": 331,
+ "repost": 0,
+ "comment": 0,
+ "like": 0,
+ "is_liked": 0,
+ "dynamic_id": 517480856947349138,
+ "timestamp": 1619323801,
+ "pre_dy_id": 517479366596833835,
+ "orig_dy_id": 517479366596833835,
+ "orig_type": 2,
+ "user_profile": {
+ "info": {
+ "uid": 255495142,
+ "uname": "坐怀不乱登徒子",
+ "face": "https://i1.hdslb.com/bfs/face/fa18d118f6c58da704400909743fb895c4c47627.jpg"
+ },
+ "card": {
+ "official_verify": {
+ "type": -1,
+ "desc": ""
+ }
+ },
+ "vip": {
+ "vipType": 2,
+ "vipDueDate": 1626451200000,
+ "vipStatus": 1,
+ "themeType": 0,
+ "label": {
+ "path": "",
+ "text": "年度大会员",
+ "label_theme": "annual_vip",
+ "text_color": "#FFFFFF",
+ "bg_style": 1,
+ "bg_color": "#FB7299",
+ "border_color": ""
+ },
+ "avatar_subscript": 1,
+ "nickname_color": "#FB7299",
+ "role": 3,
+ "avatar_subscript_url": "https://i0.hdslb.com/bfs/vip/icon_Certification_big_member_22_3x.png"
+ },
+ "pendant": {
+ "pid": 204,
+ "name": "至高守护",
+ "image": "https://i1.hdslb.com/bfs/face/88162662c23c2768c9e9e5c25017375685e83798.png",
+ "expire": 0,
+ "image_enhance": "https://i1.hdslb.com/bfs/face/88162662c23c2768c9e9e5c25017375685e83798.png",
+ "image_enhance_frame": ""
+ },
+ "rank": "10000",
+ "sign": "",
+ "level_info": {
+ "current_level": 5
+ }
+ },
+ "uid_type": 1,
+ "recommend_info": {
+ "is_attention": 0
+ },
+ "stype": 0,
+ "r_type": 1,
+ "inner_id": 0,
+ "topic_board": "C",
+ "topic_board_desc": "最新",
+ "status": 1,
+ "dynamic_id_str": "517480856947349138",
+ "pre_dy_id_str": "517479366596833835",
+ "orig_dy_id_str": "517479366596833835",
+ "rid_str": "517480856950088884",
+ "origin": {
+ "uid": 326499679,
+ "type": 2,
+ "rid": 131479206,
+ "acl": 1024,
+ "view": 1379492,
+ "repost": 11233,
+ "comment": 573,
+ "like": 6337,
+ "is_liked": 0,
+ "dynamic_id": 517479366596833835,
+ "timestamp": 1619323454,
+ "user_profile": {
+ "info": {
+ "uid": 326499679,
+ "uname": "哔哩哔哩漫画",
+ "face": "https://i1.hdslb.com/bfs/face/2254162161a60b528cfec449f3450409a81ebc37.jpg"
+ },
+ "card": {
+ "official_verify": {
+ "type": 1,
+ "desc": "哔哩哔哩漫画官方账号"
+ }
+ },
+ "vip": {
+ "vipType": 2,
+ "vipDueDate": 1941033600000,
+ "vipStatus": 1,
+ "themeType": 0,
+ "label": {
+ "path": "",
+ "text": "十年大会员",
+ "label_theme": "ten_annual_vip",
+ "text_color": "#FFFFFF",
+ "bg_style": 1,
+ "bg_color": "#FB7299",
+ "border_color": ""
+ },
+ "avatar_subscript": 1,
+ "nickname_color": "#FB7299",
+ "role": 7,
+ "avatar_subscript_url": "https://i0.hdslb.com/bfs/vip/icon_Certification_big_member_22_3x.png"
+ },
+ "pendant": {
+ "pid": 0,
+ "name": "",
+ "image": "",
+ "expire": 0,
+ "image_enhance": "",
+ "image_enhance_frame": ""
+ },
+ "rank": "10000",
+ "sign": "↑ 【关注漫画姬】就送【漫读券5张】,当日或次日登录哔哩哔哩漫画APP即可领取,快来关注领券吧(°∀°)ノ ↑",
+ "level_info": {
+ "current_level": 6
+ }
+ },
+ "uid_type": 1,
+ "r_type": 1,
+ "status": 1,
+ "dynamic_id_str": "517479366596833835",
+ "pre_dy_id_str": "0",
+ "orig_dy_id_str": "0",
+ "rid_str": "131479206"
+ }
+ },
+ "card": "{ \"user\": { \"uid\": 255495142, \"uname\": \"坐怀不乱登徒子\", \"face\": \"https:\\/\\/i1.hdslb.com\\/bfs\\/face\\/fa18d118f6c58da704400909743fb895c4c47627.jpg\" }, \"item\": { \"rp_id\": 517480856950088884, \"uid\": 255495142, \"content\": \"[doge]#哔哩哔哩漫画#,#AISHA#\", \"orig_dy_id\": 517479366596833835, \"pre_dy_id\": 517479366596833835, \"timestamp\": 1619323801, \"reply\": 0, \"orig_type\": 2 }, \"origin\": \"{\\\"item\\\":{\\\"at_control\\\":\\\"[{\\\\\\\"data\\\\\\\":\\\\\\\"5\\\\\\\",\\\\\\\"length\\\\\\\":0,\\\\\\\"location\\\\\\\":0,\\\\\\\"type\\\\\\\":2},{\\\\\\\"location\\\\\\\":19,\\\\\\\"type\\\\\\\":1,\\\\\\\"length\\\\\\\":8,\\\\\\\"data\\\\\\\":\\\\\\\"1425490690\\\\\\\"}]\\\",\\\"category\\\":\\\"daily\\\",\\\"description\\\":\\\"互动抽奖 关+转,抽3位幸运小伙伴送@漫画家法吉特 【《逆光》画集作者签名版】~\\\\n #哔哩哔哩漫画#重磅安利之《#AISHA#》\\\\n当当当当!剧情党福音~\\\\n答题就有机会赢得礼物?还有法吉特太太亲签精美画集?\\\\n活动入口→https:\\\\\\/\\\\\\/www.bilibili.com\\\\\\/blackboard\\\\\\/topic\\\\\\/activity-oPISh007wv.html\\\\n\\\\n你以为这样就结束了了吗?\\\\nNONONO~\\\\n法吉特老师首次出版个人作品集《逆光》~商城4月25日0点首发开售!\\\\n有法吉特老师签名版掉落哦!随书额外附赠专属书签特典!\\\\n活动指路:哔哩哔哩漫画APP-我的-商城-banner\\\",\\\"id\\\":131479206,\\\"is_fav\\\":0,\\\"pictures\\\":[{\\\"img_height\\\":782,\\\"img_size\\\":1097.2451171875,\\\"img_src\\\":\\\"https:\\\\\\/\\\\\\/i0.hdslb.com\\\\\\/bfs\\\\\\/album\\\\\\/8965a784f77e2545f4f2f168df4f417ed3ace818.png\\\",\\\"img_tags\\\":null,\\\"img_width\\\":750}],\\\"pictures_count\\\":1,\\\"reply\\\":573,\\\"role\\\":[],\\\"settings\\\":{\\\"copy_forbidden\\\":\\\"0\\\"},\\\"source\\\":[],\\\"title\\\":\\\"\\\",\\\"upload_time\\\":1619323454},\\\"user\\\":{\\\"head_url\\\":\\\"https:\\\\\\/\\\\\\/i1.hdslb.com\\\\\\/bfs\\\\\\/face\\\\\\/2254162161a60b528cfec449f3450409a81ebc37.jpg\\\",\\\"name\\\":\\\"哔哩哔哩漫画\\\",\\\"uid\\\":326499679,\\\"vip\\\":{\\\"avatar_subscript\\\":1,\\\"due_date\\\":1941033600000,\\\"label\\\":{\\\"label_theme\\\":\\\"ten_annual_vip\\\",\\\"path\\\":\\\"\\\",\\\"text\\\":\\\"十年大会员\\\"},\\\"nickname_color\\\":\\\"#FB7299\\\",\\\"status\\\":1,\\\"theme_type\\\":0,\\\"type\\\":2,\\\"vip_pay_type\\\":0}}}\", \"origin_extension\": { \"lott\": \"{\\\"lottery_id\\\":61398}\" }, \"origin_extend_json\": \"{\\\"ctrl\\\":[{\\\"data\\\":\\\"5\\\",\\\"length\\\":0,\\\"location\\\":0,\\\"type\\\":2},{\\\"data\\\":\\\"1425490690\\\",\\\"length\\\":8,\\\"location\\\":19,\\\"type\\\":1}],\\\"from\\\":{\\\"emoji_type\\\":1,\\\"from\\\":\\\"create.dynamic.web\\\",\\\"up_close_comment\\\":0,\\\"verify\\\":{\\\"asw\\\":{\\\"fl\\\":15,\\\"nv\\\":1},\\\"cc\\\":{\\\"vf\\\":1},\\\"sw\\\":{\\\"fl\\\":15,\\\"nv\\\":1}}},\\\"like_icon\\\":{\\\"action\\\":\\\"\\\",\\\"action_url\\\":\\\"\\\",\\\"end\\\":\\\"\\\",\\\"end_url\\\":\\\"\\\",\\\"start\\\":\\\"\\\",\\\"start_url\\\":\\\"\\\"},\\\"lott\\\":{\\\"lottery_id\\\":61398},\\\"topic\\\":{\\\"is_attach_topic\\\":1}}\", \"origin_user\": { \"info\": { \"uid\": 326499679, \"uname\": \"哔哩哔哩漫画\", \"face\": \"https:\\/\\/i1.hdslb.com\\/bfs\\/face\\/2254162161a60b528cfec449f3450409a81ebc37.jpg\" }, \"card\": { \"official_verify\": { \"type\": 1, \"desc\": \"哔哩哔哩漫画官方账号\" } }, \"vip\": { \"vipType\": 2, \"vipDueDate\": 1941033600000, \"vipStatus\": 1, \"themeType\": 0, \"label\": { \"path\": \"\", \"text\": \"十年大会员\", \"label_theme\": \"ten_annual_vip\", \"text_color\": \"#FFFFFF\", \"bg_style\": 1, \"bg_color\": \"#FB7299\", \"border_color\": \"\" }, \"avatar_subscript\": 1, \"nickname_color\": \"#FB7299\", \"role\": 7, \"avatar_subscript_url\": \"https:\\/\\/i0.hdslb.com\\/bfs\\/vip\\/icon_Certification_big_member_22_3x.png\" }, \"pendant\": { \"pid\": 0, \"name\": \"\", \"image\": \"\", \"expire\": 0, \"image_enhance\": \"\", \"image_enhance_frame\": \"\" }, \"rank\": \"10000\", \"sign\": \"↑ 【关注漫画姬】就送【漫读券5张】,当日或次日登录哔哩哔哩漫画APP即可领取,快来关注领券吧(°∀°)ノ ↑\", \"level_info\": { \"current_level\": 6 } } }",
+ "extend_json": "{\"from\":{\"emoji_type\":1,\"from\":\"create.comment\",\"up_close_comment\":0},\"like_icon\":{\"action\":\"\",\"action_url\":\"\",\"end\":\"\",\"end_url\":\"\",\"start\":\"\",\"start_url\":\"\"},\"topic\":{\"is_attach_topic\":1}}",
+ "display": {
+ "topic_info": {
+ "topic_details": [
+ {
+ "topic_id": 7539944,
+ "topic_name": "哔哩哔哩漫画",
+ "is_activity": 0,
+ "topic_link": ""
+ },
+ {
+ "topic_id": 148830,
+ "topic_name": "AISHA",
+ "is_activity": 1,
+ "topic_link": "https://www.bilibili.com/blackboard/dynamic/18159"
+ },
+ {
+ "topic_id": 2514603,
+ "topic_name": "aisha",
+ "is_activity": 0,
+ "topic_link": ""
+ }
+ ]
+ },
+ "origin": {
+ "topic_info": {
+ "topic_details": [
+ {
+ "topic_id": 7539944,
+ "topic_name": "哔哩哔哩漫画",
+ "is_activity": 0,
+ "topic_link": ""
+ },
+ {
+ "topic_id": 148830,
+ "topic_name": "AISHA",
+ "is_activity": 1,
+ "topic_link": "https://www.bilibili.com/blackboard/dynamic/18159"
+ },
+ {
+ "topic_id": 2514603,
+ "topic_name": "aisha",
+ "is_activity": 0,
+ "topic_link": ""
+ }
+ ]
+ },
+ "relation": {
+ "status": 1,
+ "is_follow": 0,
+ "is_followed": 0
+ },
+ "show_tip": {
+ "del_tip": "要删除动态吗?"
+ }
+ },
+ "emoji_info": {
+ "emoji_details": [
+ {
+ "emoji_name": "[doge]",
+ "id": 26,
+ "package_id": 1,
+ "state": 0,
+ "type": 1,
+ "attr": 0,
+ "text": "[doge]",
+ "url": "https://i0.hdslb.com/bfs/emote/3087d273a78ccaff4bb1e9972e2ba2a7583c9f11.png",
+ "meta": {
+ "size": 1
+ },
+ "mtime": 1617293741
+ }
+ ]
+ },
+ "relation": {
+ "status": 1,
+ "is_follow": 0,
+ "is_followed": 0
+ },
+ "up_act_button": {
+ "report_title": "举报",
+ "founder_report_title": "举报(发起人)",
+ "top_title": "置顶",
+ "top_confirm_title": "确定将此动态置顶吗",
+ "top_cancel_title": "确定将此动态取消置顶吗"
+ },
+ "show_tip": {
+ "del_tip": "要删除动态吗?"
+ }
+ }
+ },
+ {
+ "desc": {
+ "uid": 326499679,
+ "type": 2,
+ "rid": 131479206,
+ "acl": 1024,
+ "view": 1379492,
+ "repost": 11233,
+ "comment": 573,
+ "like": 6337,
+ "is_liked": 0,
+ "dynamic_id": 517479366596833835,
+ "timestamp": 1619323454,
+ "orig_type": 0,
+ "user_profile": {
+ "info": {
+ "uid": 326499679,
+ "uname": "哔哩哔哩漫画",
+ "face": "https://i1.hdslb.com/bfs/face/2254162161a60b528cfec449f3450409a81ebc37.jpg"
+ },
+ "card": {
+ "official_verify": {
+ "type": 1,
+ "desc": "哔哩哔哩漫画官方账号"
+ }
+ },
+ "vip": {
+ "vipType": 2,
+ "vipDueDate": 1941033600000,
+ "vipStatus": 1,
+ "themeType": 0,
+ "label": {
+ "path": "",
+ "text": "十年大会员",
+ "label_theme": "ten_annual_vip",
+ "text_color": "#FFFFFF",
+ "bg_style": 1,
+ "bg_color": "#FB7299",
+ "border_color": ""
+ },
+ "avatar_subscript": 1,
+ "nickname_color": "#FB7299",
+ "role": 7,
+ "avatar_subscript_url": "https://i0.hdslb.com/bfs/vip/icon_Certification_big_member_22_3x.png"
+ },
+ "pendant": {
+ "pid": 0,
+ "name": "",
+ "image": "",
+ "expire": 0,
+ "image_enhance": "",
+ "image_enhance_frame": ""
+ },
+ "rank": "10000",
+ "sign": "↑ 【关注漫画姬】就送【漫读券5张】,当日或次日登录哔哩哔哩漫画APP即可领取,快来关注领券吧(°∀°)ノ ↑",
+ "level_info": {
+ "current_level": 6
+ }
+ },
+ "uid_type": 1,
+ "recommend_info": {
+ "is_attention": 0
+ },
+ "r_type": 1,
+ "topic_board": "C",
+ "topic_board_desc": "最新",
+ "status": 1,
+ "dynamic_id_str": "517479366596833835",
+ "pre_dy_id_str": "0",
+ "orig_dy_id_str": "0",
+ "rid_str": "131479206"
+ },
+ "card": "{\"item\":{\"at_control\":\"[{\\\"data\\\":\\\"5\\\",\\\"length\\\":0,\\\"location\\\":0,\\\"type\\\":2},{\\\"location\\\":19,\\\"type\\\":1,\\\"length\\\":8,\\\"data\\\":\\\"1425490690\\\"}]\",\"category\":\"daily\",\"description\":\"互动抽奖 关+转,抽3位幸运小伙伴送@漫画家法吉特 【《逆光》画集作者签名版】~\\n #哔哩哔哩漫画#重磅安利之《#AISHA#》\\n当当当当!剧情党福音~\\n答题就有机会赢得礼物?还有法吉特太太亲签精美画集?\\n活动入口→https:\\/\\/www.bilibili.com\\/blackboard\\/topic\\/activity-oPISh007wv.html\\n\\n你以为这样就结束了了吗?\\nNONONO~\\n法吉特老师首次出版个人作品集《逆光》~商城4月25日0点首发开售!\\n有法吉特老师签名版掉落哦!随书额外附赠专属书签特典!\\n活动指路:哔哩哔哩漫画APP-我的-商城-banner\",\"id\":131479206,\"is_fav\":0,\"pictures\":[{\"img_height\":782,\"img_size\":1097.2451171875,\"img_src\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/album\\/8965a784f77e2545f4f2f168df4f417ed3ace818.png\",\"img_tags\":null,\"img_width\":750}],\"pictures_count\":1,\"reply\":573,\"role\":[],\"settings\":{\"copy_forbidden\":\"0\"},\"source\":[],\"title\":\"\",\"upload_time\":1619323454},\"user\":{\"head_url\":\"https:\\/\\/i1.hdslb.com\\/bfs\\/face\\/2254162161a60b528cfec449f3450409a81ebc37.jpg\",\"name\":\"哔哩哔哩漫画\",\"uid\":326499679,\"vip\":{\"avatar_subscript\":1,\"due_date\":1941033600000,\"label\":{\"label_theme\":\"ten_annual_vip\",\"path\":\"\",\"text\":\"十年大会员\"},\"nickname_color\":\"#FB7299\",\"status\":1,\"theme_type\":0,\"type\":2,\"vip_pay_type\":0}}}",
+ "extension": {
+ "lott": "{\"lottery_id\":61398}"
+ },
+ "extend_json": "{\"ctrl\":[{\"data\":\"5\",\"length\":0,\"location\":0,\"type\":2},{\"data\":\"1425490690\",\"length\":8,\"location\":19,\"type\":1}],\"from\":{\"emoji_type\":1,\"from\":\"create.dynamic.web\",\"up_close_comment\":0,\"verify\":{\"asw\":{\"fl\":15,\"nv\":1},\"cc\":{\"vf\":1},\"sw\":{\"fl\":15,\"nv\":1}}},\"like_icon\":{\"action\":\"\",\"action_url\":\"\",\"end\":\"\",\"end_url\":\"\",\"start\":\"\",\"start_url\":\"\"},\"lott\":{\"lottery_id\":61398},\"topic\":{\"is_attach_topic\":1}}",
+ "display": {
+ "topic_info": {
+ "topic_details": [
+ {
+ "topic_id": 7539944,
+ "topic_name": "哔哩哔哩漫画",
+ "is_activity": 0,
+ "topic_link": ""
+ },
+ {
+ "topic_id": 148830,
+ "topic_name": "AISHA",
+ "is_activity": 1,
+ "topic_link": "https://www.bilibili.com/blackboard/dynamic/18159"
+ },
+ {
+ "topic_id": 2514603,
+ "topic_name": "aisha",
+ "is_activity": 0,
+ "topic_link": ""
+ }
+ ]
+ },
+ "relation": {
+ "status": 1,
+ "is_follow": 0,
+ "is_followed": 0
+ },
+ "up_act_button": {
+ "report_title": "举报",
+ "founder_report_title": "举报(发起人)",
+ "top_title": "置顶",
+ "top_confirm_title": "确定将此动态置顶吗",
+ "top_cancel_title": "确定将此动态取消置顶吗"
+ },
+ "show_tip": {
+ "del_tip": "要删除动态吗?"
+ }
+ }
+ },
+ {
+ "desc": {
+ "uid": 271873076,
+ "type": 2,
+ "rid": 131468623,
+ "acl": 0,
+ "view": 22,
+ "repost": 0,
+ "comment": 0,
+ "like": 0,
+ "is_liked": 0,
+ "dynamic_id": 517452016241823721,
+ "timestamp": 1619317086,
+ "pre_dy_id": 0,
+ "orig_dy_id": 0,
+ "orig_type": 0,
+ "user_profile": {
+ "info": {
+ "uid": 271873076,
+ "uname": "爱乐果iLEGUO",
+ "face": "https://i2.hdslb.com/bfs/face/fb79ac0f6de92c8ecc7d4cd1e958d19376c85fe8.jpg"
+ },
+ "card": {
+ "official_verify": {
+ "type": -1,
+ "desc": ""
+ }
+ },
+ "vip": {
+ "vipType": 0,
+ "vipDueDate": 0,
+ "vipStatus": 0,
+ "themeType": 0,
+ "label": {
+ "path": "",
+ "text": "",
+ "label_theme": "",
+ "text_color": "",
+ "bg_style": 0,
+ "bg_color": "",
+ "border_color": ""
+ },
+ "avatar_subscript": 0,
+ "nickname_color": "",
+ "role": 0,
+ "avatar_subscript_url": ""
+ },
+ "pendant": {
+ "pid": 0,
+ "name": "",
+ "image": "",
+ "expire": 0,
+ "image_enhance": "",
+ "image_enhance_frame": ""
+ },
+ "rank": "10000",
+ "sign": "龙俦纪+羞耻侠+妖怪IDOLS+偶像饲养手册+闪亮的家+神奇少年团+第8界+爱果系列+爱次元!研究社",
+ "level_info": {
+ "current_level": 4
+ }
+ },
+ "uid_type": 1,
+ "recommend_info": {
+ "is_attention": 0
+ },
+ "stype": 0,
+ "r_type": 1,
+ "inner_id": 0,
+ "topic_board": "C",
+ "topic_board_desc": "最新",
+ "status": 1,
+ "dynamic_id_str": "517452016241823721",
+ "pre_dy_id_str": "0",
+ "orig_dy_id_str": "0",
+ "rid_str": "131468623"
+ },
+ "card": "{\"item\":{\"at_control\":\"\",\"category\":\"daily\",\"description\":\"《龙俦纪》第99话4月25日更新!\\n高振采药遇险,竟然从悬崖上坠入万丈深渊?!!\\n苏郃首次展现能力,苏千屹又从苏郃身上发现了什么秘密?\\n《龙俦纪》正在好评连载中,逢“五”更新,欢迎追漫!\\n#哔哩哔哩漫画# https:\\/\\/manga.bilibili.com\\/m\\/detail\\/mc26014 \\n#宝藏漫画##爱乐果##漫画##二次元##古风##玄幻##二次元条漫# \",\"id\":131468623,\"is_fav\":0,\"pictures\":[{\"img_height\":720,\"img_size\":297.19140625,\"img_src\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/album\\/54e4f9e0c339f42484fcbe42cb7e7f69be4b87aa.jpg\",\"img_tags\":null,\"img_width\":1280}],\"pictures_count\":1,\"reply\":0,\"role\":[],\"settings\":{\"copy_forbidden\":\"0\"},\"source\":[],\"title\":\"\",\"upload_time\":1619317086},\"user\":{\"head_url\":\"https:\\/\\/i2.hdslb.com\\/bfs\\/face\\/fb79ac0f6de92c8ecc7d4cd1e958d19376c85fe8.jpg\",\"name\":\"爱乐果iLEGUO\",\"uid\":271873076,\"vip\":{\"avatar_subscript\":0,\"due_date\":0,\"label\":{\"label_theme\":\"\",\"path\":\"\",\"text\":\"\"},\"nickname_color\":\"\",\"status\":0,\"theme_type\":0,\"type\":0,\"vip_pay_type\":0}}}",
+ "extend_json": "{\"from\":{\"emoji_type\":1,\"from\":\"timer.publish\",\"up_close_comment\":0,\"verify\":{}},\"like_icon\":{\"action\":\"\",\"action_url\":\"\",\"end\":\"\",\"end_url\":\"\",\"start\":\"\",\"start_url\":\"\"},\"topic\":{\"is_attach_topic\":1}}",
+ "display": {
+ "topic_info": {
+ "topic_details": [
+ {
+ "topic_id": 7539944,
+ "topic_name": "哔哩哔哩漫画",
+ "is_activity": 0,
+ "topic_link": ""
+ },
+ {
+ "topic_id": 10182306,
+ "topic_name": "宝藏漫画",
+ "is_activity": 0,
+ "topic_link": ""
+ },
+ {
+ "topic_id": 9628017,
+ "topic_name": "爱乐果",
+ "is_activity": 0,
+ "topic_link": ""
+ },
+ {
+ "topic_id": 1184,
+ "topic_name": "漫画",
+ "is_activity": 0,
+ "topic_link": ""
+ },
+ {
+ "topic_id": 1907,
+ "topic_name": "二次元",
+ "is_activity": 1,
+ "topic_link": "https://www.bilibili.com/blackboard/dynamic/7694"
+ },
+ {
+ "topic_id": 8227,
+ "topic_name": "古风",
+ "is_activity": 0,
+ "topic_link": ""
+ },
+ {
+ "topic_id": 62935,
+ "topic_name": "玄幻",
+ "is_activity": 0,
+ "topic_link": ""
+ },
+ {
+ "topic_id": 12532729,
+ "topic_name": "二次元条漫",
+ "is_activity": 0,
+ "topic_link": ""
+ }
+ ]
+ },
+ "relation": {
+ "status": 1,
+ "is_follow": 0,
+ "is_followed": 0
+ },
+ "up_act_button": {
+ "report_title": "举报",
+ "founder_report_title": "举报(发起人)",
+ "top_title": "置顶",
+ "top_confirm_title": "确定将此动态置顶吗",
+ "top_cancel_title": "确定将此动态取消置顶吗"
+ },
+ "show_tip": {
+ "del_tip": "要删除动态吗?"
+ }
+ }
+ },
+ {
+ "desc": {
+ "uid": 1677019,
+ "type": 1,
+ "rid": 517443572335742626,
+ "acl": 0,
+ "view": 3,
+ "repost": 0,
+ "comment": 0,
+ "like": 0,
+ "is_liked": 0,
+ "dynamic_id": 517443572332941328,
+ "timestamp": 1619315120,
+ "pre_dy_id": 517241610091321208,
+ "orig_dy_id": 517241610091321208,
+ "orig_type": 2,
+ "user_profile": {
+ "info": {
+ "uid": 1677019,
+ "uname": "逗妇卤",
+ "face": "https://i1.hdslb.com/bfs/face/15a8f5d8c93f8f30bda71f192b92cfde2c76a1c7.jpg"
+ },
+ "card": {
+ "official_verify": {
+ "type": -1,
+ "desc": ""
+ }
+ },
+ "vip": {
+ "vipType": 2,
+ "vipDueDate": 1637510400000,
+ "vipStatus": 1,
+ "themeType": 0,
+ "label": {
+ "path": "",
+ "text": "年度大会员",
+ "label_theme": "annual_vip",
+ "text_color": "#FFFFFF",
+ "bg_style": 1,
+ "bg_color": "#FB7299",
+ "border_color": ""
+ },
+ "avatar_subscript": 1,
+ "nickname_color": "#FB7299",
+ "role": 3,
+ "avatar_subscript_url": "https://i0.hdslb.com/bfs/vip/icon_Certification_big_member_22_3x.png"
+ },
+ "pendant": {
+ "pid": 0,
+ "name": "",
+ "image": "",
+ "expire": 0,
+ "image_enhance": "",
+ "image_enhance_frame": ""
+ },
+ "rank": "10000",
+ "sign": "",
+ "level_info": {
+ "current_level": 5
+ }
+ },
+ "uid_type": 1,
+ "recommend_info": {
+ "is_attention": 0
+ },
+ "stype": 0,
+ "r_type": 1,
+ "inner_id": 0,
+ "topic_board": "C",
+ "topic_board_desc": "最新",
+ "status": 1,
+ "dynamic_id_str": "517443572332941328",
+ "pre_dy_id_str": "517241610091321208",
+ "orig_dy_id_str": "517241610091321208",
+ "rid_str": "517443572335742626",
+ "origin": {
+ "uid": 326499679,
+ "type": 2,
+ "rid": 131403515,
+ "acl": 1024,
+ "view": 1951519,
+ "repost": 16543,
+ "comment": 1003,
+ "like": 6950,
+ "is_liked": 0,
+ "dynamic_id": 517241610091321208,
+ "timestamp": 1619268097,
+ "user_profile": {
+ "info": {
+ "uid": 326499679,
+ "uname": "哔哩哔哩漫画",
+ "face": "https://i1.hdslb.com/bfs/face/2254162161a60b528cfec449f3450409a81ebc37.jpg"
+ },
+ "card": {
+ "official_verify": {
+ "type": 1,
+ "desc": "哔哩哔哩漫画官方账号"
+ }
+ },
+ "vip": {
+ "vipType": 2,
+ "vipDueDate": 1941033600000,
+ "vipStatus": 1,
+ "themeType": 0,
+ "label": {
+ "path": "",
+ "text": "十年大会员",
+ "label_theme": "ten_annual_vip",
+ "text_color": "#FFFFFF",
+ "bg_style": 1,
+ "bg_color": "#FB7299",
+ "border_color": ""
+ },
+ "avatar_subscript": 1,
+ "nickname_color": "#FB7299",
+ "role": 7,
+ "avatar_subscript_url": "https://i0.hdslb.com/bfs/vip/icon_Certification_big_member_22_3x.png"
+ },
+ "pendant": {
+ "pid": 0,
+ "name": "",
+ "image": "",
+ "expire": 0,
+ "image_enhance": "",
+ "image_enhance_frame": ""
+ },
+ "rank": "10000",
+ "sign": "↑ 【关注漫画姬】就送【漫读券5张】,当日或次日登录哔哩哔哩漫画APP即可领取,快来关注领券吧(°∀°)ノ ↑",
+ "level_info": {
+ "current_level": 6
+ }
+ },
+ "uid_type": 1,
+ "r_type": 1,
+ "status": 1,
+ "dynamic_id_str": "517241610091321208",
+ "pre_dy_id_str": "0",
+ "orig_dy_id_str": "0",
+ "rid_str": "131403515"
+ }
+ },
+ "card": "{ \"user\": { \"uid\": 1677019, \"uname\": \"逗妇卤\", \"face\": \"https:\\/\\/i1.hdslb.com\\/bfs\\/face\\/15a8f5d8c93f8f30bda71f192b92cfde2c76a1c7.jpg\" }, \"item\": { \"rp_id\": 517443572335742626, \"uid\": 1677019, \"content\": \"【关+转】抽1位小伙伴送【哔哩哔哩小电视兔子包】~\\n【#哔哩哔哩漫画# 作品推荐】大量西幻少女漫爆更来啦———\\n[干杯] 即日起,《重生成为公爵家的丑女》《暴君的监护人是反派魔女》《姐姐捡回了男主》等大量西幻少女精品漫画爆更,追漫更有樱花立牌\\/玩偶等福利好礼相送!\\n[干杯] 快来哔哩哔哩漫画追漫吧~\", \"orig_dy_id\": 517241610091321208, \"pre_dy_id\": 517241610091321208, \"timestamp\": 1619315120, \"reply\": 0, \"orig_type\": 2 }, \"origin\": \"{\\\"item\\\":{\\\"at_control\\\":\\\"[{\\\\\\\"type\\\\\\\":2,\\\\\\\"location\\\\\\\":0,\\\\\\\"length\\\\\\\":0,\\\\\\\"data\\\\\\\":\\\\\\\"5\\\\\\\"}]\\\",\\\"category\\\":\\\"daily\\\",\\\"description\\\":\\\"互动抽奖 【关+转】抽1位小伙伴送【哔哩哔哩小电视兔子包】~\\\\n【#哔哩哔哩漫画# 作品推荐】大量西幻少女漫爆更来啦———\\\\n[干杯] 即日起,《重生成为公爵家的丑女》《暴君的监护人是反派魔女》《姐姐捡回了男主》等大量西幻少女精品漫画爆更,追漫更有樱花立牌\\\\\\/玩偶等福利好礼相送!\\\\n[干杯] 快来哔哩哔哩漫画追漫吧~\\\",\\\"id\\\":131403515,\\\"is_fav\\\":0,\\\"pictures\\\":[{\\\"img_height\\\":1357,\\\"img_size\\\":1759.1650390625,\\\"img_src\\\":\\\"https:\\\\\\/\\\\\\/i0.hdslb.com\\\\\\/bfs\\\\\\/album\\\\\\/1ce565e7f36e0ae5a3809df21bb39aa2fe578a88.png\\\",\\\"img_tags\\\":null,\\\"img_width\\\":1080},{\\\"img_height\\\":1238,\\\"img_size\\\":832.51953125,\\\"img_src\\\":\\\"https:\\\\\\/\\\\\\/i0.hdslb.com\\\\\\/bfs\\\\\\/album\\\\\\/6df0150c77a7f42a5d31cce8bb006105a660dad9.png\\\",\\\"img_tags\\\":null,\\\"img_width\\\":1080},{\\\"img_height\\\":2193,\\\"img_size\\\":3424.060546875,\\\"img_src\\\":\\\"https:\\\\\\/\\\\\\/i0.hdslb.com\\\\\\/bfs\\\\\\/album\\\\\\/adce81c59436184b56d84e5394583d2ab491b2e6.png\\\",\\\"img_tags\\\":null,\\\"img_width\\\":1080},{\\\"img_height\\\":800,\\\"img_size\\\":166.1552734375,\\\"img_src\\\":\\\"https:\\\\\\/\\\\\\/i0.hdslb.com\\\\\\/bfs\\\\\\/album\\\\\\/9c4e8d6fc04d5a1f3df225d5967fb65c7a3f5f09.jpg\\\",\\\"img_tags\\\":null,\\\"img_width\\\":800}],\\\"pictures_count\\\":4,\\\"reply\\\":1003,\\\"role\\\":[],\\\"settings\\\":{\\\"copy_forbidden\\\":\\\"0\\\"},\\\"source\\\":[],\\\"title\\\":\\\"\\\",\\\"upload_time\\\":1619268097},\\\"user\\\":{\\\"head_url\\\":\\\"https:\\\\\\/\\\\\\/i1.hdslb.com\\\\\\/bfs\\\\\\/face\\\\\\/2254162161a60b528cfec449f3450409a81ebc37.jpg\\\",\\\"name\\\":\\\"哔哩哔哩漫画\\\",\\\"uid\\\":326499679,\\\"vip\\\":{\\\"avatar_subscript\\\":1,\\\"due_date\\\":1941033600000,\\\"label\\\":{\\\"label_theme\\\":\\\"ten_annual_vip\\\",\\\"path\\\":\\\"\\\",\\\"text\\\":\\\"十年大会员\\\"},\\\"nickname_color\\\":\\\"#FB7299\\\",\\\"status\\\":1,\\\"theme_type\\\":0,\\\"type\\\":2,\\\"vip_pay_type\\\":0}}}\", \"origin_extension\": { \"lott\": \"{\\\"callbackId\\\":10,\\\"lottery_id\\\":61382,\\\"lottery_time\\\":1620504000,\\\"title\\\":\\\"互动抽奖\\\"}\" }, \"origin_extend_json\": \"{\\\"ctrl\\\":[{\\\"data\\\":\\\"5\\\",\\\"length\\\":0,\\\"location\\\":0,\\\"type\\\":2}],\\\"from\\\":{\\\"emoji_type\\\":1,\\\"from\\\":\\\"\\\",\\\"up_close_comment\\\":0,\\\"verify\\\":{\\\"asw\\\":{\\\"fl\\\":15,\\\"nv\\\":1},\\\"cc\\\":{\\\"vf\\\":1},\\\"sw\\\":{\\\"fl\\\":15,\\\"nv\\\":1}}},\\\"like_icon\\\":{\\\"action\\\":\\\"\\\",\\\"action_url\\\":\\\"\\\",\\\"end\\\":\\\"\\\",\\\"end_url\\\":\\\"\\\",\\\"start\\\":\\\"\\\",\\\"start_url\\\":\\\"\\\"},\\\"lott\\\":{\\\"callbackId\\\":10,\\\"lottery_id\\\":61382,\\\"lottery_time\\\":1620504000,\\\"title\\\":\\\"互动抽奖\\\"},\\\"topic\\\":{\\\"is_attach_topic\\\":1}}\", \"origin_user\": { \"info\": { \"uid\": 326499679, \"uname\": \"哔哩哔哩漫画\", \"face\": \"https:\\/\\/i1.hdslb.com\\/bfs\\/face\\/2254162161a60b528cfec449f3450409a81ebc37.jpg\" }, \"card\": { \"official_verify\": { \"type\": 1, \"desc\": \"哔哩哔哩漫画官方账号\" } }, \"vip\": { \"vipType\": 2, \"vipDueDate\": 1941033600000, \"vipStatus\": 1, \"themeType\": 0, \"label\": { \"path\": \"\", \"text\": \"十年大会员\", \"label_theme\": \"ten_annual_vip\", \"text_color\": \"#FFFFFF\", \"bg_style\": 1, \"bg_color\": \"#FB7299\", \"border_color\": \"\" }, \"avatar_subscript\": 1, \"nickname_color\": \"#FB7299\", \"role\": 7, \"avatar_subscript_url\": \"https:\\/\\/i0.hdslb.com\\/bfs\\/vip\\/icon_Certification_big_member_22_3x.png\" }, \"pendant\": { \"pid\": 0, \"name\": \"\", \"image\": \"\", \"expire\": 0, \"image_enhance\": \"\", \"image_enhance_frame\": \"\" }, \"rank\": \"10000\", \"sign\": \"↑ 【关注漫画姬】就送【漫读券5张】,当日或次日登录哔哩哔哩漫画APP即可领取,快来关注领券吧(°∀°)ノ ↑\", \"level_info\": { \"current_level\": 6 } } }",
+ "extend_json": "{\"from\":{\"emoji_type\":1,\"up_close_comment\":0,\"verify\":{\"asw\":{\"fl\":15,\"nv\":1},\"sw\":{\"fl\":15,\"nv\":1}}},\"like_icon\":{\"action\":\"\",\"action_url\":\"\",\"end\":\"\",\"end_url\":\"\",\"start\":\"\",\"start_url\":\"\"},\"topic\":{\"is_attach_topic\":1}}",
+ "display": {
+ "topic_info": {
+ "topic_details": [
+ {
+ "topic_id": 7539944,
+ "topic_name": "哔哩哔哩漫画",
+ "is_activity": 0,
+ "topic_link": ""
+ }
+ ]
+ },
+ "origin": {
+ "topic_info": {
+ "topic_details": [
+ {
+ "topic_id": 7539944,
+ "topic_name": "哔哩哔哩漫画",
+ "is_activity": 0,
+ "topic_link": ""
+ }
+ ]
+ },
+ "emoji_info": {
+ "emoji_details": [
+ {
+ "emoji_name": "[干杯]",
+ "id": 1949,
+ "package_id": 1,
+ "state": 0,
+ "type": 1,
+ "attr": 0,
+ "text": "[干杯]",
+ "url": "https://i0.hdslb.com/bfs/emote/8da12d5f55a2c7e9778dcc05b40571979fe208e6.png",
+ "meta": {
+ "size": 1
+ },
+ "mtime": 1597738918
+ }
+ ]
+ },
+ "relation": {
+ "status": 1,
+ "is_follow": 0,
+ "is_followed": 0
+ },
+ "show_tip": {
+ "del_tip": "要删除动态吗?"
+ }
+ },
+ "emoji_info": {
+ "emoji_details": [
+ {
+ "emoji_name": "[干杯]",
+ "id": 1949,
+ "package_id": 1,
+ "state": 0,
+ "type": 1,
+ "attr": 0,
+ "text": "[干杯]",
+ "url": "https://i0.hdslb.com/bfs/emote/8da12d5f55a2c7e9778dcc05b40571979fe208e6.png",
+ "meta": {
+ "size": 1
+ },
+ "mtime": 1597738918
+ }
+ ]
+ },
+ "relation": {
+ "status": 1,
+ "is_follow": 0,
+ "is_followed": 0
+ },
+ "up_act_button": {
+ "report_title": "举报",
+ "founder_report_title": "举报(发起人)",
+ "top_title": "置顶",
+ "top_confirm_title": "确定将此动态置顶吗",
+ "top_cancel_title": "确定将此动态取消置顶吗"
+ },
+ "show_tip": {
+ "del_tip": "要删除动态吗?"
+ }
+ }
+ },
+ {
+ "desc": {
+ "uid": 324540735,
+ "type": 8,
+ "rid": 672631542,
+ "acl": 0,
+ "view": 29,
+ "repost": 0,
+ "like": 1,
+ "is_liked": 0,
+ "dynamic_id": 517311278755293659,
+ "timestamp": 1619284318,
+ "pre_dy_id": 0,
+ "orig_dy_id": 0,
+ "orig_type": 0,
+ "user_profile": {
+ "info": {
+ "uid": 324540735,
+ "uname": "文雯兄",
+ "face": "https://i0.hdslb.com/bfs/face/8000d5ad4652f8bf9074781a108eb54243a06889.jpg"
+ },
+ "card": {
+ "official_verify": {
+ "type": -1,
+ "desc": ""
+ }
+ },
+ "vip": {
+ "vipType": 1,
+ "vipDueDate": 1613491200000,
+ "vipStatus": 0,
+ "themeType": 0,
+ "label": {
+ "path": "",
+ "text": "",
+ "label_theme": "",
+ "text_color": "",
+ "bg_style": 0,
+ "bg_color": "",
+ "border_color": ""
+ },
+ "avatar_subscript": 0,
+ "nickname_color": "",
+ "role": 0,
+ "avatar_subscript_url": ""
+ },
+ "pendant": {
+ "pid": 0,
+ "name": "",
+ "image": "",
+ "expire": 0,
+ "image_enhance": "",
+ "image_enhance_frame": ""
+ },
+ "rank": "10000",
+ "sign": "游说万乘苦不早,著鞭跨马涉远道。",
+ "level_info": {
+ "current_level": 4
+ }
+ },
+ "uid_type": 1,
+ "recommend_info": {
+ "is_attention": 0
+ },
+ "stype": 0,
+ "r_type": 1,
+ "inner_id": 0,
+ "topic_board": "C",
+ "topic_board_desc": "最新",
+ "status": 1,
+ "dynamic_id_str": "517311278755293659",
+ "pre_dy_id_str": "0",
+ "orig_dy_id_str": "0",
+ "rid_str": "672631542",
+ "bvid": "BV1dU4y1h78A"
+ },
+ "card": "{\"aid\":672631542,\"attribute\":0,\"cid\":328783995,\"copyright\":1,\"ctime\":1619284318,\"desc\":\"本漫画由哔哩哔哩漫画出品,本人配音,谢谢大家的支持。\",\"dimension\":{\"height\":1920,\"rotate\":0,\"width\":864},\"duration\":191,\"dynamic\":\"\",\"item\":{\"at_control\":\"\"},\"jump_url\":\"bilibili:\\/\\/video\\/672631542\\/?page=1&player_preload=null&player_width=864&player_height=1920&player_rotate=0\",\"mission_id\":18978,\"owner\":{\"face\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/face\\/8000d5ad4652f8bf9074781a108eb54243a06889.jpg\",\"mid\":324540735,\"name\":\"文雯兄\"},\"pic\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/archive\\/b2d2dc3a909696ea1db3fbfeeb7ab42dc37ced87.jpg\",\"player_info\":null,\"pubdate\":1619284318,\"rights\":{\"autoplay\":1,\"bp\":0,\"download\":0,\"elec\":0,\"hd5\":0,\"is_cooperation\":0,\"movie\":0,\"no_background\":0,\"no_reprint\":1,\"pay\":0,\"ugc_pay\":0,\"ugc_pay_preview\":0},\"short_link\":\"https:\\/\\/b23.tv\\/BV1dU4y1h78A\",\"short_link_v2\":\"https:\\/\\/b23.tv\\/BV1dU4y1h78A\",\"stat\":{\"aid\":672631542,\"coin\":0,\"danmaku\":0,\"dislike\":0,\"favorite\":0,\"his_rank\":0,\"like\":1,\"now_rank\":0,\"reply\":0,\"share\":0,\"view\":10},\"state\":0,\"tid\":138,\"title\":\"怎么办,我穿越成最弱小野怪了(三十九)【关于我不当人的这件事】\",\"tname\":\"搞笑\",\"up_from_v2\":8,\"videos\":1}",
+ "extend_json": "{\"\":{\"ogv\":{\"ogv_id\":0}},\"dispute\":{\"content\":\"\"},\"from\":{\"from\":\"\"},\"like_icon\":{\"action\":\"\",\"action_url\":\"\",\"end\":\"\",\"end_url\":\"\",\"start\":\"\",\"start_url\":\"\"},\"topic\":{\"is_attach_topic\":1}}",
+ "display": {
+ "topic_info": {
+ "topic_details": [
+ {
+ "topic_id": 19254944,
+ "topic_name": "火力配音王-配音剧场",
+ "is_activity": 1,
+ "topic_link": "https://www.bilibili.com/blackboard/dynamic/108663"
+ },
+ {
+ "topic_id": 7539944,
+ "topic_name": "哔哩哔哩漫画",
+ "is_activity": 0,
+ "topic_link": ""
+ },
+ {
+ "topic_id": 3844,
+ "topic_name": "穿越",
+ "is_activity": 0,
+ "topic_link": ""
+ },
+ {
+ "topic_id": 1833,
+ "topic_name": "搞笑",
+ "is_activity": 0,
+ "topic_link": ""
+ },
+ {
+ "topic_id": 1217,
+ "topic_name": "自制",
+ "is_activity": 0,
+ "topic_link": ""
+ },
+ {
+ "topic_id": 1184,
+ "topic_name": "漫画",
+ "is_activity": 0,
+ "topic_link": ""
+ }
+ ]
+ },
+ "usr_action_txt": "投稿了视频",
+ "relation": {
+ "status": 1,
+ "is_follow": 0,
+ "is_followed": 0
+ },
+ "up_act_button": {
+ "report_title": "举报",
+ "founder_report_title": "举报(发起人)",
+ "top_title": "置顶",
+ "top_confirm_title": "确定将此动态置顶吗",
+ "top_cancel_title": "确定将此动态取消置顶吗"
+ },
+ "show_tip": {
+ "del_tip": "要删除动态吗?"
+ },
+ "cover_play_icon_url": "https://i0.hdslb.com/bfs/album/2269afa7897830b397797ebe5f032b899b405c67.png"
+ }
+ },
+ {
+ "desc": {
+ "uid": 326499679,
+ "type": 8,
+ "rid": 972719486,
+ "acl": 0,
+ "view": 2745390,
+ "repost": 4,
+ "like": 5879,
+ "is_liked": 0,
+ "dynamic_id": 517261895213635612,
+ "timestamp": 1619272820,
+ "pre_dy_id": 0,
+ "orig_dy_id": 0,
+ "orig_type": 0,
+ "user_profile": {
+ "info": {
+ "uid": 326499679,
+ "uname": "哔哩哔哩漫画",
+ "face": "https://i1.hdslb.com/bfs/face/2254162161a60b528cfec449f3450409a81ebc37.jpg"
+ },
+ "card": {
+ "official_verify": {
+ "type": 1,
+ "desc": "哔哩哔哩漫画官方账号"
+ }
+ },
+ "vip": {
+ "vipType": 2,
+ "vipDueDate": 1941033600000,
+ "vipStatus": 1,
+ "themeType": 0,
+ "label": {
+ "path": "",
+ "text": "十年大会员",
+ "label_theme": "ten_annual_vip",
+ "text_color": "#FFFFFF",-
+ "orig_dy_id_str": "0",
+ "rid_str": "972719486",
+ "bvid": "BV1Gp4y1b7ZB"
+ },
+ "card": "{\"aid\":972719486,\"attribute\":0,\"cid\":328058863,\"copyright\":1,\"ctime\":1619272820,\"desc\":\"#反派初始化# #Vomic#\\n圈圈叉叉,桃树开花,花瓣落下,生出新芽。\\n@哔哩哔哩漫画 出品、@BV社 策划、 @Antler_墨柚 原作、@叉叉叉叉叉口叉 主笔、@补天研究所 制作、@音熊联萌 录制、Vomic《反派初始化》第二集正式上线!\\n哔哩哔哩漫画独家播放,每周六更新!\\n还有小剧场,花絮不定时掉落、敬请期待~\\n\\n出品:@哔哩哔哩漫画\\n策划:@BV社\\n制作:@补天研究所\\n录制:@音熊联萌\",\"dimension\":{\"height\":1080,\"rotate\":0,\"width\":1920},\"duration\":62,\"dynamic\":\"#哔哩哔哩漫画#独家,#Vomic#2021年4月3日起每周六更新!更多精彩,小剧场,花絮,尽在哔哩哔哩漫画APP\",\"item\":{\"at_control\":\"\"},\"jump_url\":\"bilibili:\\/\\/video\\/972719486\\/?page=1&player_preload=null&player_width=1920&player_height=1080&player_rotate=0\",\"owner\":{\"face\":\"https:\\/\\/i1.hdslb.com\\/bfs\\/face\\/2254162161a60b528cfec449f3450409a81ebc37.jpg\",\"mid\":326499679,\"name\":\"哔哩哔哩漫画\"},\"pic\":\"https:\\/\\/i2.hdslb.com\\/bfs\\/archive\\/3c8a720b809153f95b1134acb991011eb79dc80b.jpg\",\"player_info\":null,\"pubdate\":1619272819,\"rights\":{\"autoplay\":1,\"bp\":0,\"download\":0,\"elec\":0,\"hd5\":1,\"is_cooperation\":0,\"movie\":0,\"no_background\":0,\"no_reprint\":1,\"pay\":0,\"ugc_pay\":0,\"ugc_pay_preview\":0},\"short_link\":\"https:\\/\\/b23.tv\\/BV1Gp4y1b7ZB\",\"short_link_v2\":\"https:\\/\\/b23.tv\\/BV1Gp4y1b7ZB\",\"stat\":{\"aid\":972719486,\"coin\":115,\"danmaku\":4,\"dislike\":0,\"favorite\":43,\"his_rank\":0,\"like\":5879,\"now_rank\":0,\"reply\":36,\"share\":145,\"view\":31840},\"state\":0,\"tid\":27,\"title\":\"【Vomic】滴——《反派初始化》第二集精彩片段!\",\"tname\":\"综合\",\"videos\":1}",
+ "extend_json": "{\"\":{\"ogv\":{\"ogv_id\":0}},\"dispute\":{\"content\":\"\"},\"from\":{\"from\":\"\",\"verify\":{}},\"like_icon\":{\"action\":\"\",\"action_url\":\"\",\"end\":\"\",\"end_url\":\"\",\"start\":\"\",\"start_url\":\"\"},\"topic\":{\"is_attach_topic\":1}}",
+ "display": {
+ "topic_info": {
+ "topic_details": [
+ {
+ "topic_id": 7539944,
+ "topic_name": "哔哩哔哩漫画",
+ "is_activity": 0,
+ "topic_link": ""
+ },
+ {
+ "topic_id": 3208432,
+ "topic_name": "Vomic",
+ "is_activity": 1,
+ "topic_link": "https://www.bilibili.com/blackboard/dynamic/106426"
+ },
+ {
+ "topic_id": 37542,
+ "topic_name": "VOMIC",
+ "is_activity": 1,
+ "topic_link": "https://www.bilibili.com/blackboard/dynamic/106283"
+ },
+ {
+ "topic_id": 8972604,
+ "topic_name": "vomic",
+ "is_activity": 1,
+ "topic_link": "https://www.bilibili.com/blackboard/dynamic/106766"
+ },
+ {
+ "topic_id": 210754,
+ "topic_name": "夏磊",
+ "is_activity": 0,
+ "topic_link": ""
+ },
+ {
+ "topic_id": 10526139,
+ "topic_name": "反派初始化",
+ "is_activity": 0,
+ "topic_link": ""
+ },
+ {
+ "topic_id": 1322133,
+ "topic_name": "赵路",
+ "is_activity": 0,
+ "topic_link": ""
+ },
+ {
+ "topic_id": 423864,
+ "topic_name": "音熊联萌",
+ "is_activity": 1,
+ "topic_link": "https://www.bilibili.com/blackboard/dynamic/17389"
+ }
+ ]
+ },
+ "usr_action_txt": "投稿了视频",
+ "relation": {
+ "status": 1,
+ "is_follow": 0,
+ "is_followed": 0
+ },
+ "up_act_button": {
+ "report_title": "举报",
+ "founder_report_title": "举报(发起人)",
+ "top_title": "置顶",
+ "top_confirm_title": "确定将此动态置顶吗",
+ "top_cancel_title": "确定将此动态取消置顶吗"
+ },
+ "show_tip": {
+ "del_tip": "要删除动态吗?"
+ },
+ "cover_play_icon_url": "https://i0.hdslb.com/bfs/album/2269afa7897830b397797ebe5f032b899b405c67.png"
+ }
+ },
+ {
+ "desc": {
+ "uid": 255495142,
+ "type": 1,
+ "rid": 517243774753706830,
+ "acl": 0,
+ "view": 8,
+ "repost": 0,
+ "comment": 0,
+ "like": 0,
+ "is_liked": 0,
+ "dynamic_id": 517243774755903256,
+ "timestamp": 1619268601,
+ "pre_dy_id": 517241610091321208,
+ "orig_dy_id": 517241610091321208,
+ "orig_type": 2,
+ "user_profile": {
+ "info": {
+ "uid": 255495142,
+ "uname": "坐怀不乱登徒子",
+ "face": "https://i1.hdslb.com/bfs/face/fa18d118f6c58da704400909743fb895c4c47627.jpg"
+ },
+ "card": {
+ "official_verify": {
+ "type": -1,
+ "desc": ""
+ }
+ },
+ "vip": {
+ "vipType": 2,
+ "vipDueDate": 1626451200000,
+ "vipStatus": 1,
+ "themeType": 0,
+ "label": {
+ "path": "",
+ "text": "年度大会员",
+ "label_theme": "annual_vip",
+ "text_color": "#FFFFFF",
+ "bg_style": 1,
+ "bg_color": "#FB7299",
+ "border_color": ""
+ },
+ "avatar_subscript": 1,
+ "nickname_color": "#FB7299",
+ "role": 3,
+ "avatar_subscript_url": "https://i0.hdslb.com/bfs/vip/icon_Certification_big_member_22_3x.png"
+ },
+ "pendant": {
+ "pid": 204,
+ "name": "至高守护",
+ "image": "https://i1.hdslb.com/bfs/face/88162662c23c2768c9e9e5c25017375685e83798.png",
+ "expire": 0,
+ "image_enhance": "https://i1.hdslb.com/bfs/face/88162662c23c2768c9e9e5c25017375685e83798.png",
+ "image_enhance_frame": ""
+ },
+ "rank": "10000",
+ "sign": "",
+ "level_info": {
+ "current_level": 5
+ }
+ },
+ "uid_type": 1,
+ "recommend_info": {
+ "is_attention": 0
+ },
+ "stype": 0,
+ "r_type": 1,
+ "inner_id": 0,
+ "topic_board": "C",
+ "topic_board_desc": "最新",
+ "status": 1,
+ "dynamic_id_str": "517243774755903256",
+ "pre_dy_id_str": "517241610091321208",
+ "orig_dy_id_str": "517241610091321208",
+ "rid_str": "517243774753706830",
+ "origin": {
+ "uid": 326499679,
+ "type": 2,
+ "rid": 131403515,
+ "acl": 1024,
+ "view": 1951519,
+ "repost": 16543,
+ "comment": 1003,
+ "like": 6950,
+ "is_liked": 0,
+ "dynamic_id": 517241610091321208,
+ "timestamp": 1619268097,
+ "user_profile": {
+ "info": {
+ "uid": 326499679,
+ "uname": "哔哩哔哩漫画",
+ "face": "https://i1.hdslb.com/bfs/face/2254162161a60b528cfec449f3450409a81ebc37.jpg"
+ },
+ "card": {
+ "official_verify": {
+ "type": 1,
+ "desc": "哔哩哔哩漫画官方账号"
+ }
+ },
+ "vip": {
+ "vipType": 2,
+ "vipDueDate": 1941033600000,
+ "vipStatus": 1,
+ "themeType": 0,
+ "label": {
+ "path": "",
+ "text": "十年大会员",
+ "label_theme": "ten_annual_vip",
+ "text_color": "#FFFFFF",
+ "bg_style": 1,
+ "bg_color": "#FB7299",
+ "border_color": ""
+ },
+ "avatar_subscript": 1,
+ "nickname_color": "#FB7299",
+ "role": 7,
+ "avatar_subscript_url": "https://i0.hdslb.com/bfs/vip/icon_Certification_big_member_22_3x.png"
+ },
+ "pendant": {
+ "pid": 0,
+ "name": "",
+ "image": "",
+ "expire": 0,
+ "image_enhance": "",
+ "image_enhance_frame": ""
+ },
+ "rank": "10000",
+ "sign": "↑ 【关注漫画姬】就送【漫读券5张】,当日或次日登录哔哩哔哩漫画APP即可领取,快来关注领券吧(°∀°)ノ ↑",
+ "level_info": {
+ "current_level": 6
+ }
+ },
+ "uid_type": 1,
+ "r_type": 1,
+ "status": 1,
+ "dynamic_id_str": "517241610091321208",
+ "pre_dy_id_str": "0",
+ "orig_dy_id_str": "0",
+ "rid_str": "131403515"
+ }
+ },
+ "card": "{ \"user\": { \"uid\": 255495142, \"uname\": \"坐怀不乱登徒子\", \"face\": \"https:\\/\\/i1.hdslb.com\\/bfs\\/face\\/fa18d118f6c58da704400909743fb895c4c47627.jpg\" }, \"item\": { \"rp_id\": 517243774753706830, \"uid\": 255495142, \"content\": \"冲冲冲#哔哩哔哩漫画#\", \"orig_dy_id\": 517241610091321208, \"pre_dy_id\": 517241610091321208, \"timestamp\": 1619268601, \"reply\": 0, \"orig_type\": 2 }, \"origin\": \"{\\\"item\\\":{\\\"at_control\\\":\\\"[{\\\\\\\"type\\\\\\\":2,\\\\\\\"location\\\\\\\":0,\\\\\\\"length\\\\\\\":0,\\\\\\\"data\\\\\\\":\\\\\\\"5\\\\\\\"}]\\\",\\\"category\\\":\\\"daily\\\",\\\"description\\\":\\\"互动抽奖 【关+转】抽1位小伙伴送【哔哩哔哩小电视兔子包】~\\\\n【#哔哩哔哩漫画# 作品推荐】大量西幻少女漫爆更来啦———\\\\n[干杯] 即日起,《重生成为公爵家的丑女》《暴君的监护人是反派魔女》《姐姐捡回了男主》等大量西幻少女精品漫画爆更,追漫更有樱花立牌\\\\\\/玩偶等福利好礼相送!\\\\n[干杯] 快来哔哩哔哩漫画追漫吧~\\\",\\\"id\\\":131403515,\\\"is_fav\\\":0,\\\"pictures\\\":[{\\\"img_height\\\":1357,\\\"img_size\\\":1759.1650390625,\\\"img_src\\\":\\\"https:\\\\\\/\\\\\\/i0.hdslb.com\\\\\\/bfs\\\\\\/album\\\\\\/1ce565e7f36e0ae5a3809df21bb39aa2fe578a88.png\\\",\\\"img_tags\\\":null,\\\"img_width\\\":1080},{\\\"img_height\\\":1238,\\\"img_size\\\":832.51953125,\\\"img_src\\\":\\\"https:\\\\\\/\\\\\\/i0.hdslb.com\\\\\\/bfs\\\\\\/album\\\\\\/6df0150c77a7f42a5d31cce8bb006105a660dad9.png\\\",\\\"img_tags\\\":null,\\\"img_width\\\":1080},{\\\"img_height\\\":2193,\\\"img_size\\\":3424.060546875,\\\"img_src\\\":\\\"https:\\\\\\/\\\\\\/i0.hdslb.com\\\\\\/bfs\\\\\\/album\\\\\\/adce81c59436184b56d84e5394583d2ab491b2e6.png\\\",\\\"img_tags\\\":null,\\\"img_width\\\":1080},{\\\"img_height\\\":800,\\\"img_size\\\":166.1552734375,\\\"img_src\\\":\\\"https:\\\\\\/\\\\\\/i0.hdslb.com\\\\\\/bfs\\\\\\/album\\\\\\/9c4e8d6fc04d5a1f3df225d5967fb65c7a3f5f09.jpg\\\",\\\"img_tags\\\":null,\\\"img_width\\\":800}],\\\"pictures_count\\\":4,\\\"reply\\\":1003,\\\"role\\\":[],\\\"settings\\\":{\\\"copy_forbidden\\\":\\\"0\\\"},\\\"source\\\":[],\\\"title\\\":\\\"\\\",\\\"upload_time\\\":1619268097},\\\"user\\\":{\\\"head_url\\\":\\\"https:\\\\\\/\\\\\\/i1.hdslb.com\\\\\\/bfs\\\\\\/face\\\\\\/2254162161a60b528cfec449f3450409a81ebc37.jpg\\\",\\\"name\\\":\\\"哔哩哔哩漫画\\\",\\\"uid\\\":326499679,\\\"vip\\\":{\\\"avatar_subscript\\\":1,\\\"due_date\\\":1941033600000,\\\"label\\\":{\\\"label_theme\\\":\\\"ten_annual_vip\\\",\\\"path\\\":\\\"\\\",\\\"text\\\":\\\"十年大会员\\\"},\\\"nickname_color\\\":\\\"#FB7299\\\",\\\"status\\\":1,\\\"theme_type\\\":0,\\\"type\\\":2,\\\"vip_pay_type\\\":0}}}\", \"origin_extension\": { \"lott\": \"{\\\"callbackId\\\":10,\\\"lottery_id\\\":61382,\\\"lottery_time\\\":1620504000,\\\"title\\\":\\\"互动抽奖\\\"}\" }, \"origin_extend_json\": \"{\\\"ctrl\\\":[{\\\"data\\\":\\\"5\\\",\\\"length\\\":0,\\\"location\\\":0,\\\"type\\\":2}],\\\"from\\\":{\\\"emoji_type\\\":1,\\\"from\\\":\\\"\\\",\\\"up_close_comment\\\":0,\\\"verify\\\":{\\\"asw\\\":{\\\"fl\\\":15,\\\"nv\\\":1},\\\"cc\\\":{\\\"vf\\\":1},\\\"sw\\\":{\\\"fl\\\":15,\\\"nv\\\":1}}},\\\"like_icon\\\":{\\\"action\\\":\\\"\\\",\\\"action_url\\\":\\\"\\\",\\\"end\\\":\\\"\\\",\\\"end_url\\\":\\\"\\\",\\\"start\\\":\\\"\\\",\\\"start_url\\\":\\\"\\\"},\\\"lott\\\":{\\\"callbackId\\\":10,\\\"lottery_id\\\":61382,\\\"lottery_time\\\":1620504000,\\\"title\\\":\\\"互动抽奖\\\"},\\\"topic\\\":{\\\"is_attach_topic\\\":1}}\", \"origin_user\": { \"info\": { \"uid\": 326499679, \"uname\": \"哔哩哔哩漫画\", \"face\": \"https:\\/\\/i1.hdslb.com\\/bfs\\/face\\/2254162161a60b528cfec449f3450409a81ebc37.jpg\" }, \"card\": { \"official_verify\": { \"type\": 1, \"desc\": \"哔哩哔哩漫画官方账号\" } }, \"vip\": { \"vipType\": 2, \"vipDueDate\": 1941033600000, \"vipStatus\": 1, \"themeType\": 0, \"label\": { \"path\": \"\", \"text\": \"十年大会员\", \"label_theme\": \"ten_annual_vip\", \"text_color\": \"#FFFFFF\", \"bg_style\": 1, \"bg_color\": \"#FB7299\", \"border_color\": \"\" }, \"avatar_subscript\": 1, \"nickname_color\": \"#FB7299\", \"role\": 7, \"avatar_subscript_url\": \"https:\\/\\/i0.hdslb.com\\/bfs\\/vip\\/icon_Certification_big_member_22_3x.png\" }, \"pendant\": { \"pid\": 0, \"name\": \"\", \"image\": \"\", \"expire\": 0, \"image_enhance\": \"\", \"image_enhance_frame\": \"\" }, \"rank\": \"10000\", \"sign\": \"↑ 【关注漫画姬】就送【漫读券5张】,当日或次日登录哔哩哔哩漫画APP即可领取,快来关注领券吧(°∀°)ノ ↑\", \"level_info\": { \"current_level\": 6 } } }",
+ "extend_json": "{\"from\":{\"emoji_type\":1,\"from\":\"create.comment\",\"up_close_comment\":0},\"like_icon\":{\"action\":\"\",\"action_url\":\"\",\"end\":\"\",\"end_url\":\"\",\"start\":\"\",\"start_url\":\"\"},\"topic\":{\"is_attach_topic\":1}}",
+ "display": {
+ "topic_info": {
+ "topic_details": [
+ {
+ "topic_id": 7539944,
+ "topic_name": "哔哩哔哩漫画",
+ "is_activity": 0,
+ "topic_link": ""
+ }
+ ]
+ },
+ "origin": {
+ "topic_info": {
+ "topic_details": [
+ {
+ "topic_id": 7539944,
+ "topic_name": "哔哩哔哩漫画",
+ "is_activity": 0,
+ "topic_link": ""
+ }
+ ]
+ },
+ "emoji_info": {
+ "emoji_details": [
+ {
+ "emoji_name": "[干杯]",
+ "id": 1949,
+ "package_id": 1,
+ "state": 0,
+ "type": 1,
+ "attr": 0,
+ "text": "[干杯]",
+ "url": "https://i0.hdslb.com/bfs/emote/8da12d5f55a2c7e9778dcc05b40571979fe208e6.png",
+ "meta": {
+ "size": 1
+ },
+ "mtime": 1597738918
+ }
+ ]
+ },
+ "relation": {
+ "status": 1,
+ "is_follow": 0,
+ "is_followed": 0
+ },
+ "show_tip": {
+ "del_tip": "要删除动态吗?"
+ }
+ },
+ "relation": {
+ "status": 1,
+ "is_follow": 0,
+ "is_followed": 0
+ },
+ "up_act_button": {
+ "report_title": "举报",
+ "founder_report_title": "举报(发起人)",
+ "top_title": "置顶",
+ "top_confirm_title": "确定将此动态置顶吗",
+ "top_cancel_title": "确定将此动态取消置顶吗"
+ },
+ "show_tip": {
+ "del_tip": "要删除动态吗?"
+ }
+ }
+ },
+ {
+ "desc": {
+ "uid": 335270851,
+ "type": 1,
+ "rid": 517243658786443535,
+ "acl": 0,
+ "view": 24,
+ "repost": 0,
+ "comment": 0,
+ "like": 1,
+ "is_liked": 0,
+ "dynamic_id": 517243658790736702,
+ "timestamp": 1619268574,
+ "pre_dy_id": 517241610091321208,
+ "orig_dy_id": 517241610091321208,
+ "orig_type": 2,
+ "user_profile": {
+ "info": {
+ "uid": 335270851,
+ "uname": "符号门",
+ "face": "https://i1.hdslb.com/bfs/face/67371311c9e047543a70c1d41e7a03c3854f2981.jpg"
+ },
+ "card": {
+ "official_verify": {
+ "type": -1,
+ "desc": ""
+ }
+ },
+ "vip": {
+ "vipType": 2,
+ "vipDueDate": 1647014400000,
+ "vipStatus": 1,
+ "themeType": 0,
+ "label": {
+ "path": "",
+ "text": "年度大会员",
+ "label_theme": "annual_vip",
+ "text_color": "#FFFFFF",
+ "bg_style": 1,
+ "bg_color": "#FB7299",
+ "border_color": ""
+ },
+ "avatar_subscript": 1,
+ "nickname_color": "#FB7299",
+ "role": 3,
+ "avatar_subscript_url": "https://i0.hdslb.com/bfs/vip/icon_Certification_big_member_22_3x.png"
+ },
+ "pendant": {
+ "pid": 0,
+ "name": "",
+ "image": "",
+ "expire": 0,
+ "image_enhance": "",
+ "image_enhance_frame": ""
+ },
+ "rank": "10000",
+ "sign": "",
+ "level_info": {
+ "current_level": 4
+ }
+ },
+ "uid_type": 1,
+ "recommend_info": {
+ "is_attention": 0
+ },
+ "stype": 0,
+ "r_type": 1,
+ "inner_id": 0,
+ "topic_board": "C",
+ "topic_board_desc": "最新",
+ "status": 1,
+ "dynamic_id_str": "517243658790736702",
+ "pre_dy_id_str": "517241610091321208",
+ "orig_dy_id_str": "517241610091321208",
+ "rid_str": "517243658786443535",
+ "origin": {
+ "uid": 326499679,
+ "type": 2,
+ "rid": 131403515,
+ "acl": 1024,
+ "view": 1951519,
+ "repost": 16543,
+ "comment": 1003,
+ "like": 6950,
+ "is_liked": 0,
+ "dynamic_id": 517241610091321208,
+ "timestamp": 1619268097,
+ "user_profile": {
+ "info": {
+ "uid": 326499679,
+ "uname": "哔哩哔哩漫画",
+ "face": "https://i1.hdslb.com/bfs/face/2254162161a60b528cfec449f3450409a81ebc37.jpg"
+ },
+ "card": {
+ "official_verify": {
+ "type": 1,
+ "desc": "哔哩哔哩漫画官方账号"
+ }
+ },
+ "vip": {
+ "vipType": 2,
+ "vipDueDate": 1941033600000,
+ "vipStatus": 1,
+ "themeType": 0,
+ "label": {
+ "path": "",
+ "text": "十年大会员",
+ "label_theme": "ten_annual_vip",
+ "text_color": "#FFFFFF",
+ "bg_style": 1,
+ "bg_color": "#FB7299",
+ "border_color": ""
+ },
+ "avatar_subscript": 1,
+ "nickname_color": "#FB7299",
+ "role": 7,
+ "avatar_subscript_url": "https://i0.hdslb.com/bfs/vip/icon_Certification_big_member_22_3x.png"
+ },
+ "pendant": {
+ "pid": 0,
+ "name": "",
+ "image": "",
+ "expire": 0,
+ "image_enhance": "",
+ "image_enhance_frame": ""
+ },
+ "rank": "10000",
+ "sign": "↑ 【关注漫画姬】就送【漫读券5张】,当日或次日登录哔哩哔哩漫画APP即可领取,快来关注领券吧(°∀°)ノ ↑",
+ "level_info": {
+ "current_level": 6
+ }
+ },
+ "uid_type": 1,
+ "r_type": 1,
+ "status": 1,
+ "dynamic_id_str": "517241610091321208",
+ "pre_dy_id_str": "0",
+ "orig_dy_id_str": "0",
+ "rid_str": "131403515"
+ }
+ },
+ "card": "{ \"user\": { \"uid\": 335270851, \"uname\": \"符号门\", \"face\": \"https:\\/\\/i1.hdslb.com\\/bfs\\/face\\/67371311c9e047543a70c1d41e7a03c3854f2981.jpg\" }, \"item\": { \"rp_id\": 517243658786443535, \"uid\": 335270851, \"content\": \"#哔哩哔哩漫画#[打call][打call][打call]\", \"orig_dy_id\": 517241610091321208, \"pre_dy_id\": 517241610091321208, \"timestamp\": 1619268574, \"reply\": 0, \"orig_type\": 2 }, \"origin\": \"{\\\"item\\\":{\\\"at_control\\\":\\\"[{\\\\\\\"type\\\\\\\":2,\\\\\\\"location\\\\\\\":0,\\\\\\\"length\\\\\\\":0,\\\\\\\"data\\\\\\\":\\\\\\\"5\\\\\\\"}]\\\",\\\"category\\\":\\\"daily\\\",\\\"description\\\":\\\"互动抽奖 【关+转】抽1位小伙伴送【哔哩哔哩小电视兔子包】~\\\\n【#哔哩哔哩漫画# 作品推荐】大量西幻少女漫爆更来啦———\\\\n[干杯] 即日起,《重生成为公爵家的丑女》《暴君的监护人是反派魔女》《姐姐捡回了男主》等大量西幻少女精品漫画爆更,追漫更有樱花立牌\\\\\\/玩偶等福利好礼相送!\\\\n[干杯] 快来哔哩哔哩漫画追漫吧~\\\",\\\"id\\\":131403515,\\\"is_fav\\\":0,\\\"pictures\\\":[{\\\"img_height\\\":1357,\\\"img_size\\\":1759.1650390625,\\\"img_src\\\":\\\"https:\\\\\\/\\\\\\/i0.hdslb.com\\\\\\/bfs\\\\\\/album\\\\\\/1ce565e7f36e0ae5a3809df21bb39aa2fe578a88.png\\\",\\\"img_tags\\\":null,\\\"img_width\\\":1080},{\\\"img_height\\\":1238,\\\"img_size\\\":832.51953125,\\\"img_src\\\":\\\"https:\\\\\\/\\\\\\/i0.hdslb.com\\\\\\/bfs\\\\\\/album\\\\\\/6df0150c77a7f42a5d31cce8bb006105a660dad9.png\\\",\\\"img_tags\\\":null,\\\"img_width\\\":1080},{\\\"img_height\\\":2193,\\\"img_size\\\":3424.060546875,\\\"img_src\\\":\\\"https:\\\\\\/\\\\\\/i0.hdslb.com\\\\\\/bfs\\\\\\/album\\\\\\/adce81c59436184b56d84e5394583d2ab491b2e6.png\\\",\\\"img_tags\\\":null,\\\"img_width\\\":1080},{\\\"img_height\\\":800,\\\"img_size\\\":166.1552734375,\\\"img_src\\\":\\\"https:\\\\\\/\\\\\\/i0.hdslb.com\\\\\\/bfs\\\\\\/album\\\\\\/9c4e8d6fc04d5a1f3df225d5967fb65c7a3f5f09.jpg\\\",\\\"img_tags\\\":null,\\\"img_width\\\":800}],\\\"pictures_count\\\":4,\\\"reply\\\":1003,\\\"role\\\":[],\\\"settings\\\":{\\\"copy_forbidden\\\":\\\"0\\\"},\\\"source\\\":[],\\\"title\\\":\\\"\\\",\\\"upload_time\\\":1619268097},\\\"user\\\":{\\\"head_url\\\":\\\"https:\\\\\\/\\\\\\/i1.hdslb.com\\\\\\/bfs\\\\\\/face\\\\\\/2254162161a60b528cfec449f3450409a81ebc37.jpg\\\",\\\"name\\\":\\\"哔哩哔哩漫画\\\",\\\"uid\\\":326499679,\\\"vip\\\":{\\\"avatar_subscript\\\":1,\\\"due_date\\\":1941033600000,\\\"label\\\":{\\\"label_theme\\\":\\\"ten_annual_vip\\\",\\\"path\\\":\\\"\\\",\\\"text\\\":\\\"十年大会员\\\"},\\\"nickname_color\\\":\\\"#FB7299\\\",\\\"status\\\":1,\\\"theme_type\\\":0,\\\"type\\\":2,\\\"vip_pay_type\\\":0}}}\", \"origin_extension\": { \"lott\": \"{\\\"callbackId\\\":10,\\\"lottery_id\\\":61382,\\\"lottery_time\\\":1620504000,\\\"title\\\":\\\"互动抽奖\\\"}\" }, \"origin_extend_json\": \"{\\\"ctrl\\\":[{\\\"data\\\":\\\"5\\\",\\\"length\\\":0,\\\"location\\\":0,\\\"type\\\":2}],\\\"from\\\":{\\\"emoji_type\\\":1,\\\"from\\\":\\\"\\\",\\\"up_close_comment\\\":0,\\\"verify\\\":{\\\"asw\\\":{\\\"fl\\\":15,\\\"nv\\\":1},\\\"cc\\\":{\\\"vf\\\":1},\\\"sw\\\":{\\\"fl\\\":15,\\\"nv\\\":1}}},\\\"like_icon\\\":{\\\"action\\\":\\\"\\\",\\\"action_url\\\":\\\"\\\",\\\"end\\\":\\\"\\\",\\\"end_url\\\":\\\"\\\",\\\"start\\\":\\\"\\\",\\\"start_url\\\":\\\"\\\"},\\\"lott\\\":{\\\"callbackId\\\":10,\\\"lottery_id\\\":61382,\\\"lottery_time\\\":1620504000,\\\"title\\\":\\\"互动抽奖\\\"},\\\"topic\\\":{\\\"is_attach_topic\\\":1}}\", \"origin_user\": { \"info\": { \"uid\": 326499679, \"uname\": \"哔哩哔哩漫画\", \"face\": \"https:\\/\\/i1.hdslb.com\\/bfs\\/face\\/2254162161a60b528cfec449f3450409a81ebc37.jpg\" }, \"card\": { \"official_verify\": { \"type\": 1, \"desc\": \"哔哩哔哩漫画官方账号\" } }, \"vip\": { \"vipType\": 2, \"vipDueDate\": 1941033600000, \"vipStatus\": 1, \"themeType\": 0, \"label\": { \"path\": \"\", \"text\": \"十年大会员\", \"label_theme\": \"ten_annual_vip\", \"text_color\": \"#FFFFFF\", \"bg_style\": 1, \"bg_color\": \"#FB7299\", \"border_color\": \"\" }, \"avatar_subscript\": 1, \"nickname_color\": \"#FB7299\", \"role\": 7, \"avatar_subscript_url\": \"https:\\/\\/i0.hdslb.com\\/bfs\\/vip\\/icon_Certification_big_member_22_3x.png\" }, \"pendant\": { \"pid\": 0, \"name\": \"\", \"image\": \"\", \"expire\": 0, \"image_enhance\": \"\", \"image_enhance_frame\": \"\" }, \"rank\": \"10000\", \"sign\": \"↑ 【关注漫画姬】就送【漫读券5张】,当日或次日登录哔哩哔哩漫画APP即可领取,快来关注领券吧(°∀°)ノ ↑\", \"level_info\": { \"current_level\": 6 } } }",
+ "extend_json": "{\"from\":{\"emoji_type\":1,\"up_close_comment\":0},\"like_icon\":{\"action\":\"\",\"action_url\":\"\",\"end\":\"\",\"end_url\":\"\",\"start\":\"\",\"start_url\":\"\"},\"topic\":{\"is_attach_topic\":1}}",
+ "display": {
+ "topic_info": {
+ "topic_details": [
+ {
+ "topic_id": 7539944,
+ "topic_name": "哔哩哔哩漫画",
+ "is_activity": 0,
+ "topic_link": ""
+ }
+ ]
+ },
+ "origin": {
+ "topic_info": {
+ "topic_details": [
+ {
+ "topic_id": 7539944,
+ "topic_name": "哔哩哔哩漫画",
+ "is_activity": 0,
+ "topic_link": ""
+ }
+ ]
+ },
+ "emoji_info": {
+ "emoji_details": [
+ {
+ "emoji_name": "[干杯]",
+ "id": 1949,
+ "package_id": 1,
+ "state": 0,
+ "type": 1,
+ "attr": 0,
+ "text": "[干杯]",
+ "url": "https://i0.hdslb.com/bfs/emote/8da12d5f55a2c7e9778dcc05b40571979fe208e6.png",
+ "meta": {
+ "size": 1
+ },
+ "mtime": 1597738918
+ }
+ ]
+ },
+ "relation": {
+ "status": 1,
+ "is_follow": 0,
+ "is_followed": 0
+ },
+ "show_tip": {
+ "del_tip": "要删除动态吗?"
+ }
+ },
+ "emoji_info": {
+ "emoji_details": [
+ {
+ "emoji_name": "[打call]",
+ "id": 510,
+ "package_id": 1,
+ "state": 0,
+ "type": 1,
+ "attr": 0,
+ "text": "[打call]",
+ "url": "https://i0.hdslb.com/bfs/emote/431432c43da3ee5aab5b0e4f8931953e649e9975.png",
+ "meta": {
+ "size": 1
+ },
+ "mtime": 1617293741
+ }
+ ]
+ },
+ "relation": {
+ "status": 1,
+ "is_follow": 0,
+ "is_followed": 0
+ },
+ "up_act_button": {
+ "report_title": "举报",
+ "founder_report_title": "举报(发起人)",
+ "top_title": "置顶",
+ "top_confirm_title": "确定将此动态置顶吗",
+ "top_cancel_title": "确定将此动态取消置顶吗"
+ },
+ "show_tip": {
+ "del_tip": "要删除动态吗?"
+ }
+ }
+ },
+ {
+ "desc": {
+ "uid": 326499679,
+ "type": 2,
+ "rid": 131403515,
+ "acl": 1024,
+ "view": 1951519,
+ "repost": 16543,
+ "comment": 1003,
+ "like": 6950,
+ "is_liked": 0,
+ "dynamic_id": 517241610091321208,
+ "timestamp": 1619268097,
+ "orig_type": 0,
+ "user_profile": {
+ "info": {
+ "uid": 326499679,
+ "uname": "哔哩哔哩漫画",
+ "face": "https://i1.hdslb.com/bfs/face/2254162161a60b528cfec449f3450409a81ebc37.jpg"
+ },
+ "card": {
+ "official_verify": {
+ "type": 1,
+ "desc": "哔哩哔哩漫画官方账号"
+ }
+ },
+ "vip": {
+ "vipType": 2,
+ "vipDueDate": 1941033600000,
+ "vipStatus": 1,
+ "themeType": 0,
+ "label": {
+ "path": "",
+ "text": "十年大会员",
+ "label_theme": "ten_annual_vip",
+ "text_color": "#FFFFFF",
+ "bg_style": 1,
+ "bg_color": "#FB7299",
+ "border_color": ""
+ },
+ "avatar_subscript": 1,
+ "nickname_color": "#FB7299",
+ "role": 7,
+ "avatar_subscript_url": "https://i0.hdslb.com/bfs/vip/icon_Certification_big_member_22_3x.png"
+ },
+ "pendant": {
+ "pid": 0,
+ "name": "",
+ "image": "",
+ "expire": 0,
+ "image_enhance": "",
+ "image_enhance_frame": ""
+ },
+ "rank": "10000",
+ "sign": "↑ 【关注漫画姬】就送【漫读券5张】,当日或次日登录哔哩哔哩漫画APP即可领取,快来关注领券吧(°∀°)ノ ↑",
+ "level_info": {
+ "current_level": 6
+ }
+ },
+ "uid_type": 1,
+ "recommend_info": {
+ "is_attention": 0
+ },
+ "r_type": 1,
+ "topic_board": "C",
+ "topic_board_desc": "最新",
+ "status": 1,
+ "dynamic_id_str": "517241610091321208",
+ "pre_dy_id_str": "0",
+ "orig_dy_id_str": "0",
+ "rid_str": "131403515"
+ },
+ "card": "{\"item\":{\"at_control\":\"[{\\\"type\\\":2,\\\"location\\\":0,\\\"length\\\":0,\\\"data\\\":\\\"5\\\"}]\",\"category\":\"daily\",\"description\":\"互动抽奖 【关+转】抽1位小伙伴送【哔哩哔哩小电视兔子包】~\\n【#哔哩哔哩漫画# 作品推荐】大量西幻少女漫爆更来啦———\\n[干杯] 即日起,《重生成为公爵家的丑女》《暴君的监护人是反派魔女》《姐姐捡回了男主》等大量西幻少女精品漫画爆更,追漫更有樱花立牌\\/玩偶等福利好礼相送!\\n[干杯] 快来哔哩哔哩漫画追漫吧~\",\"id\":131403515,\"is_fav\":0,\"pictures\":[{\"img_height\":1357,\"img_size\":1759.1650390625,\"img_src\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/album\\/1ce565e7f36e0ae5a3809df21bb39aa2fe578a88.png\",\"img_tags\":null,\"img_width\":1080},{\"img_height\":1238,\"img_size\":832.51953125,\"img_src\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/album\\/6df0150c77a7f42a5d31cce8bb006105a660dad9.png\",\"img_tags\":null,\"img_width\":1080},{\"img_height\":2193,\"img_size\":3424.060546875,\"img_src\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/album\\/adce81c59436184b56d84e5394583d2ab491b2e6.png\",\"img_tags\":null,\"img_width\":1080},{\"img_height\":800,\"img_size\":166.1552734375,\"img_src\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/album\\/9c4e8d6fc04d5a1f3df225d5967fb65c7a3f5f09.jpg\",\"img_tags\":null,\"img_width\":800}],\"pictures_count\":4,\"reply\":1003,\"role\":[],\"settings\":{\"copy_forbidden\":\"0\"},\"source\":[],\"title\":\"\",\"upload_time\":1619268097},\"user\":{\"head_url\":\"https:\\/\\/i1.hdslb.com\\/bfs\\/face\\/2254162161a60b528cfec449f3450409a81ebc37.jpg\",\"name\":\"哔哩哔哩漫画\",\"uid\":326499679,\"vip\":{\"avatar_subscript\":1,\"due_date\":1941033600000,\"label\":{\"label_theme\":\"ten_annual_vip\",\"path\":\"\",\"text\":\"十年大会员\"},\"nickname_color\":\"#FB7299\",\"status\":1,\"theme_type\":0,\"type\":2,\"vip_pay_type\":0}}}",
+ "extension": {
+ "lott": "{\"callbackId\":10,\"lottery_id\":61382,\"lottery_time\":1620504000,\"title\":\"互动抽奖\"}"
+ },
+ "extend_json": "{\"ctrl\":[{\"data\":\"5\",\"length\":0,\"location\":0,\"type\":2}],\"from\":{\"emoji_type\":1,\"from\":\"\",\"up_close_comment\":0,\"verify\":{\"asw\":{\"fl\":15,\"nv\":1},\"cc\":{\"vf\":1},\"sw\":{\"fl\":15,\"nv\":1}}},\"like_icon\":{\"action\":\"\",\"action_url\":\"\",\"end\":\"\",\"end_url\":\"\",\"start\":\"\",\"start_url\":\"\"},\"lott\":{\"callbackId\":10,\"lottery_id\":61382,\"lottery_time\":1620504000,\"title\":\"互动抽奖\"},\"topic\":{\"is_attach_topic\":1}}",
+ "display": {
+ "topic_info": {
+ "topic_details": [
+ {
+ "topic_id": 7539944,
+ "topic_name": "哔哩哔哩漫画",
+ "is_activity": 0,
+ "topic_link": ""
+ }
+ ]
+ },
+ "emoji_info": {
+ "emoji_details": [
+ {
+ "emoji_name": "[干杯]",
+ "id": 1949,
+ "package_id": 1,
+ "state": 0,
+ "type": 1,
+ "attr": 0,
+ "text": "[干杯]",
+ "url": "https://i0.hdslb.com/bfs/emote/8da12d5f55a2c7e9778dcc05b40571979fe208e6.png",
+ "meta": {
+ "size": 1
+ },
+ "mtime": 1597738918
+ }
+ ]
+ },
+ "relation": {
+ "status": 1,
+ "is_follow": 0,
+ "is_followed": 0
+ },
+ "up_act_button": {
+ "report_title": "举报",
+ "founder_report_title": "举报(发起人)",
+ "top_title": "置顶",
+ "top_confirm_title": "确定将此动态置顶吗",
+ "top_cancel_title": "确定将此动态取消置顶吗"
+ },
+ "show_tip": {
+ "del_tip": "要删除动态吗?"
+ }
+ }
+ },
+ {
+ "desc": {
+ "uid": 326499679,
+ "type": 2,
+ "rid": 131384529,
+ "acl": 0,
+ "view": 1599049,
+ "repost": 5,
+ "comment": 63,
+ "like": 4614,
+ "is_liked": 0,
+ "dynamic_id": 517215462328123502,
+ "timestamp": 1619262009,
+ "pre_dy_id": 0,
+ "orig_dy_id": 0,
+ "orig_type": 0,
+ "user_profile": {
+ "info": {
+ "uid": 326499679,
+ "uname": "哔哩哔哩漫画",
+ "face": "https://i1.hdslb.com/bfs/face/2254162161a60b528cfec449f3450409a81ebc37.jpg"
+ },
+ "card": {
+ "official_verify": {
+ "type": 1,
+ "desc": "哔哩哔哩漫画官方账号"
+ }
+ },
+ "vip": {
+ "vipType": 2,
+ "vipDueDate": 1941033600000,
+ "vipStatus": 1,
+ "themeType": 0,
+ "label": {
+ "path": "",
+ "text": "十年大会员",
+ "label_theme": "ten_annual_vip",
+ "text_color": "#FFFFFF",
+ "bg_style": 1,
+ "bg_color": "#FB7299",
+ "border_color": ""
+ },
+ "avatar_subscript": 1,
+ "nickname_color": "#FB7299",
+ "role": 7,
+ "avatar_subscript_url": "https://i0.hdslb.com/bfs/vip/icon_Certification_big_member_22_3x.png"
+ },
+ "pendant": {
+ "pid": 0,
+ "name": "",
+ "image": "",
+ "expire": 0,
+ "image_enhance": "",
+ "image_enhance_frame": ""
+ },
+ "rank": "10000",
+ "sign": "↑ 【关注漫画姬】就送【漫读券5张】,当日或次日登录哔哩哔哩漫画APP即可领取,快来关注领券吧(°∀°)ノ ↑",
+ "level_info": {
+ "current_level": 6
+ }
+ },
+ "uid_type": 1,
+ "recommend_info": {
+ "is_attention": 0
+ },
+ "stype": 0,
+ "r_type": 1,
+ "inner_id": 0,
+ "topic_board": "C",
+ "topic_board_desc": "最新",
+ "status": 1,
+ "dynamic_id_str": "517215462328123502",
+ "pre_dy_id_str": "0",
+ "orig_dy_id_str": "0",
+ "rid_str": "131384529"
+ },
+ "card": "{\"item\":{\"at_control\":\"\",\"category\":\"daily\",\"description\":\"【#哔哩哔哩漫画# 近期更新】(`・ω・´)\\nP1《#辉夜大小姐想让我告白# ~天才们的恋爱头脑战~ 》:https:\\/\\/manga.bilibili.com\\/m\\/detail\\/mc26009\\nP2《#入间同学入魔了#!》:https:\\/\\/manga.bilibili.com\\/m\\/detail\\/mc27189\\nP3《催眠麦克风-Division Rap Battle- side D.H&B.A.T》\\nP4《他和她的魔法契约》\\nP5《瓦尼塔斯的手记》\\nP6《见面5秒开始战斗》\\nP7《魔气来袭》\\nP8《尖帽子的魔法工坊》 \",\"id\":131384529,\"is_fav\":0,\"pictures\":[{\"img_height\":2920,\"img_size\":1993.103515625,\"img_src\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/album\\/24a3e5d04e8ad86fcdae48e6ee88f90a0351f82d.jpg\",\"img_tags\":null,\"img_width\":2000},{\"img_height\":2872,\"img_size\":2453.1513671875,\"img_src\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/album\\/d512d771dd3f91b54733f104e5de7e38d61ef56c.jpg\",\"img_tags\":null,\"img_width\":2000},{\"img_height\":2806,\"img_size\":4156.140625,\"img_src\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/album\\/119fe01717120eb9c8c04d2c48a22298c8f88d17.jpg\",\"img_tags\":null,\"img_width\":2000},{\"img_height\":1147,\"img_size\":152.23046875,\"img_src\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/album\\/d2fb2a6d2229a03ea967ee2182faefd67b0811fd.jpg\",\"img_tags\":null,\"img_width\":800},{\"img_height\":2637,\"img_size\":10432.2978515625,\"img_src\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/album\\/e8966e96d34938474eebfcf60f38e14932e09be4.jpg\",\"img_tags\":null,\"img_width\":3600},{\"img_height\":2268,\"img_size\":6175.017578125,\"img_src\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/album\\/4ed99d7329108e9e585db49da63a56bdcf7e8670.jpg\",\"img_tags\":null,\"img_width\":3200},{\"img_height\":1461,\"img_size\":283.990234375,\"img_src\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/album\\/a8f37ec732103b1912fd3448d06d610cae5486df.jpg\",\"img_tags\":null,\"img_width\":800},{\"img_height\":2871,\"img_size\":3639.478515625,\"img_src\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/album\\/fe8e58fd4f7c7063f880f064b3366e758dbfd7ee.jpg\",\"img_tags\":null,\"img_width\":2000}],\"pictures_count\":8,\"reply\":63,\"role\":[],\"settings\":{\"copy_forbidden\":\"0\"},\"source\":[],\"title\":\"\",\"upload_time\":1619262009},\"user\":{\"head_url\":\"https:\\/\\/i1.hdslb.com\\/bfs\\/face\\/2254162161a60b528cfec449f3450409a81ebc37.jpg\",\"name\":\"哔哩哔哩漫画\",\"uid\":326499679,\"vip\":{\"avatar_subscript\":1,\"due_date\":1941033600000,\"label\":{\"label_theme\":\"ten_annual_vip\",\"path\":\"\",\"text\":\"十年大会员\"},\"nickname_color\":\"#FB7299\",\"status\":1,\"theme_type\":0,\"type\":2,\"vip_pay_type\":0}}}",
+ "extend_json": "{\"from\":{\"emoji_type\":1,\"from\":\"timer.publish\",\"up_close_comment\":0,\"verify\":{\"cc\":{\"nv\":1}}},\"like_icon\":{\"action\":\"\",\"action_url\":\"\",\"end\":\"\",\"end_url\":\"\",\"start\":\"\",\"start_url\":\"\"},\"topic\":{\"is_attach_topic\":1}}",
+ "display": {
+ "topic_info": {
+ "topic_details": [
+ {
+ "topic_id": 7539944,
+ "topic_name": "哔哩哔哩漫画",
+ "is_activity": 0,
+ "topic_link": ""
+ },
+ {
+ "topic_id": 4386628,
+ "topic_name": "辉夜大小姐想让我告白",
+ "is_activity": 0,
+ "topic_link": ""
+ },
+ {
+ "topic_id": 8724199,
+ "topic_name": "入间同学入魔了",
+ "is_activity": 1,
+ "topic_link": "https://www.bilibili.com/blackboard/dynamic/69330"
+ }
+ ]
+ },
+ "relation": {
+ "status": 1,
+ "is_follow": 0,
+ "is_followed": 0
+ },
+ "up_act_button": {
+ "report_title": "举报",
+ "founder_report_title": "举报(发起人)",
+ "top_title": "置顶",
+ "top_confirm_title": "确定将此动态置顶吗",
+ "top_cancel_title": "确定将此动态取消置顶吗"
+ },
+ "show_tip": {
+ "del_tip": "要删除动态吗?"
+ }
+ }
+ }
+ ],
+ "offset": "517215462328123502",
+ "is_drawer_topic": 0,
+ "founder_uid": 0,
+ "_gt_": 0
+ }
+}
+```
+
+
+
+## 获取历史动态列表
+
+> https://api.vc.bilibili.com/topic_svr/v1/topic_svr/topic_history
+
+ *请求方式:GET*
+
+
+**url参数:**
+
+| 参数名 | 类型 | 内容 | 必要性 | 备注 |
+| ------------ | ---- | ---------- | ------ | -------- |
+| topic_name | str | 话题名称 | 必要(可选) | topic_id与topic_name任选一个 |
+| topic_id | num | 话题id | 必要(可选) | topic_id与topic_name任选一个 |
+| offset_dynamic_id | num | 偏移值 | 必要| 可用于偏移显示的动态列表(为`0`时获取最新动态) |
+
+**json回复:**
+
+根对象:
+
+| 字段 | 类型 | 内容 | 备注 |
+| ------- | ---- | -------- | -------- |
+| code | num | 返回值 | 0:成功 |
+| data | obj | 信息本体 | |
+| message | str | 错误信息 | 默认为空 |
+| msg | num | 空 | |
+
+`data`对象:
+
+| 字段 | 类型 | 内容 | 备注 |
+| ----------- | ----- | ---------- | ------------ |
+| attentions | obj | 当前登录账户关注列表(仅在传递了登录信息时出现) | |
+| cards | array | 动态列表 | |
+| has_more | num | 当前话题是否有额外的动态 | 0:无额外动态
1:有额外动态 |
+| offset | str | 接下来获取列表时的偏移值 | 一般为当前获取的话题列表下最后一个动态id |
+| \_gt\_ | num | 0 | 作用尚不明确 |
+
+`data`中的`cards`数组:
+
+| 项 | 类型 | 内容 | 备注 |
+| ---- | ---- | ------------- | ---- |
+| 0 | obj | 第1条动态卡片 | |
+| n | obj | 第(n+1)条动态卡片 | |
+| …… | obj | …… | …… |
+
+`data`中的`cards`数组中的对象:
+
+基本同「[获取特定动态卡片信息](get_dynamic_detail.md)」中的data对象
+
+**示例:**
+
+获取话题`哔哩哔哩漫画`(话题id`7539944`)的当前动态列表
+
+topic_name方式:
+```shell
+curl -G 'https://api.vc.bilibili.com/topic_svr/v1/topic_svr/topic_history' \
+--data-urlencode 'topic_name=哔哩哔哩漫画&offset_dynamic_id=0'
+```
+topic_id方式:
+```shell
+curl -G 'https://api.vc.bilibili.com/topic_svr/v1/topic_svr/topic_history' \
+--data-urlencode 'topic_id=7539944&offset_dynamic_id=0'
+```
+
+
+查看响应示例:
+
+```json
+{
+ "code": 0,
+ "msg": "",
+ "message": "",
+ "data": {
+ "has_more": 1,
+ "cards": [
+ {
+ "desc": {
+ "uid": 326499679,
+ "type": 2,
+ "rid": 131534120,
+ "acl": 0,
+ "view": 555573,
+ "repost": 9,
+ "comment": 90,
+ "like": 2478,
+ "is_liked": 0,
+ "dynamic_id": 517602000793534062,
+ "timestamp": 1619352007,
+ "pre_dy_id": 0,
+ "orig_dy_id": 0,
+ "orig_type": 0,
+ "user_profile": {
+ "info": {
+ "uid": 326499679,
+ "uname": "哔哩哔哩漫画",
+ "face": "https://i1.hdslb.com/bfs/face/2254162161a60b528cfec449f3450409a81ebc37.jpg"
+ },
+ "card": {
+ "official_verify": {
+ "type": 1,
+ "desc": "哔哩哔哩漫画官方账号"
+ }
+ },
+ "vip": {
+ "vipType": 2,
+ "vipDueDate": 1941033600000,
+ "vipStatus": 1,
+ "themeType": 0,
+ "label": {
+ "path": "",
+ "text": "十年大会员",
+ "label_theme": "ten_annual_vip",
+ "text_color": "#FFFFFF",
+ "bg_style": 1,
+ "bg_color": "#FB7299",
+ "border_color": ""
+ },
+ "avatar_subscript": 1,
+ "nickname_color": "#FB7299",
+ "role": 7,
+ "avatar_subscript_url": "https://i0.hdslb.com/bfs/vip/icon_Certification_big_member_22_3x.png"
+ },
+ "pendant": {
+ "pid": 0,
+ "name": "",
+ "image": "",
+ "expire": 0,
+ "image_enhance": "",
+ "image_enhance_frame": ""
+ },
+ "rank": "10000",
+ "sign": "↑ 【关注漫画姬】就送【漫读券5张】,当日或次日登录哔哩哔哩漫画APP即可领取,快来关注领券吧(°∀°)ノ ↑",
+ "level_info": {
+ "current_level": 6
+ }
+ },
+ "uid_type": 1,
+ "recommend_info": {
+ "is_attention": 0
+ },
+ "stype": 0,
+ "r_type": 1,
+ "inner_id": 0,
+ "topic_board": "C",
+ "topic_board_desc": "最新",
+ "status": 1,
+ "dynamic_id_str": "517602000793534062",
+ "pre_dy_id_str": "0",
+ "orig_dy_id_str": "0",
+ "rid_str": "131534120"
+ },
+ "card": "{\"item\":{\"at_control\":\"\",\"category\":\"daily\",\"description\":\"【#哔哩哔哩漫画# 作品推荐】兽人控狂喜!《#不莱梅乐队#》:https:\\/\\/manga.bilibili.com\\/m\\/detail\\/mc28880\\n[思考]大家小时候看过一篇叫做《不莱梅的音乐家》的格林童话吗?\\n[惊喜]只不过在这部#欧漫#里,这四个动物的目的不是赶走强盗,而是追逐梦想、爱情、自由、正义。在这个充满混沌的世界里,他们将用音乐的力量改写自己和他人的命运。 \",\"id\":131534120,\"is_fav\":0,\"pictures\":[{\"img_height\":1922,\"img_size\":1163.9267578125,\"img_src\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/album\\/f5a82f03475eed52973b3cecb2b5180b090cc5f0.png\",\"img_tags\":null,\"img_width\":1080},{\"img_height\":757,\"img_size\":273.130859375,\"img_src\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/album\\/ca4055c7b9c246e7e922190102d5c87cd4dbcea8.png\",\"img_tags\":null,\"img_width\":436},{\"img_height\":1067,\"img_size\":640.29296875,\"img_src\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/album\\/9de3ece4d374d07fb7b192db4520779a477cdf97.png\",\"img_tags\":null,\"img_width\":542},{\"img_height\":972,\"img_size\":374.8349609375,\"img_src\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/album\\/cac12d548a3686335d3154cce672f1823ca92517.png\",\"img_tags\":null,\"img_width\":487}],\"pictures_count\":4,\"reply\":90,\"role\":[],\"settings\":{\"copy_forbidden\":\"0\"},\"source\":[],\"title\":\"\",\"upload_time\":1619352007},\"user\":{\"head_url\":\"https:\\/\\/i1.hdslb.com\\/bfs\\/face\\/2254162161a60b528cfec449f3450409a81ebc37.jpg\",\"name\":\"哔哩哔哩漫画\",\"uid\":326499679,\"vip\":{\"avatar_subscript\":1,\"due_date\":1941033600000,\"label\":{\"label_theme\":\"ten_annual_vip\",\"path\":\"\",\"text\":\"十年大会员\"},\"nickname_color\":\"#FB7299\",\"status\":1,\"theme_type\":0,\"type\":2,\"vip_pay_type\":0}}}",
+ "extend_json": "{\"from\":{\"emoji_type\":1,\"from\":\"timer.publish\",\"up_close_comment\":0,\"verify\":{\"asw\":{\"fl\":15,\"nv\":1},\"cc\":{\"nv\":1},\"sw\":{\"fl\":15,\"nv\":1}}},\"like_icon\":{\"action\":\"\",\"action_url\":\"\",\"end\":\"\",\"end_url\":\"\",\"start\":\"\",\"start_url\":\"\"},\"topic\":{\"is_attach_topic\":1}}",
+ "display": {
+ "topic_info": {
+ "topic_details": [
+ {
+ "topic_id": 7539944,
+ "topic_name": "哔哩哔哩漫画",
+ "is_activity": 0,
+ "topic_link": ""
+ },
+ {
+ "topic_id": 15149492,
+ "topic_name": "不莱梅乐队",
+ "is_activity": 0,
+ "topic_link": ""
+ },
+ {
+ "topic_id": 507003,
+ "topic_name": "欧漫",
+ "is_activity": 0,
+ "topic_link": ""
+ }
+ ]
+ },
+ "emoji_info": {
+ "emoji_details": [
+ {
+ "emoji_name": "[思考]",
+ "id": 1941,
+ "package_id": 1,
+ "state": 0,
+ "type": 1,
+ "attr": 0,
+ "text": "[思考]",
+ "url": "https://i0.hdslb.com/bfs/emote/cfa9b7e89e4bfe04bbcd34ccb1b0df37f4fa905c.png",
+ "meta": {
+ "size": 1
+ },
+ "mtime": 1597738918
+ },
+ {
+ "emoji_name": "[惊喜]",
+ "id": 19,
+ "package_id": 1,
+ "state": 0,
+ "type": 1,
+ "attr": 0,
+ "text": "[惊喜]",
+ "url": "https://i0.hdslb.com/bfs/emote/0afecaf3a3499479af946f29749e1a6c285b6f65.png",
+ "meta": {
+ "size": 1
+ },
+ "mtime": 1597738918
+ }
+ ]
+ },
+ "relation": {
+ "status": 1,
+ "is_follow": 0,
+ "is_followed": 0
+ },
+ "up_act_button": {
+ "report_title": "举报",
+ "founder_report_title": "举报(发起人)",
+ "top_title": "置顶",
+ "top_confirm_title": "确定将此动态置顶吗",
+ "top_cancel_title": "确定将此动态取消置顶吗"
+ },
+ "show_tip": {
+ "del_tip": "要删除动态吗?"
+ }
+ }
+ },
+ {
+ "desc": {
+ "uid": 240911350,
+ "type": 1,
+ "rid": 517516389208371264,
+ "acl": 0,
+ "view": 251,
+ "repost": 0,
+ "comment": 0,
+ "like": 2,
+ "is_liked": 0,
+ "dynamic_id": 517516389214088892,
+ "timestamp": 1619332074,
+ "pre_dy_id": 517479366596833835,
+ "orig_dy_id": 517479366596833835,
+ "orig_type": 2,
+ "user_profile": {
+ "info": {
+ "uid": 240911350,
+ "uname": "Kekkai-piano",
+ "face": "https://i1.hdslb.com/bfs/face/f9b56adf0e9fb16d556fb5af93fc8367a255e4af.jpg"
+ },
+ "card": {
+ "official_verify": {
+ "type": -1,
+ "desc": ""
+ }
+ },
+ "vip": {
+ "vipType": 2,
+ "vipDueDate": 1658851200000,
+ "vipStatus": 1,
+ "themeType": 0,
+ "label": {
+ "path": "",
+ "text": "年度大会员",
+ "label_theme": "annual_vip",
+ "text_color": "#FFFFFF",
+ "bg_style": 1,
+ "bg_color": "#FB7299",
+ "border_color": ""
+ },
+ "avatar_subscript": 1,
+ "nickname_color": "#FB7299",
+ "role": 3,
+ "avatar_subscript_url": "https://i0.hdslb.com/bfs/vip/icon_Certification_big_member_22_3x.png"
+ },
+ "pendant": {
+ "pid": 2511,
+ "name": "初音未来13周年",
+ "image": "https://i1.hdslb.com/bfs/garb/item/4f8f3f1f2d47f0dad84f66aa57acd4409ea46361.png",
+ "expire": 0,
+ "image_enhance": "https://i1.hdslb.com/bfs/garb/item/fe0b83b53e2342b16646f6e7a9370d8a867decdb.webp",
+ "image_enhance_frame": "https://i1.hdslb.com/bfs/garb/item/127c507ec8448be30cf5f79500ecc6ef2fd32f2c.png"
+ },
+ "rank": "10000",
+ "sign": "看动画片的88键音游爱好者 \n专业人士轻喷 \n正在寻找缺失之物 \n超天変地異みたいな狂騒にも慣れて\n高三备考ing,莫要取关(bushi)",
+ "level_info": {
+ "current_level": 5
+ }
+ },
+ "uid_type": 1,
+ "recommend_info": {
+ "is_attention": 0
+ },
+ "stype": 0,
+ "r_type": 1,
+ "inner_id": 0,
+ "topic_board": "C",
+ "topic_board_desc": "最新",
+ "status": 1,
+ "dynamic_id_str": "517516389214088892",
+ "pre_dy_id_str": "517479366596833835",
+ "orig_dy_id_str": "517479366596833835",
+ "rid_str": "517516389208371264",
+ "origin": {
+ "uid": 326499679,
+ "type": 2,
+ "rid": 131479206,
+ "acl": 1024,
+ "view": 1412747,
+ "repost": 11488,
+ "dynamic_id": 517479366596833835,
+ "timestamp": 1619323454,
+ "uid_type": 1,
+ "r_type": 1,
+ "status": 1,
+ "dynamic_id_str": "517479366596833835",
+ "pre_dy_id_str": "0",
+ "orig_dy_id_str": "0",
+ "rid_str": "131479206"
+ }
+ },
+ "card": "{ \"user\": { \"uid\": 240911350, \"uname\": \"Kekkai-piano\", \"face\": \"https:\\/\\/i1.hdslb.com\\/bfs\\/face\\/f9b56adf0e9fb16d556fb5af93fc8367a255e4af.jpg\" }, \"item\": { \"rp_id\": 517516389208371264, \"uid\": 240911350, \"content\": \"分母报道[doge]#哔哩哔哩漫画#,#AISHA#\", \"orig_dy_id\": 517479366596833835, \"pre_dy_id\": 517479366596833835, \"timestamp\": 1619332074, \"reply\": 0, \"orig_type\": 2 }, \"origin\": \"{\\\"item\\\":{\\\"at_control\\\":\\\"[{\\\\\\\"data\\\\\\\":\\\\\\\"5\\\\\\\",\\\\\\\"length\\\\\\\":0,\\\\\\\"location\\\\\\\":0,\\\\\\\"type\\\\\\\":2},{\\\\\\\"location\\\\\\\":19,\\\\\\\"type\\\\\\\":1,\\\\\\\"length\\\\\\\":8,\\\\\\\"data\\\\\\\":\\\\\\\"1425490690\\\\\\\"}]\\\",\\\"category\\\":\\\"daily\\\",\\\"description\\\":\\\"互动抽奖 关+转,抽3位幸运小伙伴送@漫画家法吉特 【《逆光》画集作者签名版】~\\\\n #哔哩哔哩漫画#重磅安利之《#AISHA#》\\\\n当当当当!剧情党福音~\\\\n答题就有机会赢得礼物?还有法吉特太太亲签精美画集?\\\\n活动入口→https:\\\\\\/\\\\\\/www.bilibili.com\\\\\\/blackboard\\\\\\/topic\\\\\\/activity-oPISh007wv.html\\\\n\\\\n你以为这样就结束了了吗?\\\\nNONONO~\\\\n法吉特老师首次出版个人作品集《逆光》~商城4月25日0点首发开售!\\\\n有法吉特老师签名版掉落哦!随书额外附赠专属书签特典!\\\\n活动指路:哔哩哔哩漫画APP-我的-商城-banner\\\",\\\"id\\\":131479206,\\\"is_fav\\\":0,\\\"pictures\\\":[{\\\"img_height\\\":782,\\\"img_size\\\":1097.2451171875,\\\"img_src\\\":\\\"https:\\\\\\/\\\\\\/i0.hdslb.com\\\\\\/bfs\\\\\\/album\\\\\\/8965a784f77e2545f4f2f168df4f417ed3ace818.png\\\",\\\"img_tags\\\":null,\\\"img_width\\\":750}],\\\"pictures_count\\\":1,\\\"reply\\\":599,\\\"role\\\":[],\\\"settings\\\":{\\\"copy_forbidden\\\":\\\"0\\\"},\\\"source\\\":[],\\\"title\\\":\\\"\\\",\\\"upload_time\\\":1619323454},\\\"user\\\":{\\\"head_url\\\":\\\"https:\\\\\\/\\\\\\/i1.hdslb.com\\\\\\/bfs\\\\\\/face\\\\\\/2254162161a60b528cfec449f3450409a81ebc37.jpg\\\",\\\"name\\\":\\\"哔哩哔哩漫画\\\",\\\"uid\\\":326499679,\\\"vip\\\":{\\\"avatar_subscript\\\":1,\\\"due_date\\\":1941033600000,\\\"label\\\":{\\\"label_theme\\\":\\\"ten_annual_vip\\\",\\\"path\\\":\\\"\\\",\\\"text\\\":\\\"十年大会员\\\"},\\\"nickname_color\\\":\\\"#FB7299\\\",\\\"status\\\":1,\\\"theme_type\\\":0,\\\"type\\\":2,\\\"vip_pay_type\\\":0}}}\", \"origin_extension\": { \"lott\": \"{\\\"lottery_id\\\":61398}\" }, \"origin_extend_json\": \"{\\\"ctrl\\\":[{\\\"data\\\":\\\"5\\\",\\\"length\\\":0,\\\"location\\\":0,\\\"type\\\":2},{\\\"data\\\":\\\"1425490690\\\",\\\"length\\\":8,\\\"location\\\":19,\\\"type\\\":1}],\\\"from\\\":{\\\"emoji_type\\\":1,\\\"from\\\":\\\"create.dynamic.web\\\",\\\"up_close_comment\\\":0,\\\"verify\\\":{\\\"asw\\\":{\\\"fl\\\":15,\\\"nv\\\":1},\\\"cc\\\":{\\\"vf\\\":1},\\\"sw\\\":{\\\"fl\\\":15,\\\"nv\\\":1}}},\\\"like_icon\\\":{\\\"action\\\":\\\"\\\",\\\"action_url\\\":\\\"\\\",\\\"end\\\":\\\"\\\",\\\"end_url\\\":\\\"\\\",\\\"start\\\":\\\"\\\",\\\"start_url\\\":\\\"\\\"},\\\"lott\\\":{\\\"lottery_id\\\":61398},\\\"topic\\\":{\\\"is_attach_topic\\\":1}}\", \"origin_user\": { \"info\": { \"uid\": 326499679, \"uname\": \"哔哩哔哩漫画\", \"face\": \"https:\\/\\/i1.hdslb.com\\/bfs\\/face\\/2254162161a60b528cfec449f3450409a81ebc37.jpg\" }, \"card\": { \"official_verify\": { \"type\": 1, \"desc\": \"哔哩哔哩漫画官方账号\" } }, \"vip\": { \"vipType\": 2, \"vipDueDate\": 1941033600000, \"vipStatus\": 1, \"themeType\": 0, \"label\": { \"path\": \"\", \"text\": \"十年大会员\", \"label_theme\": \"ten_annual_vip\", \"text_color\": \"#FFFFFF\", \"bg_style\": 1, \"bg_color\": \"#FB7299\", \"border_color\": \"\" }, \"avatar_subscript\": 1, \"nickname_color\": \"#FB7299\", \"role\": 7, \"avatar_subscript_url\": \"https:\\/\\/i0.hdslb.com\\/bfs\\/vip\\/icon_Certification_big_member_22_3x.png\" }, \"pendant\": { \"pid\": 0, \"name\": \"\", \"image\": \"\", \"expire\": 0, \"image_enhance\": \"\", \"image_enhance_frame\": \"\" }, \"rank\": \"10000\", \"sign\": \"↑ 【关注漫画姬】就送【漫读券5张】,当日或次日登录哔哩哔哩漫画APP即可领取,快来关注领券吧(°∀°)ノ ↑\", \"level_info\": { \"current_level\": 6 } } }",
+ "extend_json": "{\"from\":{\"emoji_type\":1,\"from\":\"create.comment\",\"up_close_comment\":0},\"like_icon\":{\"action\":\"\",\"action_url\":\"\",\"end\":\"\",\"end_url\":\"\",\"start\":\"\",\"start_url\":\"\"},\"topic\":{\"is_attach_topic\":1}}",
+ "display": {
+ "topic_info": {
+ "topic_details": [
+ {
+ "topic_id": 7539944,
+ "topic_name": "哔哩哔哩漫画",
+ "is_activity": 0,
+ "topic_link": ""
+ },
+ {
+ "topic_id": 148830,
+ "topic_name": "AISHA",
+ "is_activity": 1,
+ "topic_link": "https://www.bilibili.com/blackboard/dynamic/18159"
+ },
+ {
+ "topic_id": 2514603,
+ "topic_name": "aisha",
+ "is_activity": 0,
+ "topic_link": ""
+ }
+ ]
+ },
+ "origin": {
+ "topic_info": {
+ "topic_details": [
+ {
+ "topic_id": 7539944,
+ "topic_name": "哔哩哔哩漫画",
+ "is_activity": 0,
+ "topic_link": ""
+ },
+ {
+ "topic_id": 148830,
+ "topic_name": "AISHA",
+ "is_activity": 1,
+ "topic_link": "https://www.bilibili.com/blackboard/dynamic/18159"
+ },
+ {
+ "topic_id": 2514603,
+ "topic_name": "aisha",
+ "is_activity": 0,
+ "topic_link": ""
+ }
+ ]
+ },
+ "relation": {
+ "status": 1,
+ "is_follow": 0,
+ "is_followed": 0
+ },
+ "show_tip": {
+ "del_tip": "要删除动态吗?"
+ }
+ },
+ "emoji_info": {
+ "emoji_details": [
+ {
+ "emoji_name": "[doge]",
+ "id": 26,
+ "package_id": 1,
+ "state": 0,
+ "type": 1,
+ "attr": 0,
+ "text": "[doge]",
+ "url": "https://i0.hdslb.com/bfs/emote/3087d273a78ccaff4bb1e9972e2ba2a7583c9f11.png",
+ "meta": {
+ "size": 1
+ },
+ "mtime": 1617293741
+ }
+ ]
+ },
+ "relation": {
+ "status": 1,
+ "is_follow": 0,
+ "is_followed": 0
+ },
+ "up_act_button": {
+ "report_title": "举报",
+ "founder_report_title": "举报(发起人)",
+ "top_title": "置顶",
+ "top_confirm_title": "确定将此动态置顶吗",
+ "top_cancel_title": "确定将此动态取消置顶吗"
+ },
+ "show_tip": {
+ "del_tip": "要删除动态吗?"
+ }
+ }
+ },
+ {
+ "desc": {
+ "uid": 1192711092,
+ "type": 1,
+ "rid": 517505230885402892,
+ "acl": 0,
+ "view": 3,
+ "repost": 0,
+ "comment": 0,
+ "like": 0,
+ "is_liked": 0,
+ "dynamic_id": 517505230886905525,
+ "timestamp": 1619329476,
+ "pre_dy_id": 517241610091321208,
+ "orig_dy_id": 517241610091321208,
+ "orig_type": 2,
+ "user_profile": {
+ "info": {
+ "uid": 1192711092,
+ "uname": "会发光的偶恰",
+ "face": "https://i0.hdslb.com/bfs/face/b85a508793bd96deec61e2491d60e68f10378395.jpg"
+ },
+ "card": {
+ "official_verify": {
+ "type": -1,
+ "desc": ""
+ }
+ },
+ "vip": {
+ "vipType": 0,
+ "vipDueDate": 0,
+ "vipStatus": 0,
+ "themeType": 0,
+ "label": {
+ "path": "",
+ "text": "",
+ "label_theme": "",
+ "text_color": "",
+ "bg_style": 0,
+ "bg_color": "",
+ "border_color": ""
+ },
+ "avatar_subscript": 0,
+ "nickname_color": "",
+ "role": 0,
+ "avatar_subscript_url": ""
+ },
+ "pendant": {
+ "pid": 0,
+ "name": "",
+ "image": "",
+ "expire": 0,
+ "image_enhance": "",
+ "image_enhance_frame": ""
+ },
+ "rank": "10000",
+ "sign": "",
+ "level_info": {
+ "current_level": 3
+ }
+ },
+ "uid_type": 1,
+ "recommend_info": {
+ "is_attention": 0
+ },
+ "stype": 0,
+ "r_type": 1,
+ "inner_id": 0,
+ "topic_board": "C",
+ "topic_board_desc": "最新",
+ "status": 1,
+ "dynamic_id_str": "517505230886905525",
+ "pre_dy_id_str": "517241610091321208",
+ "orig_dy_id_str": "517241610091321208",
+ "rid_str": "517505230885402892",
+ "origin": {
+ "uid": 326499679,
+ "type": 2,
+ "rid": 131403515,
+ "acl": 1024,
+ "view": 1962092,
+ "repost": 16607,
+ "dynamic_id": 517241610091321208,
+ "timestamp": 1619268097,
+ "uid_type": 1,
+ "r_type": 1,
+ "status": 1,
+ "dynamic_id_str": "517241610091321208",
+ "pre_dy_id_str": "0",
+ "orig_dy_id_str": "0",
+ "rid_str": "131403515"
+ }
+ },
+ "card": "{ \"user\": { \"uid\": 1192711092, \"uname\": \"会发光的偶恰\", \"face\": \"https:\\/\\/i0.hdslb.com\\/bfs\\/face\\/b85a508793bd96deec61e2491d60e68f10378395.jpg\" }, \"item\": { \"rp_id\": 517505230885402892, \"uid\": 1192711092, \"content\": \"我最喜欢这个了,我也想要#哔哩哔哩漫画#\", \"orig_dy_id\": 517241610091321208, \"pre_dy_id\": 517241610091321208, \"timestamp\": 1619329476, \"reply\": 0, \"orig_type\": 2 }, \"origin\": \"{\\\"item\\\":{\\\"at_control\\\":\\\"[{\\\\\\\"type\\\\\\\":2,\\\\\\\"location\\\\\\\":0,\\\\\\\"length\\\\\\\":0,\\\\\\\"data\\\\\\\":\\\\\\\"5\\\\\\\"}]\\\",\\\"category\\\":\\\"daily\\\",\\\"description\\\":\\\"互动抽奖 【关+转】抽1位小伙伴送【哔哩哔哩小电视兔子包】~\\\\n【#哔哩哔哩漫画# 作品推荐】大量西幻少女漫爆更来啦———\\\\n[干杯] 即日起,《重生成为公爵家的丑女》《暴君的监护人是反派魔女》《姐姐捡回了男主》等大量西幻少女精品漫画爆更,追漫更有樱花立牌\\\\\\/玩偶等福利好礼相送!\\\\n[干杯] 快来哔哩哔哩漫画追漫吧~\\\",\\\"id\\\":131403515,\\\"is_fav\\\":0,\\\"pictures\\\":[{\\\"img_height\\\":1357,\\\"img_size\\\":1759.1650390625,\\\"img_src\\\":\\\"https:\\\\\\/\\\\\\/i0.hdslb.com\\\\\\/bfs\\\\\\/album\\\\\\/1ce565e7f36e0ae5a3809df21bb39aa2fe578a88.png\\\",\\\"img_tags\\\":null,\\\"img_width\\\":1080},{\\\"img_height\\\":1238,\\\"img_size\\\":832.51953125,\\\"img_src\\\":\\\"https:\\\\\\/\\\\\\/i0.hdslb.com\\\\\\/bfs\\\\\\/album\\\\\\/6df0150c77a7f42a5d31cce8bb006105a660dad9.png\\\",\\\"img_tags\\\":null,\\\"img_width\\\":1080},{\\\"img_height\\\":2193,\\\"img_size\\\":3424.060546875,\\\"img_src\\\":\\\"https:\\\\\\/\\\\\\/i0.hdslb.com\\\\\\/bfs\\\\\\/album\\\\\\/adce81c59436184b56d84e5394583d2ab491b2e6.png\\\",\\\"img_tags\\\":null,\\\"img_width\\\":1080},{\\\"img_height\\\":800,\\\"img_size\\\":166.1552734375,\\\"img_src\\\":\\\"https:\\\\\\/\\\\\\/i0.hdslb.com\\\\\\/bfs\\\\\\/album\\\\\\/9c4e8d6fc04d5a1f3df225d5967fb65c7a3f5f09.jpg\\\",\\\"img_tags\\\":null,\\\"img_width\\\":800}],\\\"pictures_count\\\":4,\\\"reply\\\":1020,\\\"role\\\":[],\\\"settings\\\":{\\\"copy_forbidden\\\":\\\"0\\\"},\\\"source\\\":[],\\\"title\\\":\\\"\\\",\\\"upload_time\\\":1619268097},\\\"user\\\":{\\\"head_url\\\":\\\"https:\\\\\\/\\\\\\/i1.hdslb.com\\\\\\/bfs\\\\\\/face\\\\\\/2254162161a60b528cfec449f3450409a81ebc37.jpg\\\",\\\"name\\\":\\\"哔哩哔哩漫画\\\",\\\"uid\\\":326499679,\\\"vip\\\":{\\\"avatar_subscript\\\":1,\\\"due_date\\\":1941033600000,\\\"label\\\":{\\\"label_theme\\\":\\\"ten_annual_vip\\\",\\\"path\\\":\\\"\\\",\\\"text\\\":\\\"十年大会员\\\"},\\\"nickname_color\\\":\\\"#FB7299\\\",\\\"status\\\":1,\\\"theme_type\\\":0,\\\"type\\\":2,\\\"vip_pay_type\\\":0}}}\", \"origin_extension\": { \"lott\": \"{\\\"callbackId\\\":10,\\\"lottery_id\\\":61382,\\\"lottery_time\\\":1620504000,\\\"title\\\":\\\"互动抽奖\\\"}\" }, \"origin_extend_json\": \"{\\\"ctrl\\\":[{\\\"data\\\":\\\"5\\\",\\\"length\\\":0,\\\"location\\\":0,\\\"type\\\":2}],\\\"from\\\":{\\\"emoji_type\\\":1,\\\"from\\\":\\\"\\\",\\\"up_close_comment\\\":0,\\\"verify\\\":{\\\"asw\\\":{\\\"fl\\\":15,\\\"nv\\\":1},\\\"cc\\\":{\\\"vf\\\":1},\\\"sw\\\":{\\\"fl\\\":15,\\\"nv\\\":1}}},\\\"like_icon\\\":{\\\"action\\\":\\\"\\\",\\\"action_url\\\":\\\"\\\",\\\"end\\\":\\\"\\\",\\\"end_url\\\":\\\"\\\",\\\"start\\\":\\\"\\\",\\\"start_url\\\":\\\"\\\"},\\\"lott\\\":{\\\"callbackId\\\":10,\\\"lottery_id\\\":61382,\\\"lottery_time\\\":1620504000,\\\"title\\\":\\\"互动抽奖\\\"},\\\"topic\\\":{\\\"is_attach_topic\\\":1}}\", \"origin_user\": { \"info\": { \"uid\": 326499679, \"uname\": \"哔哩哔哩漫画\", \"face\": \"https:\\/\\/i1.hdslb.com\\/bfs\\/face\\/2254162161a60b528cfec449f3450409a81ebc37.jpg\" }, \"card\": { \"official_verify\": { \"type\": 1, \"desc\": \"哔哩哔哩漫画官方账号\" } }, \"vip\": { \"vipType\": 2, \"vipDueDate\": 1941033600000, \"vipStatus\": 1, \"themeType\": 0, \"label\": { \"path\": \"\", \"text\": \"十年大会员\", \"label_theme\": \"ten_annual_vip\", \"text_color\": \"#FFFFFF\", \"bg_style\": 1, \"bg_color\": \"#FB7299\", \"border_color\": \"\" }, \"avatar_subscript\": 1, \"nickname_color\": \"#FB7299\", \"role\": 7, \"avatar_subscript_url\": \"https:\\/\\/i0.hdslb.com\\/bfs\\/vip\\/icon_Certification_big_member_22_3x.png\" }, \"pendant\": { \"pid\": 0, \"name\": \"\", \"image\": \"\", \"expire\": 0, \"image_enhance\": \"\", \"image_enhance_frame\": \"\" }, \"rank\": \"10000\", \"sign\": \"↑ 【关注漫画姬】就送【漫读券5张】,当日或次日登录哔哩哔哩漫画APP即可领取,快来关注领券吧(°∀°)ノ ↑\", \"level_info\": { \"current_level\": 6 } } }",
+ "extend_json": "{\"from\":{\"emoji_type\":1,\"from\":\"create.comment\",\"up_close_comment\":0},\"like_icon\":{\"action\":\"\",\"action_url\":\"\",\"end\":\"\",\"end_url\":\"\",\"start\":\"\",\"start_url\":\"\"},\"topic\":{\"is_attach_topic\":1}}",
+ "display": {
+ "topic_info": {
+ "topic_details": [
+ {
+ "topic_id": 7539944,
+ "topic_name": "哔哩哔哩漫画",
+ "is_activity": 0,
+ "topic_link": ""
+ }
+ ]
+ },
+ "origin": {
+ "topic_info": {
+ "topic_details": [
+ {
+ "topic_id": 7539944,
+ "topic_name": "哔哩哔哩漫画",
+ "is_activity": 0,
+ "topic_link": ""
+ }
+ ]
+ },
+ "emoji_info": {
+ "emoji_details": [
+ {
+ "emoji_name": "[干杯]",
+ "id": 1949,
+ "package_id": 1,
+ "state": 0,
+ "type": 1,
+ "attr": 0,
+ "text": "[干杯]",
+ "url": "https://i0.hdslb.com/bfs/emote/8da12d5f55a2c7e9778dcc05b40571979fe208e6.png",
+ "meta": {
+ "size": 1
+ },
+ "mtime": 1597738918
+ }
+ ]
+ },
+ "relation": {
+ "status": 1,
+ "is_follow": 0,
+ "is_followed": 0
+ },
+ "show_tip": {
+ "del_tip": "要删除动态吗?"
+ }
+ },
+ "relation": {
+ "status": 1,
+ "is_follow": 0,
+ "is_followed": 0
+ },
+ "up_act_button": {
+ "report_title": "举报",
+ "founder_report_title": "举报(发起人)",
+ "top_title": "置顶",
+ "top_confirm_title": "确定将此动态置顶吗",
+ "top_cancel_title": "确定将此动态取消置顶吗"
+ },
+ "show_tip": {
+ "del_tip": "要删除动态吗?"
+ }
+ }
+ },
+ {
+ "desc": {
+ "uid": 1365116,
+ "type": 1,
+ "rid": 517503525787575777,
+ "acl": 0,
+ "view": 2,
+ "repost": 0,
+ "comment": 0,
+ "like": 0,
+ "is_liked": 0,
+ "dynamic_id": 517503525779637979,
+ "timestamp": 1619329079,
+ "pre_dy_id": 517241610091321208,
+ "orig_dy_id": 517241610091321208,
+ "orig_type": 2,
+ "user_profile": {
+ "info": {
+ "uid": 1365116,
+ "uname": "濑户的海参",
+ "face": "https://i2.hdslb.com/bfs/face/8426c61be9c3ccd2296d080a54691c3bed5f2f9f.jpg"
+ },
+ "card": {
+ "official_verify": {
+ "type": -1,
+ "desc": ""
+ }
+ },
+ "vip": {
+ "vipType": 0,
+ "vipDueDate": 0,
+ "vipStatus": 0,
+ "themeType": 0,
+ "label": {
+ "path": "",
+ "text": "",
+ "label_theme": "",
+ "text_color": "",
+ "bg_style": 0,
+ "bg_color": "",
+ "border_color": ""
+ },
+ "avatar_subscript": 0,
+ "nickname_color": "",
+ "role": 0,
+ "avatar_subscript_url": ""
+ },
+ "pendant": {
+ "pid": 0,
+ "name": "",
+ "image": "",
+ "expire": 0,
+ "image_enhance": "",
+ "image_enhance_frame": ""
+ },
+ "rank": "10000",
+ "sign": "",
+ "level_info": {
+ "current_level": 5
+ }
+ },
+ "uid_type": 1,
+ "recommend_info": {
+ "is_attention": 0
+ },
+ "stype": 0,
+ "r_type": 1,
+ "inner_id": 0,
+ "topic_board": "C",
+ "topic_board_desc": "最新",
+ "status": 1,
+ "dynamic_id_str": "517503525779637979",
+ "pre_dy_id_str": "517241610091321208",
+ "orig_dy_id_str": "517241610091321208",
+ "rid_str": "517503525787575777",
+ "origin": {
+ "uid": 326499679,
+ "type": 2,
+ "rid": 131403515,
+ "acl": 1024,
+ "view": 1962092,
+ "repost": 16607,
+ "dynamic_id": 517241610091321208,
+ "timestamp": 1619268097,
+ "uid_type": 1,
+ "r_type": 1,
+ "status": 1,
+ "dynamic_id_str": "517241610091321208",
+ "pre_dy_id_str": "0",
+ "orig_dy_id_str": "0",
+ "rid_str": "131403515"
+ }
+ },
+ "card": "{ \"user\": { \"uid\": 1365116, \"uname\": \"濑户的海参\", \"face\": \"https:\\/\\/i2.hdslb.com\\/bfs\\/face\\/8426c61be9c3ccd2296d080a54691c3bed5f2f9f.jpg\" }, \"item\": { \"rp_id\": 517503525787575777, \"uid\": 1365116, \"content\": \"嗯哼#哔哩哔哩漫画#\", \"orig_dy_id\": 517241610091321208, \"pre_dy_id\": 517241610091321208, \"timestamp\": 1619329079, \"reply\": 0, \"orig_type\": 2 }, \"origin\": \"{\\\"item\\\":{\\\"at_control\\\":\\\"[{\\\\\\\"type\\\\\\\":2,\\\\\\\"location\\\\\\\":0,\\\\\\\"length\\\\\\\":0,\\\\\\\"data\\\\\\\":\\\\\\\"5\\\\\\\"}]\\\",\\\"category\\\":\\\"daily\\\",\\\"description\\\":\\\"互动抽奖 【关+转】抽1位小伙伴送【哔哩哔哩小电视兔子包】~\\\\n【#哔哩哔哩漫画# 作品推荐】大量西幻少女漫爆更来啦———\\\\n[干杯] 即日起,《重生成为公爵家的丑女》《暴君的监护人是反派魔女》《姐姐捡回了男主》等大量西幻少女精品漫画爆更,追漫更有樱花立牌\\\\\\/玩偶等福利好礼相送!\\\\n[干杯] 快来哔哩哔哩漫画追漫吧~\\\",\\\"id\\\":131403515,\\\"is_fav\\\":0,\\\"pictures\\\":[{\\\"img_height\\\":1357,\\\"img_size\\\":1759.1650390625,\\\"img_src\\\":\\\"https:\\\\\\/\\\\\\/i0.hdslb.com\\\\\\/bfs\\\\\\/album\\\\\\/1ce565e7f36e0ae5a3809df21bb39aa2fe578a88.png\\\",\\\"img_tags\\\":null,\\\"img_width\\\":1080},{\\\"img_height\\\":1238,\\\"img_size\\\":832.51953125,\\\"img_src\\\":\\\"https:\\\\\\/\\\\\\/i0.hdslb.com\\\\\\/bfs\\\\\\/album\\\\\\/6df0150c77a7f42a5d31cce8bb006105a660dad9.png\\\",\\\"img_tags\\\":null,\\\"img_width\\\":1080},{\\\"img_height\\\":2193,\\\"img_size\\\":3424.060546875,\\\"img_src\\\":\\\"https:\\\\\\/\\\\\\/i0.hdslb.com\\\\\\/bfs\\\\\\/album\\\\\\/adce81c59436184b56d84e5394583d2ab491b2e6.png\\\",\\\"img_tags\\\":null,\\\"img_width\\\":1080},{\\\"img_height\\\":800,\\\"img_size\\\":166.1552734375,\\\"img_src\\\":\\\"https:\\\\\\/\\\\\\/i0.hdslb.com\\\\\\/bfs\\\\\\/album\\\\\\/9c4e8d6fc04d5a1f3df225d5967fb65c7a3f5f09.jpg\\\",\\\"img_tags\\\":null,\\\"img_width\\\":800}],\\\"pictures_count\\\":4,\\\"reply\\\":1020,\\\"role\\\":[],\\\"settings\\\":{\\\"copy_forbidden\\\":\\\"0\\\"},\\\"source\\\":[],\\\"title\\\":\\\"\\\",\\\"upload_time\\\":1619268097},\\\"user\\\":{\\\"head_url\\\":\\\"https:\\\\\\/\\\\\\/i1.hdslb.com\\\\\\/bfs\\\\\\/face\\\\\\/2254162161a60b528cfec449f3450409a81ebc37.jpg\\\",\\\"name\\\":\\\"哔哩哔哩漫画\\\",\\\"uid\\\":326499679,\\\"vip\\\":{\\\"avatar_subscript\\\":1,\\\"due_date\\\":1941033600000,\\\"label\\\":{\\\"label_theme\\\":\\\"ten_annual_vip\\\",\\\"path\\\":\\\"\\\",\\\"text\\\":\\\"十年大会员\\\"},\\\"nickname_color\\\":\\\"#FB7299\\\",\\\"status\\\":1,\\\"theme_type\\\":0,\\\"type\\\":2,\\\"vip_pay_type\\\":0}}}\", \"origin_extension\": { \"lott\": \"{\\\"callbackId\\\":10,\\\"lottery_id\\\":61382,\\\"lottery_time\\\":1620504000,\\\"title\\\":\\\"互动抽奖\\\"}\" }, \"origin_extend_json\": \"{\\\"ctrl\\\":[{\\\"data\\\":\\\"5\\\",\\\"length\\\":0,\\\"location\\\":0,\\\"type\\\":2}],\\\"from\\\":{\\\"emoji_type\\\":1,\\\"from\\\":\\\"\\\",\\\"up_close_comment\\\":0,\\\"verify\\\":{\\\"asw\\\":{\\\"fl\\\":15,\\\"nv\\\":1},\\\"cc\\\":{\\\"vf\\\":1},\\\"sw\\\":{\\\"fl\\\":15,\\\"nv\\\":1}}},\\\"like_icon\\\":{\\\"action\\\":\\\"\\\",\\\"action_url\\\":\\\"\\\",\\\"end\\\":\\\"\\\",\\\"end_url\\\":\\\"\\\",\\\"start\\\":\\\"\\\",\\\"start_url\\\":\\\"\\\"},\\\"lott\\\":{\\\"callbackId\\\":10,\\\"lottery_id\\\":61382,\\\"lottery_time\\\":1620504000,\\\"title\\\":\\\"互动抽奖\\\"},\\\"topic\\\":{\\\"is_attach_topic\\\":1}}\", \"origin_user\": { \"info\": { \"uid\": 326499679, \"uname\": \"哔哩哔哩漫画\", \"face\": \"https:\\/\\/i1.hdslb.com\\/bfs\\/face\\/2254162161a60b528cfec449f3450409a81ebc37.jpg\" }, \"card\": { \"official_verify\": { \"type\": 1, \"desc\": \"哔哩哔哩漫画官方账号\" } }, \"vip\": { \"vipType\": 2, \"vipDueDate\": 1941033600000, \"vipStatus\": 1, \"themeType\": 0, \"label\": { \"path\": \"\", \"text\": \"十年大会员\", \"label_theme\": \"ten_annual_vip\", \"text_color\": \"#FFFFFF\", \"bg_style\": 1, \"bg_color\": \"#FB7299\", \"border_color\": \"\" }, \"avatar_subscript\": 1, \"nickname_color\": \"#FB7299\", \"role\": 7, \"avatar_subscript_url\": \"https:\\/\\/i0.hdslb.com\\/bfs\\/vip\\/icon_Certification_big_member_22_3x.png\" }, \"pendant\": { \"pid\": 0, \"name\": \"\", \"image\": \"\", \"expire\": 0, \"image_enhance\": \"\", \"image_enhance_frame\": \"\" }, \"rank\": \"10000\", \"sign\": \"↑ 【关注漫画姬】就送【漫读券5张】,当日或次日登录哔哩哔哩漫画APP即可领取,快来关注领券吧(°∀°)ノ ↑\", \"level_info\": { \"current_level\": 6 } } }",
+ "extend_json": "{\"from\":{\"emoji_type\":1,\"from\":\"create.comment\",\"up_close_comment\":0},\"like_icon\":{\"action\":\"\",\"action_url\":\"\",\"end\":\"\",\"end_url\":\"\",\"start\":\"\",\"start_url\":\"\"},\"topic\":{\"is_attach_topic\":1}}",
+ "display": {
+ "topic_info": {
+ "topic_details": [
+ {
+ "topic_id": 7539944,
+ "topic_name": "哔哩哔哩漫画",
+ "is_activity": 0,
+ "topic_link": ""
+ }
+ ]
+ },
+ "origin": {
+ "topic_info": {
+ "topic_details": [
+ {
+ "topic_id": 7539944,
+ "topic_name": "哔哩哔哩漫画",
+ "is_activity": 0,
+ "topic_link": ""
+ }
+ ]
+ },
+ "emoji_info": {
+ "emoji_details": [
+ {
+ "emoji_name": "[干杯]",
+ "id": 1949,
+ "package_id": 1,
+ "state": 0,
+ "type": 1,
+ "attr": 0,
+ "text": "[干杯]",
+ "url": "https://i0.hdslb.com/bfs/emote/8da12d5f55a2c7e9778dcc05b40571979fe208e6.png",
+ "meta": {
+ "size": 1
+ },
+ "mtime": 1597738918
+ }
+ ]
+ },
+ "relation": {
+ "status": 1,
+ "is_follow": 0,
+ "is_followed": 0
+ },
+ "show_tip": {
+ "del_tip": "要删除动态吗?"
+ }
+ },
+ "relation": {
+ "status": 1,
+ "is_follow": 0,
+ "is_followed": 0
+ },
+ "up_act_button": {
+ "report_title": "举报",
+ "founder_report_title": "举报(发起人)",
+ "top_title": "置顶",
+ "top_confirm_title": "确定将此动态置顶吗",
+ "top_cancel_title": "确定将此动态取消置顶吗"
+ },
+ "show_tip": {
+ "del_tip": "要删除动态吗?"
+ }
+ }
+ },
+ {
+ "desc": {
+ "uid": 326499679,
+ "type": 2,
+ "rid": 131489076,
+ "acl": 0,
+ "view": 1429218,
+ "repost": 34,
+ "comment": 23,
+ "like": 3872,
+ "is_liked": 0,
+ "dynamic_id": 517501494260096644,
+ "timestamp": 1619328606,
+ "pre_dy_id": 0,
+ "orig_dy_id": 0,
+ "orig_type": 0,
+ "user_profile": {
+ "info": {
+ "uid": 326499679,
+ "uname": "哔哩哔哩漫画",
+ "face": "https://i1.hdslb.com/bfs/face/2254162161a60b528cfec449f3450409a81ebc37.jpg"
+ },
+ "card": {
+ "official_verify": {
+ "type": 1,
+ "desc": "哔哩哔哩漫画官方账号"
+ }
+ },
+ "vip": {
+ "vipType": 2,
+ "vipDueDate": 1941033600000,
+ "vipStatus": 1,
+ "themeType": 0,
+ "label": {
+ "path": "",
+ "text": "十年大会员",
+ "label_theme": "ten_annual_vip",
+ "text_color": "#FFFFFF",
+ "bg_style": 1,
+ "bg_color": "#FB7299",
+ "border_color": ""
+ },
+ "avatar_subscript": 1,
+ "nickname_color": "#FB7299",
+ "role": 7,
+ "avatar_subscript_url": "https://i0.hdslb.com/bfs/vip/icon_Certification_big_member_22_3x.png"
+ },
+ "pendant": {
+ "pid": 0,
+ "name": "",
+ "image": "",
+ "expire": 0,
+ "image_enhance": "",
+ "image_enhance_frame": ""
+ },
+ "rank": "10000",
+ "sign": "↑ 【关注漫画姬】就送【漫读券5张】,当日或次日登录哔哩哔哩漫画APP即可领取,快来关注领券吧(°∀°)ノ ↑",
+ "level_info": {
+ "current_level": 6
+ }
+ },
+ "uid_type": 1,
+ "recommend_info": {
+ "is_attention": 0
+ },
+ "stype": 0,
+ "r_type": 1,
+ "inner_id": 0,
+ "topic_board": "C",
+ "topic_board_desc": "最新",
+ "status": 1,
+ "dynamic_id_str": "517501494260096644",
+ "pre_dy_id_str": "0",
+ "orig_dy_id_str": "0",
+ "rid_str": "131489076"
+ },
+ "card": "{\"item\":{\"at_control\":\"\",\"category\":\"daily\",\"description\":\"【#哔哩哔哩漫画# 限免活动+周边路透】✿ヽ(°▽°)ノ✿ \\n《#天宝伏妖录#》漫画第二卷将在【4月25日至5月2日】限时免费1周[打call][打call],感谢大家一直以来的支持[W-哈哈]!精彩剧情,不容错过!\\n同时之前《#天宝伏妖录#》第三卷活动售卖的周边近期在准备开补款啦~\\n小伙伴们先看看限定周边的实物图透叭(P1-P8)[打call]! 新卷也一直在筹备中,新卷封面同时奉上(P9)! \\n【追漫传送】:https:\\/\\/manga.bilibili.com\\/m\\/detail\\/mc27592 \",\"id\":131489076,\"is_fav\":0,\"pictures\":[{\"img_height\":5046,\"img_size\":16654.3876953125,\"img_src\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/album\\/6bcd7a96fe7bc616a7ea334319b58a3ab451cda2.jpg\",\"img_tags\":null,\"img_width\":6728},{\"img_height\":5046,\"img_size\":15713.2236328125,\"img_src\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/album\\/41e9e8ed2f181ce84adbb1175dcfc47b6b32d270.jpg\",\"img_tags\":null,\"img_width\":6728},{\"img_height\":5136,\"img_size\":20368.2822265625,\"img_src\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/album\\/81936f0dacc1fa63264d18cdba738b3582562cdd.jpg\",\"img_tags\":null,\"img_width\":7705},{\"img_height\":4427,\"img_size\":15909.310546875,\"img_src\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/album\\/5116024add807a033cf63395683c5b6ade28fbcf.jpg\",\"img_tags\":null,\"img_width\":6641},{\"img_height\":5136,\"img_size\":20431.3994140625,\"img_src\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/album\\/61155f325c5a862b0dcdb1dacc95f252ac768a4e.jpg\",\"img_tags\":null,\"img_width\":7705},{\"img_height\":5261,\"img_size\":19335.5029296875,\"img_src\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/album\\/6f5a7241d8f0093952edf16195b4d0aecfa2c6cd.jpg\",\"img_tags\":null,\"img_width\":7014},{\"img_height\":1408,\"img_size\":4784.3037109375,\"img_src\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/album\\/0350c791822a980d72450da226b1d61fa7b68c8f.png\",\"img_tags\":null,\"img_width\":1878},{\"img_height\":1408,\"img_size\":4614.8251953125,\"img_src\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/album\\/271187137e9973d07f01763a9a41b9b7f25f68fd.png\",\"img_tags\":null,\"img_width\":1878},{\"img_height\":3508,\"img_size\":1452.4482421875,\"img_src\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/album\\/f818bb197c7cc914ed4c921a6f7488f87ca15faf.jpg\",\"img_tags\":null,\"img_width\":2480}],\"pictures_count\":9,\"reply\":23,\"role\":[],\"settings\":{\"copy_forbidden\":\"0\"},\"source\":[],\"title\":\"\",\"upload_time\":1619328606},\"user\":{\"head_url\":\"https:\\/\\/i1.hdslb.com\\/bfs\\/face\\/2254162161a60b528cfec449f3450409a81ebc37.jpg\",\"name\":\"哔哩哔哩漫画\",\"uid\":326499679,\"vip\":{\"avatar_subscript\":1,\"due_date\":1941033600000,\"label\":{\"label_theme\":\"ten_annual_vip\",\"path\":\"\",\"text\":\"十年大会员\"},\"nickname_color\":\"#FB7299\",\"status\":1,\"theme_type\":0,\"type\":2,\"vip_pay_type\":0}}}",
+ "extend_json": "{\"from\":{\"emoji_type\":1,\"from\":\"timer.publish\",\"up_close_comment\":0,\"verify\":{\"cc\":{\"nv\":1}}},\"like_icon\":{\"action\":\"\",\"action_url\":\"\",\"end\":\"\",\"end_url\":\"\",\"start\":\"\",\"start_url\":\"\"},\"topic\":{\"is_attach_topic\":1}}",
+ "display": {
+ "topic_info": {
+ "topic_details": [
+ {
+ "topic_id": 7539944,
+ "topic_name": "哔哩哔哩漫画",
+ "is_activity": 0,
+ "topic_link": ""
+ },
+ {
+ "topic_id": 3812656,
+ "topic_name": "天宝伏妖录",
+ "is_activity": 1,
+ "topic_link": "https://www.bilibili.com/blackboard/dynamic/62601"
+ }
+ ]
+ },
+ "emoji_info": {
+ "emoji_details": [
+ {
+ "emoji_name": "[W-哈哈]",
+ "id": 3045,
+ "package_id": 1,
+ "state": 0,
+ "type": 1,
+ "attr": 0,
+ "text": "[W-哈哈]",
+ "url": "https://i0.hdslb.com/bfs/emote/83d527303c8f62f494e6971c48836487e7d87b1b.png",
+ "meta": {
+ "size": 1
+ },
+ "mtime": 1608785082
+ },
+ {
+ "emoji_name": "[打call]",
+ "id": 510,
+ "package_id": 1,
+ "state": 0,
+ "type": 1,
+ "attr": 0,
+ "text": "[打call]",
+ "url": "https://i0.hdslb.com/bfs/emote/431432c43da3ee5aab5b0e4f8931953e649e9975.png",
+ "meta": {
+ "size": 1
+ },
+ "mtime": 1617293741
+ }
+ ]
+ },
+ "relation": {
+ "status": 1,
+ "is_follow": 0,
+ "is_followed": 0
+ },
+ "up_act_button": {
+ "report_title": "举报",
+ "founder_report_title": "举报(发起人)",
+ "top_title": "置顶",
+ "top_confirm_title": "确定将此动态置顶吗",
+ "top_cancel_title": "确定将此动态取消置顶吗"
+ },
+ "show_tip": {
+ "del_tip": "要删除动态吗?"
+ }
+ }
+ },
+ {
+ "desc": {
+ "uid": 1902548007,
+ "type": 2,
+ "rid": 131480564,
+ "acl": 0,
+ "view": 1095,
+ "repost": 0,
+ "comment": 0,
+ "like": 16,
+ "is_liked": 0,
+ "dynamic_id": 517482725259184156,
+ "timestamp": 1619324236,
+ "pre_dy_id": 0,
+ "orig_dy_id": 0,
+ "orig_type": 0,
+ "user_profile": {
+ "info": {
+ "uid": 1902548007,
+ "uname": "BV社",
+ "face": "https://i0.hdslb.com/bfs/face/48f8e6afa688e37b9f1e3721a86bea8ce02688dc.jpg"
+ },
+ "card": {
+ "official_verify": {
+ "type": 1,
+ "desc": "BV社官方账号"
+ }
+ },
+ "vip": {
+ "vipType": 0,
+ "vipDueDate": 0,
+ "vipStatus": 0,
+ "themeType": 0,
+ "label": {
+ "path": "",
+ "text": "",
+ "label_theme": "",
+ "text_color": "",
+ "bg_style": 0,
+ "bg_color": "",
+ "border_color": ""
+ },
+ "avatar_subscript": 0,
+ "nickname_color": "",
+ "role": 0,
+ "avatar_subscript_url": ""
+ },
+ "pendant": {
+ "pid": 0,
+ "name": "",
+ "image": "",
+ "expire": 0,
+ "image_enhance": "",
+ "image_enhance_frame": ""
+ },
+ "rank": "10000",
+ "sign": "Vomic,让你爱的漫画更动听",
+ "level_info": {
+ "current_level": 2
+ }
+ },
+ "uid_type": 1,
+ "recommend_info": {
+ "is_attention": 0
+ },
+ "stype": 0,
+ "r_type": 1,
+ "inner_id": 0,
+ "topic_board": "C",
+ "topic_board_desc": "最新",
+ "status": 1,
+ "dynamic_id_str": "517482725259184156",
+ "pre_dy_id_str": "0",
+ "orig_dy_id_str": "0",
+ "rid_str": "131480564"
+ },
+ "card": "{\"item\":{\"at_control\":\"[{\\\"location\\\":122,\\\"type\\\":1,\\\"length\\\":8,\\\"data\\\":\\\"326499679\\\"},{\\\"location\\\":133,\\\"type\\\":1,\\\"length\\\":5,\\\"data\\\":\\\"1902548007\\\"},{\\\"location\\\":141,\\\"type\\\":1,\\\"length\\\":9,\\\"data\\\":\\\"386135764\\\"},{\\\"location\\\":153,\\\"type\\\":1,\\\"length\\\":6,\\\"data\\\":\\\"1740792\\\"}]\",\"category\":\"daily\",\"description\":\"#哔哩哔哩漫画#独家\\n“女鬼”找上门,却是为了救人?\\n“养尸地?那是啥?里面有宝贝嘛?”\\n“有凶尸。”\\n哟,父子俩这是什么情况?\\n惊奇 #Vomic##幽冥诡匠#第五集正式上线!每周日更新!更多精彩,小剧场,花絮,尽在哔哩哔哩漫画APP\\n出品:@哔哩哔哩漫画\\n策划:@BV社\\n制作:@回声漫响工作室\\n录制:@音熊联萌 \",\"id\":131480564,\"is_fav\":0,\"pictures\":[{\"img_height\":2400,\"img_size\":2852.115234375,\"img_src\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/album\\/cb7632509c8cb8a7703f5ab289320b26a07ec62e.jpg\",\"img_tags\":null,\"img_width\":2400}],\"pictures_count\":1,\"reply\":0,\"role\":[],\"settings\":{\"copy_forbidden\":\"0\"},\"source\":[],\"title\":\"\",\"upload_time\":1619324236},\"user\":{\"head_url\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/face\\/48f8e6afa688e37b9f1e3721a86bea8ce02688dc.jpg\",\"name\":\"BV社\",\"uid\":1902548007,\"vip\":{\"avatar_subscript\":0,\"due_date\":0,\"label\":{\"label_theme\":\"\",\"path\":\"\",\"text\":\"\"},\"nickname_color\":\"\",\"status\":0,\"theme_type\":0,\"type\":0,\"vip_pay_type\":0}}}",
+ "extend_json": "{\"ctrl\":[{\"data\":\"326499679\",\"length\":8,\"location\":122,\"type\":1},{\"data\":\"1902548007\",\"length\":5,\"location\":133,\"type\":1},{\"data\":\"386135764\",\"length\":9,\"location\":141,\"type\":1},{\"data\":\"1740792\",\"length\":6,\"location\":153,\"type\":1}],\"from\":{\"emoji_type\":1,\"from\":\"create.dynamic.web\",\"up_close_comment\":0,\"verify\":{\"asw\":{\"fl\":15,\"nv\":1},\"sw\":{\"fl\":15,\"nv\":1}}},\"like_icon\":{\"action\":\"\",\"action_url\":\"\",\"end\":\"\",\"end_url\":\"\",\"start\":\"\",\"start_url\":\"\"},\"topic\":{\"is_attach_topic\":1}}",
+ "display": {
+ "topic_info": {
+ "topic_details": [
+ {
+ "topic_id": 7539944,
+ "topic_name": "哔哩哔哩漫画",
+ "is_activity": 0,
+ "topic_link": ""
+ },
+ {
+ "topic_id": 3208432,
+ "topic_name": "Vomic",
+ "is_activity": 1,
+ "topic_link": "https://www.bilibili.com/blackboard/dynamic/106426"
+ },
+ {
+ "topic_id": 7128092,
+ "topic_name": "幽冥诡匠",
+ "is_activity": 1,
+ "topic_link": "https://www.bilibili.com/blackboard/dynamic/42527"
+ },
+ {
+ "topic_id": 37542,
+ "topic_name": "VOMIC",
+ "is_activity": 1,
+ "topic_link": "https://www.bilibili.com/blackboard/dynamic/106283"
+ },
+ {
+ "topic_id": 8972604,
+ "topic_name": "vomic",
+ "is_activity": 1,
+ "topic_link": "https://www.bilibili.com/blackboard/dynamic/106766"
+ }
+ ]
+ },
+ "relation": {
+ "status": 1,
+ "is_follow": 0,
+ "is_followed": 0
+ },
+ "up_act_button": {
+ "report_title": "举报",
+ "founder_report_title": "举报(发起人)",
+ "top_title": "置顶",
+ "top_confirm_title": "确定将此动态置顶吗",
+ "top_cancel_title": "确定将此动态取消置顶吗"
+ },
+ "show_tip": {
+ "del_tip": "要删除动态吗?"
+ }
+ }
+ },
+ {
+ "desc": {
+ "uid": 255495142,
+ "type": 1,
+ "rid": 517480856950088884,
+ "acl": 0,
+ "view": 344,
+ "repost": 0,
+ "comment": 0,
+ "like": 0,
+ "is_liked": 0,
+ "dynamic_id": 517480856947349138,
+ "timestamp": 1619323801,
+ "pre_dy_id": 517479366596833835,
+ "orig_dy_id": 517479366596833835,
+ "orig_type": 2,
+ "user_profile": {
+ "info": {
+ "uid": 255495142,
+ "uname": "坐怀不乱登徒子",
+ "face": "https://i1.hdslb.com/bfs/face/fa18d118f6c58da704400909743fb895c4c47627.jpg"
+ },
+ "card": {
+ "official_verify": {
+ "type": -1,
+ "desc": ""
+ }
+ },
+ "vip": {
+ "vipType": 2,
+ "vipDueDate": 1626451200000,
+ "vipStatus": 1,
+ "themeType": 0,
+ "label": {
+ "path": "",
+ "text": "年度大会员",
+ "label_theme": "annual_vip",
+ "text_color": "#FFFFFF",
+ "bg_style": 1,
+ "bg_color": "#FB7299",
+ "border_color": ""
+ },
+ "avatar_subscript": 1,
+ "nickname_color": "#FB7299",
+ "role": 3,
+ "avatar_subscript_url": "https://i0.hdslb.com/bfs/vip/icon_Certification_big_member_22_3x.png"
+ },
+ "pendant": {
+ "pid": 204,
+ "name": "至高守护",
+ "image": "https://i1.hdslb.com/bfs/face/88162662c23c2768c9e9e5c25017375685e83798.png",
+ "expire": 0,
+ "image_enhance": "https://i1.hdslb.com/bfs/face/88162662c23c2768c9e9e5c25017375685e83798.png",
+ "image_enhance_frame": ""
+ },
+ "rank": "10000",
+ "sign": "",
+ "level_info": {
+ "current_level": 5
+ }
+ },
+ "uid_type": 1,
+ "recommend_info": {
+ "is_attention": 0
+ },
+ "stype": 0,
+ "r_type": 1,
+ "inner_id": 0,
+ "topic_board": "C",
+ "topic_board_desc": "最新",
+ "status": 1,
+ "dynamic_id_str": "517480856947349138",
+ "pre_dy_id_str": "517479366596833835",
+ "orig_dy_id_str": "517479366596833835",
+ "rid_str": "517480856950088884",
+ "origin": {
+ "uid": 326499679,
+ "type": 2,
+ "rid": 131479206,
+ "acl": 1024,
+ "view": 1412747,
+ "repost": 11488,
+ "dynamic_id": 517479366596833835,
+ "timestamp": 1619323454,
+ "uid_type": 1,
+ "r_type": 1,
+ "status": 1,
+ "dynamic_id_str": "517479366596833835",
+ "pre_dy_id_str": "0",
+ "orig_dy_id_str": "0",
+ "rid_str": "131479206"
+ }
+ },
+ "card": "{ \"user\": { \"uid\": 255495142, \"uname\": \"坐怀不乱登徒子\", \"face\": \"https:\\/\\/i1.hdslb.com\\/bfs\\/face\\/fa18d118f6c58da704400909743fb895c4c47627.jpg\" }, \"item\": { \"rp_id\": 517480856950088884, \"uid\": 255495142, \"content\": \"[doge]#哔哩哔哩漫画#,#AISHA#\", \"orig_dy_id\": 517479366596833835, \"pre_dy_id\": 517479366596833835, \"timestamp\": 1619323801, \"reply\": 0, \"orig_type\": 2 }, \"origin\": \"{\\\"item\\\":{\\\"at_control\\\":\\\"[{\\\\\\\"data\\\\\\\":\\\\\\\"5\\\\\\\",\\\\\\\"length\\\\\\\":0,\\\\\\\"location\\\\\\\":0,\\\\\\\"type\\\\\\\":2},{\\\\\\\"location\\\\\\\":19,\\\\\\\"type\\\\\\\":1,\\\\\\\"length\\\\\\\":8,\\\\\\\"data\\\\\\\":\\\\\\\"1425490690\\\\\\\"}]\\\",\\\"category\\\":\\\"daily\\\",\\\"description\\\":\\\"互动抽奖 关+转,抽3位幸运小伙伴送@漫画家法吉特 【《逆光》画集作者签名版】~\\\\n #哔哩哔哩漫画#重磅安利之《#AISHA#》\\\\n当当当当!剧情党福音~\\\\n答题就有机会赢得礼物?还有法吉特太太亲签精美画集?\\\\n活动入口→https:\\\\\\/\\\\\\/www.bilibili.com\\\\\\/blackboard\\\\\\/topic\\\\\\/activity-oPISh007wv.html\\\\n\\\\n你以为这样就结束了了吗?\\\\nNONONO~\\\\n法吉特老师首次出版个人作品集《逆光》~商城4月25日0点首发开售!\\\\n有法吉特老师签名版掉落哦!随书额外附赠专属书签特典!\\\\n活动指路:哔哩哔哩漫画APP-我的-商城-banner\\\",\\\"id\\\":131479206,\\\"is_fav\\\":0,\\\"pictures\\\":[{\\\"img_height\\\":782,\\\"img_size\\\":1097.2451171875,\\\"img_src\\\":\\\"https:\\\\\\/\\\\\\/i0.hdslb.com\\\\\\/bfs\\\\\\/album\\\\\\/8965a784f77e2545f4f2f168df4f417ed3ace818.png\\\",\\\"img_tags\\\":null,\\\"img_width\\\":750}],\\\"pictures_count\\\":1,\\\"reply\\\":599,\\\"role\\\":[],\\\"settings\\\":{\\\"copy_forbidden\\\":\\\"0\\\"},\\\"source\\\":[],\\\"title\\\":\\\"\\\",\\\"upload_time\\\":1619323454},\\\"user\\\":{\\\"head_url\\\":\\\"https:\\\\\\/\\\\\\/i1.hdslb.com\\\\\\/bfs\\\\\\/face\\\\\\/2254162161a60b528cfec449f3450409a81ebc37.jpg\\\",\\\"name\\\":\\\"哔哩哔哩漫画\\\",\\\"uid\\\":326499679,\\\"vip\\\":{\\\"avatar_subscript\\\":1,\\\"due_date\\\":1941033600000,\\\"label\\\":{\\\"label_theme\\\":\\\"ten_annual_vip\\\",\\\"path\\\":\\\"\\\",\\\"text\\\":\\\"十年大会员\\\"},\\\"nickname_color\\\":\\\"#FB7299\\\",\\\"status\\\":1,\\\"theme_type\\\":0,\\\"type\\\":2,\\\"vip_pay_type\\\":0}}}\", \"origin_extension\": { \"lott\": \"{\\\"lottery_id\\\":61398}\" }, \"origin_extend_json\": \"{\\\"ctrl\\\":[{\\\"data\\\":\\\"5\\\",\\\"length\\\":0,\\\"location\\\":0,\\\"type\\\":2},{\\\"data\\\":\\\"1425490690\\\",\\\"length\\\":8,\\\"location\\\":19,\\\"type\\\":1}],\\\"from\\\":{\\\"emoji_type\\\":1,\\\"from\\\":\\\"create.dynamic.web\\\",\\\"up_close_comment\\\":0,\\\"verify\\\":{\\\"asw\\\":{\\\"fl\\\":15,\\\"nv\\\":1},\\\"cc\\\":{\\\"vf\\\":1},\\\"sw\\\":{\\\"fl\\\":15,\\\"nv\\\":1}}},\\\"like_icon\\\":{\\\"action\\\":\\\"\\\",\\\"action_url\\\":\\\"\\\",\\\"end\\\":\\\"\\\",\\\"end_url\\\":\\\"\\\",\\\"start\\\":\\\"\\\",\\\"start_url\\\":\\\"\\\"},\\\"lott\\\":{\\\"lottery_id\\\":61398},\\\"topic\\\":{\\\"is_attach_topic\\\":1}}\", \"origin_user\": { \"info\": { \"uid\": 326499679, \"uname\": \"哔哩哔哩漫画\", \"face\": \"https:\\/\\/i1.hdslb.com\\/bfs\\/face\\/2254162161a60b528cfec449f3450409a81ebc37.jpg\" }, \"card\": { \"official_verify\": { \"type\": 1, \"desc\": \"哔哩哔哩漫画官方账号\" } }, \"vip\": { \"vipType\": 2, \"vipDueDate\": 1941033600000, \"vipStatus\": 1, \"themeType\": 0, \"label\": { \"path\": \"\", \"text\": \"十年大会员\", \"label_theme\": \"ten_annual_vip\", \"text_color\": \"#FFFFFF\", \"bg_style\": 1, \"bg_color\": \"#FB7299\", \"border_color\": \"\" }, \"avatar_subscript\": 1, \"nickname_color\": \"#FB7299\", \"role\": 7, \"avatar_subscript_url\": \"https:\\/\\/i0.hdslb.com\\/bfs\\/vip\\/icon_Certification_big_member_22_3x.png\" }, \"pendant\": { \"pid\": 0, \"name\": \"\", \"image\": \"\", \"expire\": 0, \"image_enhance\": \"\", \"image_enhance_frame\": \"\" }, \"rank\": \"10000\", \"sign\": \"↑ 【关注漫画姬】就送【漫读券5张】,当日或次日登录哔哩哔哩漫画APP即可领取,快来关注领券吧(°∀°)ノ ↑\", \"level_info\": { \"current_level\": 6 } } }",
+ "extend_json": "{\"from\":{\"emoji_type\":1,\"from\":\"create.comment\",\"up_close_comment\":0},\"like_icon\":{\"action\":\"\",\"action_url\":\"\",\"end\":\"\",\"end_url\":\"\",\"start\":\"\",\"start_url\":\"\"},\"topic\":{\"is_attach_topic\":1}}",
+ "display": {
+ "topic_info": {
+ "topic_details": [
+ {
+ "topic_id": 7539944,
+ "topic_name": "哔哩哔哩漫画",
+ "is_activity": 0,
+ "topic_link": ""
+ },
+ {
+ "topic_id": 148830,
+ "topic_name": "AISHA",
+ "is_activity": 1,
+ "topic_link": "https://www.bilibili.com/blackboard/dynamic/18159"
+ },
+ {
+ "topic_id": 2514603,
+ "topic_name": "aisha",
+ "is_activity": 0,
+ "topic_link": ""
+ }
+ ]
+ },
+ "origin": {
+ "topic_info": {
+ "topic_details": [
+ {
+ "topic_id": 7539944,
+ "topic_name": "哔哩哔哩漫画",
+ "is_activity": 0,
+ "topic_link": ""
+ },
+ {
+ "topic_id": 148830,
+ "topic_name": "AISHA",
+ "is_activity": 1,
+ "topic_link": "https://www.bilibili.com/blackboard/dynamic/18159"
+ },
+ {
+ "topic_id": 2514603,
+ "topic_name": "aisha",
+ "is_activity": 0,
+ "topic_link": ""
+ }
+ ]
+ },
+ "relation": {
+ "status": 1,
+ "is_follow": 0,
+ "is_followed": 0
+ },
+ "show_tip": {
+ "del_tip": "要删除动态吗?"
+ }
+ },
+ "emoji_info": {
+ "emoji_details": [
+ {
+ "emoji_name": "[doge]",
+ "id": 26,
+ "package_id": 1,
+ "state": 0,
+ "type": 1,
+ "attr": 0,
+ "text": "[doge]",
+ "url": "https://i0.hdslb.com/bfs/emote/3087d273a78ccaff4bb1e9972e2ba2a7583c9f11.png",
+ "meta": {
+ "size": 1
+ },
+ "mtime": 1617293741
+ }
+ ]
+ },
+ "relation": {
+ "status": 1,
+ "is_follow": 0,
+ "is_followed": 0
+ },
+ "up_act_button": {
+ "report_title": "举报",
+ "founder_report_title": "举报(发起人)",
+ "top_title": "置顶",
+ "top_confirm_title": "确定将此动态置顶吗",
+ "top_cancel_title": "确定将此动态取消置顶吗"
+ },
+ "show_tip": {
+ "del_tip": "要删除动态吗?"
+ }
+ }
+ },
+ {
+ "desc": {
+ "uid": 326499679,
+ "type": 2,
+ "rid": 131479206,
+ "acl": 1024,
+ "view": 1412747,
+ "repost": 11488,
+ "comment": 599,
+ "like": 6530,
+ "is_liked": 0,
+ "dynamic_id": 517479366596833835,
+ "timestamp": 1619323454,
+ "orig_type": 0,
+ "user_profile": {
+ "info": {
+ "uid": 326499679,
+ "uname": "哔哩哔哩漫画",
+ "face": "https://i1.hdslb.com/bfs/face/2254162161a60b528cfec449f3450409a81ebc37.jpg"
+ },
+ "card": {
+ "official_verify": {
+ "type": 1,
+ "desc": "哔哩哔哩漫画官方账号"
+ }
+ },
+ "vip": {
+ "vipType": 2,
+ "vipDueDate": 1941033600000,
+ "vipStatus": 1,
+ "themeType": 0,
+ "label": {
+ "path": "",
+ "text": "十年大会员",
+ "label_theme": "ten_annual_vip",
+ "text_color": "#FFFFFF",
+ "bg_style": 1,
+ "bg_color": "#FB7299",
+ "border_color": ""
+ },
+ "avatar_subscript": 1,
+ "nickname_color": "#FB7299",
+ "role": 7,
+ "avatar_subscript_url": "https://i0.hdslb.com/bfs/vip/icon_Certification_big_member_22_3x.png"
+ },
+ "pendant": {
+ "pid": 0,
+ "name": "",
+ "image": "",
+ "expire": 0,
+ "image_enhance": "",
+ "image_enhance_frame": ""
+ },
+ "rank": "10000",
+ "sign": "↑ 【关注漫画姬】就送【漫读券5张】,当日或次日登录哔哩哔哩漫画APP即可领取,快来关注领券吧(°∀°)ノ ↑",
+ "level_info": {
+ "current_level": 6
+ }
+ },
+ "uid_type": 1,
+ "recommend_info": {
+ "is_attention": 0
+ },
+ "r_type": 1,
+ "topic_board": "C",
+ "topic_board_desc": "最新",
+ "status": 1,
+ "dynamic_id_str": "517479366596833835",
+ "pre_dy_id_str": "0",
+ "orig_dy_id_str": "0",
+ "rid_str": "131479206"
+ },
+ "card": "{\"item\":{\"at_control\":\"[{\\\"data\\\":\\\"5\\\",\\\"length\\\":0,\\\"location\\\":0,\\\"type\\\":2},{\\\"location\\\":19,\\\"type\\\":1,\\\"length\\\":8,\\\"data\\\":\\\"1425490690\\\"}]\",\"category\":\"daily\",\"description\":\"互动抽奖 关+转,抽3位幸运小伙伴送@漫画家法吉特 【《逆光》画集作者签名版】~\\n #哔哩哔哩漫画#重磅安利之《#AISHA#》\\n当当当当!剧情党福音~\\n答题就有机会赢得礼物?还有法吉特太太亲签精美画集?\\n活动入口→https:\\/\\/www.bilibili.com\\/blackboard\\/topic\\/activity-oPISh007wv.html\\n\\n你以为这样就结束了了吗?\\nNONONO~\\n法吉特老师首次出版个人作品集《逆光》~商城4月25日0点首发开售!\\n有法吉特老师签名版掉落哦!随书额外附赠专属书签特典!\\n活动指路:哔哩哔哩漫画APP-我的-商城-banner\",\"id\":131479206,\"is_fav\":0,\"pictures\":[{\"img_height\":782,\"img_size\":1097.2451171875,\"img_src\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/album\\/8965a784f77e2545f4f2f168df4f417ed3ace818.png\",\"img_tags\":null,\"img_width\":750}],\"pictures_count\":1,\"reply\":599,\"role\":[],\"settings\":{\"copy_forbidden\":\"0\"},\"source\":[],\"title\":\"\",\"upload_time\":1619323454},\"user\":{\"head_url\":\"https:\\/\\/i1.hdslb.com\\/bfs\\/face\\/2254162161a60b528cfec449f3450409a81ebc37.jpg\",\"name\":\"哔哩哔哩漫画\",\"uid\":326499679,\"vip\":{\"avatar_subscript\":1,\"due_date\":1941033600000,\"label\":{\"label_theme\":\"ten_annual_vip\",\"path\":\"\",\"text\":\"十年大会员\"},\"nickname_color\":\"#FB7299\",\"status\":1,\"theme_type\":0,\"type\":2,\"vip_pay_type\":0}}}",
+ "extension": {
+ "lott": "{\"lottery_id\":61398}"
+ },
+ "extend_json": "{\"ctrl\":[{\"data\":\"5\",\"length\":0,\"location\":0,\"type\":2},{\"data\":\"1425490690\",\"length\":8,\"location\":19,\"type\":1}],\"from\":{\"emoji_type\":1,\"from\":\"create.dynamic.web\",\"up_close_comment\":0,\"verify\":{\"asw\":{\"fl\":15,\"nv\":1},\"cc\":{\"vf\":1},\"sw\":{\"fl\":15,\"nv\":1}}},\"like_icon\":{\"action\":\"\",\"action_url\":\"\",\"end\":\"\",\"end_url\":\"\",\"start\":\"\",\"start_url\":\"\"},\"lott\":{\"lottery_id\":61398},\"topic\":{\"is_attach_topic\":1}}",
+ "display": {
+ "topic_info": {
+ "topic_details": [
+ {
+ "topic_id": 7539944,
+ "topic_name": "哔哩哔哩漫画",
+ "is_activity": 0,
+ "topic_link": ""
+ },
+ {
+ "topic_id": 148830,
+ "topic_name": "AISHA",
+ "is_activity": 1,
+ "topic_link": "https://www.bilibili.com/blackboard/dynamic/18159"
+ },
+ {
+ "topic_id": 2514603,
+ "topic_name": "aisha",
+ "is_activity": 0,
+ "topic_link": ""
+ }
+ ]
+ },
+ "relation": {
+ "status": 1,
+ "is_follow": 0,
+ "is_followed": 0
+ },
+ "up_act_button": {
+ "report_title": "举报",
+ "founder_report_title": "举报(发起人)",
+ "top_title": "置顶",
+ "top_confirm_title": "确定将此动态置顶吗",
+ "top_cancel_title": "确定将此动态取消置顶吗"
+ },
+ "show_tip": {
+ "del_tip": "要删除动态吗?"
+ }
+ }
+ },
+ {
+ "desc": {
+ "uid": 271873076,
+ "type": 2,
+ "rid": 131468623,
+ "acl": 0,
+ "view": 23,
+ "repost": 0,
+ "comment": 0,
+ "like": 0,
+ "is_liked": 0,
+ "dynamic_id": 517452016241823721,
+ "timestamp": 1619317086,
+ "pre_dy_id": 0,
+ "orig_dy_id": 0,
+ "orig_type": 0,
+ "user_profile": {
+ "info": {
+ "uid": 271873076,
+ "uname": "爱乐果iLEGUO",
+ "face": "https://i2.hdslb.com/bfs/face/fb79ac0f6de92c8ecc7d4cd1e958d19376c85fe8.jpg"
+ },
+ "card": {
+ "official_verify": {
+ "type": -1,
+ "desc": ""
+ }
+ },
+ "vip": {
+ "vipType": 0,
+ "vipDueDate": 0,
+ "vipStatus": 0,
+ "themeType": 0,
+ "label": {
+ "path": "",
+ "text": "",
+ "label_theme": "",
+ "text_color": "",
+ "bg_style": 0,
+ "bg_color": "",
+ "border_color": ""
+ },
+ "avatar_subscript": 0,
+ "nickname_color": "",
+ "role": 0,
+ "avatar_subscript_url": ""
+ },
+ "pendant": {
+ "pid": 0,
+ "name": "",
+ "image": "",
+ "expire": 0,
+ "image_enhance": "",
+ "image_enhance_frame": ""
+ },
+ "rank": "10000",
+ "sign": "龙俦纪+羞耻侠+妖怪IDOLS+偶像饲养手册+闪亮的家+神奇少年团+第8界+爱果系列+爱次元!研究社",
+ "level_info": {
+ "current_level": 4
+ }
+ },
+ "uid_type": 1,
+ "recommend_info": {
+ "is_attention": 0
+ },
+ "stype": 0,
+ "r_type": 1,
+ "inner_id": 0,
+ "topic_board": "C",
+ "topic_board_desc": "最新",
+ "status": 1,
+ "dynamic_id_str": "517452016241823721",
+ "pre_dy_id_str": "0",
+ "orig_dy_id_str": "0",
+ "rid_str": "131468623"
+ },
+ "card": "{\"item\":{\"at_control\":\"\",\"category\":\"daily\",\"description\":\"《龙俦纪》第99话4月25日更新!\\n高振采药遇险,竟然从悬崖上坠入万丈深渊?!!\\n苏郃首次展现能力,苏千屹又从苏郃身上发现了什么秘密?\\n《龙俦纪》正在好评连载中,逢“五”更新,欢迎追漫!\\n#哔哩哔哩漫画# https:\\/\\/manga.bilibili.com\\/m\\/detail\\/mc26014 \\n#宝藏漫画##爱乐果##漫画##二次元##古风##玄幻##二次元条漫# \",\"id\":131468623,\"is_fav\":0,\"pictures\":[{\"img_height\":720,\"img_size\":297.19140625,\"img_src\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/album\\/54e4f9e0c339f42484fcbe42cb7e7f69be4b87aa.jpg\",\"img_tags\":null,\"img_width\":1280}],\"pictures_count\":1,\"reply\":0,\"role\":[],\"settings\":{\"copy_forbidden\":\"0\"},\"source\":[],\"title\":\"\",\"upload_time\":1619317086},\"user\":{\"head_url\":\"https:\\/\\/i2.hdslb.com\\/bfs\\/face\\/fb79ac0f6de92c8ecc7d4cd1e958d19376c85fe8.jpg\",\"name\":\"爱乐果iLEGUO\",\"uid\":271873076,\"vip\":{\"avatar_subscript\":0,\"due_date\":0,\"label\":{\"label_theme\":\"\",\"path\":\"\",\"text\":\"\"},\"nickname_color\":\"\",\"status\":0,\"theme_type\":0,\"type\":0,\"vip_pay_type\":0}}}",
+ "extend_json": "{\"from\":{\"emoji_type\":1,\"from\":\"timer.publish\",\"up_close_comment\":0,\"verify\":{}},\"like_icon\":{\"action\":\"\",\"action_url\":\"\",\"end\":\"\",\"end_url\":\"\",\"start\":\"\",\"start_url\":\"\"},\"topic\":{\"is_attach_topic\":1}}",
+ "display": {
+ "topic_info": {
+ "topic_details": [
+ {
+ "topic_id": 7539944,
+ "topic_name": "哔哩哔哩漫画",
+ "is_activity": 0,
+ "topic_link": ""
+ },
+ {
+ "topic_id": 10182306,
+ "topic_name": "宝藏漫画",
+ "is_activity": 0,
+ "topic_link": ""
+ },
+ {
+ "topic_id": 9628017,
+ "topic_name": "爱乐果",
+ "is_activity": 0,
+ "topic_link": ""
+ },
+ {
+ "topic_id": 1184,
+ "topic_name": "漫画",
+ "is_activity": 0,
+ "topic_link": ""
+ },
+ {
+ "topic_id": 1907,
+ "topic_name": "二次元",
+ "is_activity": 1,
+ "topic_link": "https://www.bilibili.com/blackboard/dynamic/7694"
+ },
+ {
+ "topic_id": 8227,
+ "topic_name": "古风",
+ "is_activity": 0,
+ "topic_link": ""
+ },
+ {
+ "topic_id": 62935,
+ "topic_name": "玄幻",
+ "is_activity": 0,
+ "topic_link": ""
+ },
+ {
+ "topic_id": 12532729,
+ "topic_name": "二次元条漫",
+ "is_activity": 0,
+ "topic_link": ""
+ }
+ ]
+ },
+ "relation": {
+ "status": 1,
+ "is_follow": 0,
+ "is_followed": 0
+ },
+ "up_act_button": {
+ "report_title": "举报",
+ "founder_report_title": "举报(发起人)",
+ "top_title": "置顶",
+ "top_confirm_title": "确定将此动态置顶吗",
+ "top_cancel_title": "确定将此动态取消置顶吗"
+ },
+ "show_tip": {
+ "del_tip": "要删除动态吗?"
+ }
+ }
+ },
+ {
+ "desc": {
+ "uid": 1677019,
+ "type": 1,
+ "rid": 517443572335742626,
+ "acl": 0,
+ "view": 5,
+ "repost": 0,
+ "comment": 0,
+ "like": 0,
+ "is_liked": 0,
+ "dynamic_id": 517443572332941328,
+ "timestamp": 1619315120,
+ "pre_dy_id": 517241610091321208,
+ "orig_dy_id": 517241610091321208,
+ "orig_type": 2,
+ "user_profile": {
+ "info": {
+ "uid": 1677019,
+ "uname": "逗妇卤",
+ "face": "https://i1.hdslb.com/bfs/face/15a8f5d8c93f8f30bda71f192b92cfde2c76a1c7.jpg"
+ },
+ "card": {
+ "official_verify": {
+ "type": -1,
+ "desc": ""
+ }
+ },
+ "vip": {
+ "vipType": 2,
+ "vipDueDate": 1637510400000,
+ "vipStatus": 1,
+ "themeType": 0,
+ "label": {
+ "path": "",
+ "text": "年度大会员",
+ "label_theme": "annual_vip",
+ "text_color": "#FFFFFF",
+ "bg_style": 1,
+ "bg_color": "#FB7299",
+ "border_color": ""
+ },
+ "avatar_subscript": 1,
+ "nickname_color": "#FB7299",
+ "role": 3,
+ "avatar_subscript_url": "https://i0.hdslb.com/bfs/vip/icon_Certification_big_member_22_3x.png"
+ },
+ "pendant": {
+ "pid": 0,
+ "name": "",
+ "image": "",
+ "expire": 0,
+ "image_enhance": "",
+ "image_enhance_frame": ""
+ },
+ "rank": "10000",
+ "sign": "",
+ "level_info": {
+ "current_level": 5
+ }
+ },
+ "uid_type": 1,
+ "recommend_info": {
+ "is_attention": 0
+ },
+ "stype": 0,
+ "r_type": 1,
+ "inner_id": 0,
+ "topic_board": "C",
+ "topic_board_desc": "最新",
+ "status": 1,
+ "dynamic_id_str": "517443572332941328",
+ "pre_dy_id_str": "517241610091321208",
+ "orig_dy_id_str": "517241610091321208",
+ "rid_str": "517443572335742626",
+ "origin": {
+ "uid": 326499679,
+ "type": 2,
+ "rid": 131403515,
+ "acl": 1024,
+ "view": 1962092,
+ "repost": 16607,
+ "comment": 1020,
+ "like": 7002,
+ "is_liked": 0,
+ "dynamic_id": 517241610091321208,
+ "timestamp": 1619268097,
+ "user_profile": {
+ "info": {
+ "uid": 326499679,
+ "uname": "哔哩哔哩漫画",
+ "face": "https://i1.hdslb.com/bfs/face/2254162161a60b528cfec449f3450409a81ebc37.jpg"
+ },
+ "card": {
+ "official_verify": {
+ "type": 1,
+ "desc": "哔哩哔哩漫画官方账号"
+ }
+ },
+ "vip": {
+ "vipType": 2,
+ "vipDueDate": 1941033600000,
+ "vipStatus": 1,
+ "themeType": 0,
+ "label": {
+ "path": "",
+ "text": "十年大会员",
+ "label_theme": "ten_annual_vip",
+ "text_color": "#FFFFFF",
+ "bg_style": 1,
+ "bg_color": "#FB7299",
+ "border_color": ""
+ },
+ "avatar_subscript": 1,
+ "nickname_color": "#FB7299",
+ "role": 7,
+ "avatar_subscript_url": "https://i0.hdslb.com/bfs/vip/icon_Certification_big_member_22_3x.png"
+ },
+ "pendant": {
+ "pid": 0,
+ "name": "",
+ "image": "",
+ "expire": 0,
+ "image_enhance": "",
+ "image_enhance_frame": ""
+ },
+ "rank": "10000",
+ "sign": "↑ 【关注漫画姬】就送【漫读券5张】,当日或次日登录哔哩哔哩漫画APP即可领取,快来关注领券吧(°∀°)ノ ↑",
+ "level_info": {
+ "current_level": 6
+ }
+ },
+ "uid_type": 1,
+ "r_type": 1,
+ "status": 1,
+ "dynamic_id_str": "517241610091321208",
+ "pre_dy_id_str": "0",
+ "orig_dy_id_str": "0",
+ "rid_str": "131403515"
+ }
+ },
+ "card": "{ \"user\": { \"uid\": 1677019, \"uname\": \"逗妇卤\", \"face\": \"https:\\/\\/i1.hdslb.com\\/bfs\\/face\\/15a8f5d8c93f8f30bda71f192b92cfde2c76a1c7.jpg\" }, \"item\": { \"rp_id\": 517443572335742626, \"uid\": 1677019, \"content\": \"【关+转】抽1位小伙伴送【哔哩哔哩小电视兔子包】~\\n【#哔哩哔哩漫画# 作品推荐】大量西幻少女漫爆更来啦———\\n[干杯] 即日起,《重生成为公爵家的丑女》《暴君的监护人是反派魔女》《姐姐捡回了男主》等大量西幻少女精品漫画爆更,追漫更有樱花立牌\\/玩偶等福利好礼相送!\\n[干杯] 快来哔哩哔哩漫画追漫吧~\", \"orig_dy_id\": 517241610091321208, \"pre_dy_id\": 517241610091321208, \"timestamp\": 1619315120, \"reply\": 0, \"orig_type\": 2 }, \"origin\": \"{\\\"item\\\":{\\\"at_control\\\":\\\"[{\\\\\\\"type\\\\\\\":2,\\\\\\\"location\\\\\\\":0,\\\\\\\"length\\\\\\\":0,\\\\\\\"data\\\\\\\":\\\\\\\"5\\\\\\\"}]\\\",\\\"category\\\":\\\"daily\\\",\\\"description\\\":\\\"互动抽奖 【关+转】抽1位小伙伴送【哔哩哔哩小电视兔子包】~\\\\n【#哔哩哔哩漫画# 作品推荐】大量西幻少女漫爆更来啦———\\\\n[干杯] 即日起,《重生成为公爵家的丑女》《暴君的监护人是反派魔女》《姐姐捡回了男主》等大量西幻少女精品漫画爆更,追漫更有樱花立牌\\\\\\/玩偶等福利好礼相送!\\\\n[干杯] 快来哔哩哔哩漫画追漫吧~\\\",\\\"id\\\":131403515,\\\"is_fav\\\":0,\\\"pictures\\\":[{\\\"img_height\\\":1357,\\\"img_size\\\":1759.1650390625,\\\"img_src\\\":\\\"https:\\\\\\/\\\\\\/i0.hdslb.com\\\\\\/bfs\\\\\\/album\\\\\\/1ce565e7f36e0ae5a3809df21bb39aa2fe578a88.png\\\",\\\"img_tags\\\":null,\\\"img_width\\\":1080},{\\\"img_height\\\":1238,\\\"img_size\\\":832.51953125,\\\"img_src\\\":\\\"https:\\\\\\/\\\\\\/i0.hdslb.com\\\\\\/bfs\\\\\\/album\\\\\\/6df0150c77a7f42a5d31cce8bb006105a660dad9.png\\\",\\\"img_tags\\\":null,\\\"img_width\\\":1080},{\\\"img_height\\\":2193,\\\"img_size\\\":3424.060546875,\\\"img_src\\\":\\\"https:\\\\\\/\\\\\\/i0.hdslb.com\\\\\\/bfs\\\\\\/album\\\\\\/adce81c59436184b56d84e5394583d2ab491b2e6.png\\\",\\\"img_tags\\\":null,\\\"img_width\\\":1080},{\\\"img_height\\\":800,\\\"img_size\\\":166.1552734375,\\\"img_src\\\":\\\"https:\\\\\\/\\\\\\/i0.hdslb.com\\\\\\/bfs\\\\\\/album\\\\\\/9c4e8d6fc04d5a1f3df225d5967fb65c7a3f5f09.jpg\\\",\\\"img_tags\\\":null,\\\"img_width\\\":800}],\\\"pictures_count\\\":4,\\\"reply\\\":1020,\\\"role\\\":[],\\\"settings\\\":{\\\"copy_forbidden\\\":\\\"0\\\"},\\\"source\\\":[],\\\"title\\\":\\\"\\\",\\\"upload_time\\\":1619268097},\\\"user\\\":{\\\"head_url\\\":\\\"https:\\\\\\/\\\\\\/i1.hdslb.com\\\\\\/bfs\\\\\\/face\\\\\\/2254162161a60b528cfec449f3450409a81ebc37.jpg\\\",\\\"name\\\":\\\"哔哩哔哩漫画\\\",\\\"uid\\\":326499679,\\\"vip\\\":{\\\"avatar_subscript\\\":1,\\\"due_date\\\":1941033600000,\\\"label\\\":{\\\"label_theme\\\":\\\"ten_annual_vip\\\",\\\"path\\\":\\\"\\\",\\\"text\\\":\\\"十年大会员\\\"},\\\"nickname_color\\\":\\\"#FB7299\\\",\\\"status\\\":1,\\\"theme_type\\\":0,\\\"type\\\":2,\\\"vip_pay_type\\\":0}}}\", \"origin_extension\": { \"lott\": \"{\\\"callbackId\\\":10,\\\"lottery_id\\\":61382,\\\"lottery_time\\\":1620504000,\\\"title\\\":\\\"互动抽奖\\\"}\" }, \"origin_extend_json\": \"{\\\"ctrl\\\":[{\\\"data\\\":\\\"5\\\",\\\"length\\\":0,\\\"location\\\":0,\\\"type\\\":2}],\\\"from\\\":{\\\"emoji_type\\\":1,\\\"from\\\":\\\"\\\",\\\"up_close_comment\\\":0,\\\"verify\\\":{\\\"asw\\\":{\\\"fl\\\":15,\\\"nv\\\":1},\\\"cc\\\":{\\\"vf\\\":1},\\\"sw\\\":{\\\"fl\\\":15,\\\"nv\\\":1}}},\\\"like_icon\\\":{\\\"action\\\":\\\"\\\",\\\"action_url\\\":\\\"\\\",\\\"end\\\":\\\"\\\",\\\"end_url\\\":\\\"\\\",\\\"start\\\":\\\"\\\",\\\"start_url\\\":\\\"\\\"},\\\"lott\\\":{\\\"callbackId\\\":10,\\\"lottery_id\\\":61382,\\\"lottery_time\\\":1620504000,\\\"title\\\":\\\"互动抽奖\\\"},\\\"topic\\\":{\\\"is_attach_topic\\\":1}}\", \"origin_user\": { \"info\": { \"uid\": 326499679, \"uname\": \"哔哩哔哩漫画\", \"face\": \"https:\\/\\/i1.hdslb.com\\/bfs\\/face\\/2254162161a60b528cfec449f3450409a81ebc37.jpg\" }, \"card\": { \"official_verify\": { \"type\": 1, \"desc\": \"哔哩哔哩漫画官方账号\" } }, \"vip\": { \"vipType\": 2, \"vipDueDate\": 1941033600000, \"vipStatus\": 1, \"themeType\": 0, \"label\": { \"path\": \"\", \"text\": \"十年大会员\", \"label_theme\": \"ten_annual_vip\", \"text_color\": \"#FFFFFF\", \"bg_style\": 1, \"bg_color\": \"#FB7299\", \"border_color\": \"\" }, \"avatar_subscript\": 1, \"nickname_color\": \"#FB7299\", \"role\": 7, \"avatar_subscript_url\": \"https:\\/\\/i0.hdslb.com\\/bfs\\/vip\\/icon_Certification_big_member_22_3x.png\" }, \"pendant\": { \"pid\": 0, \"name\": \"\", \"image\": \"\", \"expire\": 0, \"image_enhance\": \"\", \"image_enhance_frame\": \"\" }, \"rank\": \"10000\", \"sign\": \"↑ 【关注漫画姬】就送【漫读券5张】,当日或次日登录哔哩哔哩漫画APP即可领取,快来关注领券吧(°∀°)ノ ↑\", \"level_info\": { \"current_level\": 6 } } }",
+ "extend_json": "{\"from\":{\"emoji_type\":1,\"up_close_comment\":0,\"verify\":{\"asw\":{\"fl\":15,\"nv\":1},\"sw\":{\"fl\":15,\"nv\":1}}},\"like_icon\":{\"action\":\"\",\"action_url\":\"\",\"end\":\"\",\"end_url\":\"\",\"start\":\"\",\"start_url\":\"\"},\"topic\":{\"is_attach_topic\":1}}",
+ "display": {
+ "topic_info": {
+ "topic_details": [
+ {
+ "topic_id": 7539944,
+ "topic_name": "哔哩哔哩漫画",
+ "is_activity": 0,
+ "topic_link": ""
+ }
+ ]
+ },
+ "origin": {
+ "topic_info": {
+ "topic_details": [
+ {
+ "topic_id": 7539944,
+ "topic_name": "哔哩哔哩漫画",
+ "is_activity": 0,
+ "topic_link": ""
+ }
+ ]
+ },
+ "emoji_info": {
+ "emoji_details": [
+ {
+ "emoji_name": "[干杯]",
+ "id": 1949,
+ "package_id": 1,
+ "state": 0,
+ "type": 1,
+ "attr": 0,
+ "text": "[干杯]",
+ "url": "https://i0.hdslb.com/bfs/emote/8da12d5f55a2c7e9778dcc05b40571979fe208e6.png",
+ "meta": {
+ "size": 1
+ },
+ "mtime": 1597738918
+ }
+ ]
+ },
+ "relation": {
+ "status": 1,
+ "is_follow": 0,
+ "is_followed": 0
+ },
+ "show_tip": {
+ "del_tip": "要删除动态吗?"
+ }
+ },
+ "emoji_info": {
+ "emoji_details": [
+ {
+ "emoji_name": "[干杯]",
+ "id": 1949,
+ "package_id": 1,
+ "state": 0,
+ "type": 1,
+ "attr": 0,
+ "text": "[干杯]",
+ "url": "https://i0.hdslb.com/bfs/emote/8da12d5f55a2c7e9778dcc05b40571979fe208e6.png",
+ "meta": {
+ "size": 1
+ },
+ "mtime": 1597738918
+ }
+ ]
+ },
+ "relation": {
+ "status": 1,
+ "is_follow": 0,
+ "is_followed": 0
+ },
+ "up_act_button": {
+ "report_title": "举报",
+ "founder_report_title": "举报(发起人)",
+ "top_title": "置顶",
+ "top_confirm_title": "确定将此动态置顶吗",
+ "top_cancel_title": "确定将此动态取消置顶吗"
+ },
+ "show_tip": {
+ "del_tip": "要删除动态吗?"
+ }
+ }
+ },
+ {
+ "desc": {
+ "uid": 324540735,
+ "type": 8,
+ "rid": 672631542,
+ "acl": 0,
+ "view": 31,
+ "repost": 0,
+ "like": 1,
+ "is_liked": 0,
+ "dynamic_id": 517311278755293659,
+ "timestamp": 1619284318,
+ "pre_dy_id": 0,
+ "orig_dy_id": 0,
+ "orig_type": 0,
+ "user_profile": {
+ "info": {
+ "uid": 324540735,
+ "uname": "文雯兄",
+ "face": "https://i0.hdslb.com/bfs/face/8000d5ad4652f8bf9074781a108eb54243a06889.jpg"
+ },
+ "card": {
+ "official_verify": {
+ "type": -1,
+ "desc": ""
+ }
+ },
+ "vip": {
+ "vipType": 1,
+ "vipDueDate": 1613491200000,
+ "vipStatus": 0,
+ "themeType": 0,
+ "label": {
+ "path": "",
+ "text": "",
+ "label_theme": "",
+ "text_color": "",
+ "bg_style": 0,
+ "bg_color": "",
+ "border_color": ""
+ },
+ "avatar_subscript": 0,
+ "nickname_color": "",
+ "role": 0,
+ "avatar_subscript_url": ""
+ },
+ "pendant": {
+ "pid": 0,
+ "name": "",
+ "image": "",
+ "expire": 0,
+ "image_enhance": "",
+ "image_enhance_frame": ""
+ },
+ "rank": "10000",
+ "sign": "游说万乘苦不早,著鞭跨马涉远道。",
+ "level_info": {
+ "current_level": 4
+ }
+ },
+ "uid_type": 1,
+ "recommend_info": {
+ "is_attention": 0
+ },
+ "stype": 0,
+ "r_type": 1,
+ "inner_id": 0,
+ "topic_board": "C",
+ "topic_board_desc": "最新",
+ "status": 1,
+ "dynamic_id_str": "517311278755293659",
+ "pre_dy_id_str": "0",
+ "orig_dy_id_str": "0",
+ "rid_str": "672631542",
+ "bvid": "BV1dU4y1h78A"
+ },
+ "card": "{\"aid\":672631542,\"attribute\":0,\"cid\":328783995,\"copyright\":1,\"ctime\":1619284318,\"desc\":\"本漫画由哔哩哔哩漫画出品,本人配音,谢谢大家的支持。\",\"dimension\":{\"height\":1920,\"rotate\":0,\"width\":864},\"duration\":191,\"dynamic\":\"\",\"item\":{\"at_control\":\"\"},\"jump_url\":\"bilibili:\\/\\/video\\/672631542\\/?page=1&player_preload=null&player_width=864&player_height=1920&player_rotate=0\",\"mission_id\":18978,\"owner\":{\"face\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/face\\/8000d5ad4652f8bf9074781a108eb54243a06889.jpg\",\"mid\":324540735,\"name\":\"文雯兄\"},\"pic\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/archive\\/b2d2dc3a909696ea1db3fbfeeb7ab42dc37ced87.jpg\",\"player_info\":null,\"pubdate\":1619284318,\"rights\":{\"autoplay\":1,\"bp\":0,\"download\":0,\"elec\":0,\"hd5\":0,\"is_cooperation\":0,\"movie\":0,\"no_background\":0,\"no_reprint\":1,\"pay\":0,\"ugc_pay\":0,\"ugc_pay_preview\":0},\"short_link\":\"https:\\/\\/b23.tv\\/BV1dU4y1h78A\",\"short_link_v2\":\"https:\\/\\/b23.tv\\/BV1dU4y1h78A\",\"stat\":{\"aid\":672631542,\"coin\":0,\"danmaku\":0,\"dislike\":0,\"favorite\":0,\"his_rank\":0,\"like\":1,\"now_rank\":0,\"reply\":0,\"share\":0,\"view\":10},\"state\":0,\"tid\":138,\"title\":\"怎么办,我穿越成最弱小野怪了(三十九)【关于我不当人的这件事】\",\"tname\":\"搞笑\",\"up_from_v2\":8,\"videos\":1}",
+ "extend_json": "{\"\":{\"ogv\":{\"ogv_id\":0}},\"dispute\":{\"content\":\"\"},\"from\":{\"from\":\"\"},\"like_icon\":{\"action\":\"\",\"action_url\":\"\",\"end\":\"\",\"end_url\":\"\",\"start\":\"\",\"start_url\":\"\"},\"topic\":{\"is_attach_topic\":1}}",
+ "display": {
+ "topic_info": {
+ "topic_details": [
+ {
+ "topic_id": 19254944,
+ "topic_name": "火力配音王-配音剧场",
+ "is_activity": 1,
+ "topic_link": "https://www.bilibili.com/blackboard/dynamic/108663"
+ },
+ {
+ "topic_id": 7539944,
+ "topic_name": "哔哩哔哩漫画",
+ "is_activity": 0,
+ "topic_link": ""
+ },
+ {
+ "topic_id": 3844,
+ "topic_name": "穿越",
+ "is_activity": 0,
+ "topic_link": ""
+ },
+ {
+ "topic_id": 1833,
+ "topic_name": "搞笑",
+ "is_activity": 0,
+ "topic_link": ""
+ },
+ {
+ "topic_id": 1217,
+ "topic_name": "自制",
+ "is_activity": 0,
+ "topic_link": ""
+ },
+ {
+ "topic_id": 1184,
+ "topic_name": "漫画",
+ "is_activity": 0,
+ "topic_link": ""
+ }
+ ]
+ },
+ "usr_action_txt": "投稿了视频",
+ "relation": {
+ "status": 1,
+ "is_follow": 0,
+ "is_followed": 0
+ },
+ "up_act_button": {
+ "report_title": "举报",
+ "founder_report_title": "举报(发起人)",
+ "top_title": "置顶",
+ "top_confirm_title": "确定将此动态置顶吗",
+ "top_cancel_title": "确定将此动态取消置顶吗"
+ },
+ "show_tip": {
+ "del_tip": "要删除动态吗?"
+ },
+ "cover_play_icon_url": "https://i0.hdslb.com/bfs/album/2269afa7897830b397797ebe5f032b899b405c67.png"
+ }
+ },
+ {
+ "desc": {
+ "uid": 326499679,
+ "type": 8,
+ "rid": 972719486,
+ "acl": 0,
+ "view": 2766257,
+ "repost": 3,
+ "like": 5925,
+ "is_liked": 0,
+ "dynamic_id": 517261895213635612,
+ "timestamp": 1619272820,
+ "pre_dy_id": 0,
+ "orig_dy_id": 0,
+ "orig_type": 0,
+ "user_profile": {
+ "info": {
+ "uid": 326499679,
+ "uname": "哔哩哔哩漫画",
+ "face": "https://i1.hdslb.com/bfs/face/2254162161a60b528cfec449f3450409a81ebc37.jpg"
+ },
+ "card": {
+ "official_verify": {
+ "type": 1,
+ "desc": "哔哩哔哩漫画官方账号"
+ }
+ },
+ "vip": {
+ "vipType": 2,
+ "vipDueDate": 1941033600000,
+ "vipStatus": 1,
+ "themeType": 0,
+ "label": {
+ "path": "",
+ "text": "十年大会员",
+ "label_theme": "ten_annual_vip",
+ "text_color": "#FFFFFF",
+ "bg_style": 1,
+ "bg_color": "#FB7299",
+ "border_color": ""
+ },
+ "avatar_subscript": 1,
+ "nickname_color": "#FB7299",
+ "role": 7,
+ "avatar_subscript_url": "https://i0.hdslb.com/bfs/vip/icon_Certification_big_member_22_3x.png"
+ },
+ "pendant": {
+ "pid": 0,
+ "name": "",
+ "image": "",
+ "expire": 0,
+ "image_enhance": "",
+ "image_enhance_frame": ""
+ },
+ "rank": "10000",
+ "sign": "↑ 【关注漫画姬】就送【漫读券5张】,当日或次日登录哔哩哔哩漫画APP即可领取,快来关注领券吧(°∀°)ノ ↑",
+ "level_info": {
+ "current_level": 6
+ }
+ },
+ "uid_type": 1,
+ "recommend_info": {
+ "is_attention": 0
+ },
+ "stype": 0,
+ "r_type": 1,
+ "inner_id": 0,
+ "topic_board": "C",
+ "topic_board_desc": "最新",
+ "status": 1,
+ "dynamic_id_str": "517261895213635612",
+ "pre_dy_id_str": "0",
+ "orig_dy_id_str": "0",
+ "rid_str": "972719486",
+ "bvid": "BV1Gp4y1b7ZB"
+ },
+ "card": "{\"aid\":972719486,\"attribute\":0,\"cid\":328058863,\"copyright\":1,\"ctime\":1619272820,\"desc\":\"#反派初始化# #Vomic#\\n圈圈叉叉,桃树开花,花瓣落下,生出新芽。\\n@哔哩哔哩漫画 出品、@BV社 策划、 @Antler_墨柚 原作、@叉叉叉叉叉口叉 主笔、@补天研究所 制作、@音熊联萌 录制、Vomic《反派初始化》第二集正式上线!\\n哔哩哔哩漫画独家播放,每周六更新!\\n还有小剧场,花絮不定时掉落、敬请期待~\\n\\n出品:@哔哩哔哩漫画\\n策划:@BV社\\n制作:@补天研究所\\n录制:@音熊联萌\",\"dimension\":{\"height\":1080,\"rotate\":0,\"width\":1920},\"duration\":62,\"dynamic\":\"#哔哩哔哩漫画#独家,#Vomic#2021年4月3日起每周六更新!更多精彩,小剧场,花絮,尽在哔哩哔哩漫画APP\",\"item\":{\"at_control\":\"\"},\"jump_url\":\"bilibili:\\/\\/video\\/972719486\\/?page=1&player_preload=null&player_width=1920&player_height=1080&player_rotate=0\",\"owner\":{\"face\":\"https:\\/\\/i1.hdslb.com\\/bfs\\/face\\/2254162161a60b528cfec449f3450409a81ebc37.jpg\",\"mid\":326499679,\"name\":\"哔哩哔哩漫画\"},\"pic\":\"https:\\/\\/i2.hdslb.com\\/bfs\\/archive\\/3c8a720b809153f95b1134acb991011eb79dc80b.jpg\",\"player_info\":null,\"pubdate\":1619272819,\"rights\":{\"autoplay\":1,\"bp\":0,\"download\":0,\"elec\":0,\"hd5\":1,\"is_cooperation\":0,\"movie\":0,\"no_background\":0,\"no_reprint\":1,\"pay\":0,\"ugc_pay\":0,\"ugc_pay_preview\":0},\"short_link\":\"https:\\/\\/b23.tv\\/BV1Gp4y1b7ZB\",\"short_link_v2\":\"https:\\/\\/b23.tv\\/BV1Gp4y1b7ZB\",\"stat\":{\"aid\":972719486,\"coin\":115,\"danmaku\":4,\"dislike\":0,\"favorite\":44,\"his_rank\":0,\"like\":5925,\"now_rank\":0,\"reply\":35,\"share\":145,\"view\":32070},\"state\":0,\"tid\":27,\"title\":\"【Vomic】滴——《反派初始化》第二集精彩片段!\",\"tname\":\"综合\",\"videos\":1}",
+ "extend_json": "{\"\":{\"ogv\":{\"ogv_id\":0}},\"dispute\":{\"content\":\"\"},\"from\":{\"from\":\"\",\"verify\":{}},\"like_icon\":{\"action\":\"\",\"action_url\":\"\",\"end\":\"\",\"end_url\":\"\",\"start\":\"\",\"start_url\":\"\"},\"topic\":{\"is_attach_topic\":1}}",
+ "display": {
+ "topic_info": {
+ "topic_details": [
+ {
+ "topic_id": 7539944,
+ "topic_name": "哔哩哔哩漫画",
+ "is_activity": 0,
+ "topic_link": ""
+ },
+ {
+ "topic_id": 3208432,
+ "topic_name": "Vomic",
+ "is_activity": 1,
+ "topic_link": "https://www.bilibili.com/blackboard/dynamic/106426"
+ },
+ {
+ "topic_id": 37542,
+ "topic_name": "VOMIC",
+ "is_activity": 1,
+ "topic_link": "https://www.bilibili.com/blackboard/dynamic/106283"
+ },
+ {
+ "topic_id": 8972604,
+ "topic_name": "vomic",
+ "is_activity": 1,
+ "topic_link": "https://www.bilibili.com/blackboard/dynamic/106766"
+ },
+ {
+ "topic_id": 210754,
+ "topic_name": "夏磊",
+ "is_activity": 0,
+ "topic_link": ""
+ },
+ {
+ "topic_id": 10526139,
+ "topic_name": "反派初始化",
+ "is_activity": 0,
+ "topic_link": ""
+ },
+ {
+ "topic_id": 1322133,
+ "topic_name": "赵路",
+ "is_activity": 0,
+ "topic_link": ""
+ },
+ {
+ "topic_id": 423864,
+ "topic_name": "音熊联萌",
+ "is_activity": 1,
+ "topic_link": "https://www.bilibili.com/blackboard/dynamic/17389"
+ }
+ ]
+ },
+ "usr_action_txt": "投稿了视频",
+ "relation": {
+ "status": 1,
+ "is_follow": 0,
+ "is_followed": 0
+ },
+ "up_act_button": {
+ "report_title": "举报",
+ "founder_report_title": "举报(发起人)",
+ "top_title": "置顶",
+ "top_confirm_title": "确定将此动态置顶吗",
+ "top_cancel_title": "确定将此动态取消置顶吗"
+ },
+ "show_tip": {
+ "del_tip": "要删除动态吗?"
+ },
+ "cover_play_icon_url": "https://i0.hdslb.com/bfs/album/2269afa7897830b397797ebe5f032b899b405c67.png"
+ }
+ },
+ {
+ "desc": {
+ "uid": 255495142,
+ "type": 1,
+ "rid": 517243774753706830,
+ "acl": 0,
+ "view": 9,
+ "repost": 0,
+ "comment": 0,
+ "like": 0,
+ "is_liked": 0,
+ "dynamic_id": 517243774755903256,
+ "timestamp": 1619268601,
+ "pre_dy_id": 517241610091321208,
+ "orig_dy_id": 517241610091321208,
+ "orig_type": 2,
+ "user_profile": {
+ "info": {
+ "uid": 255495142,
+ "uname": "坐怀不乱登徒子",
+ "face": "https://i1.hdslb.com/bfs/face/fa18d118f6c58da704400909743fb895c4c47627.jpg"
+ },
+ "card": {
+ "official_verify": {
+ "type": -1,
+ "desc": ""
+ }
+ },
+ "vip": {
+ "vipType": 2,
+ "vipDueDate": 1626451200000,
+ "vipStatus": 1,
+ "themeType": 0,
+ "label": {
+ "path": "",
+ "text": "年度大会员",
+ "label_theme": "annual_vip",
+ "text_color": "#FFFFFF",
+ "bg_style": 1,
+ "bg_color": "#FB7299",
+ "border_color": ""
+ },
+ "avatar_subscript": 1,
+ "nickname_color": "#FB7299",
+ "role": 3,
+ "avatar_subscript_url": "https://i0.hdslb.com/bfs/vip/icon_Certification_big_member_22_3x.png"
+ },
+ "pendant": {
+ "pid": 204,
+ "name": "至高守护",
+ "image": "https://i1.hdslb.com/bfs/face/88162662c23c2768c9e9e5c25017375685e83798.png",
+ "expire": 0,
+ "image_enhance": "https://i1.hdslb.com/bfs/face/88162662c23c2768c9e9e5c25017375685e83798.png",
+ "image_enhance_frame": ""
+ },
+ "rank": "10000",
+ "sign": "",
+ "level_info": {
+ "current_level": 5
+ }
+ },
+ "uid_type": 1,
+ "recommend_info": {
+ "is_attention": 0
+ },
+ "stype": 0,
+ "r_type": 1,
+ "inner_id": 0,
+ "topic_board": "C",
+ "topic_board_desc": "最新",
+ "status": 1,
+ "dynamic_id_str": "517243774755903256",
+ "pre_dy_id_str": "517241610091321208",
+ "orig_dy_id_str": "517241610091321208",
+ "rid_str": "517243774753706830",
+ "origin": {
+ "uid": 326499679,
+ "type": 2,
+ "rid": 131403515,
+ "acl": 1024,
+ "view": 1962092,
+ "repost": 16607,
+ "comment": 1020,
+ "like": 7002,
+ "is_liked": 0,
+ "dynamic_id": 517241610091321208,
+ "timestamp": 1619268097,
+ "user_profile": {
+ "info": {
+ "uid": 326499679,
+ "uname": "哔哩哔哩漫画",
+ "face": "https://i1.hdslb.com/bfs/face/2254162161a60b528cfec449f3450409a81ebc37.jpg"
+ },
+ "card": {
+ "official_verify": {
+ "type": 1,
+ "desc": "哔哩哔哩漫画官方账号"
+ }
+ },
+ "vip": {
+ "vipType": 2,
+ "vipDueDate": 1941033600000,
+ "vipStatus": 1,
+ "themeType": 0,
+ "label": {
+ "path": "",
+ "text": "十年大会员",
+ "label_theme": "ten_annual_vip",
+ "text_color": "#FFFFFF",
+ "bg_style": 1,
+ "bg_color": "#FB7299",
+ "border_color": ""
+ },
+ "avatar_subscript": 1,
+ "nickname_color": "#FB7299",
+ "role": 7,
+ "avatar_subscript_url": "https://i0.hdslb.com/bfs/vip/icon_Certification_big_member_22_3x.png"
+ },
+ "pendant": {
+ "pid": 0,
+ "name": "",
+ "image": "",
+ "expire": 0,
+ "image_enhance": "",
+ "image_enhance_frame": ""
+ },
+ "rank": "10000",
+ "sign": "↑ 【关注漫画姬】就送【漫读券5张】,当日或次日登录哔哩哔哩漫画APP即可领取,快来关注领券吧(°∀°)ノ ↑",
+ "level_info": {
+ "current_level": 6
+ }
+ },
+ "uid_type": 1,
+ "r_type": 1,
+ "status": 1,
+ "dynamic_id_str": "517241610091321208",
+ "pre_dy_id_str": "0",
+ "orig_dy_id_str": "0",
+ "rid_str": "131403515"
+ }
+ },
+ "card": "{ \"user\": { \"uid\": 255495142, \"uname\": \"坐怀不乱登徒子\", \"face\": \"https:\\/\\/i1.hdslb.com\\/bfs\\/face\\/fa18d118f6c58da704400909743fb895c4c47627.jpg\" }, \"item\": { \"rp_id\": 517243774753706830, \"uid\": 255495142, \"content\": \"冲冲冲#哔哩哔哩漫画#\", \"orig_dy_id\": 517241610091321208, \"pre_dy_id\": 517241610091321208, \"timestamp\": 1619268601, \"reply\": 0, \"orig_type\": 2 }, \"origin\": \"{\\\"item\\\":{\\\"at_control\\\":\\\"[{\\\\\\\"type\\\\\\\":2,\\\\\\\"location\\\\\\\":0,\\\\\\\"length\\\\\\\":0,\\\\\\\"data\\\\\\\":\\\\\\\"5\\\\\\\"}]\\\",\\\"category\\\":\\\"daily\\\",\\\"description\\\":\\\"互动抽奖 【关+转】抽1位小伙伴送【哔哩哔哩小电视兔子包】~\\\\n【#哔哩哔哩漫画# 作品推荐】大量西幻少女漫爆更来啦———\\\\n[干杯] 即日起,《重生成为公爵家的丑女》《暴君的监护人是反派魔女》《姐姐捡回了男主》等大量西幻少女精品漫画爆更,追漫更有樱花立牌\\\\\\/玩偶等福利好礼相送!\\\\n[干杯] 快来哔哩哔哩漫画追漫吧~\\\",\\\"id\\\":131403515,\\\"is_fav\\\":0,\\\"pictures\\\":[{\\\"img_height\\\":1357,\\\"img_size\\\":1759.1650390625,\\\"img_src\\\":\\\"https:\\\\\\/\\\\\\/i0.hdslb.com\\\\\\/bfs\\\\\\/album\\\\\\/1ce565e7f36e0ae5a3809df21bb39aa2fe578a88.png\\\",\\\"img_tags\\\":null,\\\"img_width\\\":1080},{\\\"img_height\\\":1238,\\\"img_size\\\":832.51953125,\\\"img_src\\\":\\\"https:\\\\\\/\\\\\\/i0.hdslb.com\\\\\\/bfs\\\\\\/album\\\\\\/6df0150c77a7f42a5d31cce8bb006105a660dad9.png\\\",\\\"img_tags\\\":null,\\\"img_width\\\":1080},{\\\"img_height\\\":2193,\\\"img_size\\\":3424.060546875,\\\"img_src\\\":\\\"https:\\\\\\/\\\\\\/i0.hdslb.com\\\\\\/bfs\\\\\\/album\\\\\\/adce81c59436184b56d84e5394583d2ab491b2e6.png\\\",\\\"img_tags\\\":null,\\\"img_width\\\":1080},{\\\"img_height\\\":800,\\\"img_size\\\":166.1552734375,\\\"img_src\\\":\\\"https:\\\\\\/\\\\\\/i0.hdslb.com\\\\\\/bfs\\\\\\/album\\\\\\/9c4e8d6fc04d5a1f3df225d5967fb65c7a3f5f09.jpg\\\",\\\"img_tags\\\":null,\\\"img_width\\\":800}],\\\"pictures_count\\\":4,\\\"reply\\\":1020,\\\"role\\\":[],\\\"settings\\\":{\\\"copy_forbidden\\\":\\\"0\\\"},\\\"source\\\":[],\\\"title\\\":\\\"\\\",\\\"upload_time\\\":1619268097},\\\"user\\\":{\\\"head_url\\\":\\\"https:\\\\\\/\\\\\\/i1.hdslb.com\\\\\\/bfs\\\\\\/face\\\\\\/2254162161a60b528cfec449f3450409a81ebc37.jpg\\\",\\\"name\\\":\\\"哔哩哔哩漫画\\\",\\\"uid\\\":326499679,\\\"vip\\\":{\\\"avatar_subscript\\\":1,\\\"due_date\\\":1941033600000,\\\"label\\\":{\\\"label_theme\\\":\\\"ten_annual_vip\\\",\\\"path\\\":\\\"\\\",\\\"text\\\":\\\"十年大会员\\\"},\\\"nickname_color\\\":\\\"#FB7299\\\",\\\"status\\\":1,\\\"theme_type\\\":0,\\\"type\\\":2,\\\"vip_pay_type\\\":0}}}\", \"origin_extension\": { \"lott\": \"{\\\"callbackId\\\":10,\\\"lottery_id\\\":61382,\\\"lottery_time\\\":1620504000,\\\"title\\\":\\\"互动抽奖\\\"}\" }, \"origin_extend_json\": \"{\\\"ctrl\\\":[{\\\"data\\\":\\\"5\\\",\\\"length\\\":0,\\\"location\\\":0,\\\"type\\\":2}],\\\"from\\\":{\\\"emoji_type\\\":1,\\\"from\\\":\\\"\\\",\\\"up_close_comment\\\":0,\\\"verify\\\":{\\\"asw\\\":{\\\"fl\\\":15,\\\"nv\\\":1},\\\"cc\\\":{\\\"vf\\\":1},\\\"sw\\\":{\\\"fl\\\":15,\\\"nv\\\":1}}},\\\"like_icon\\\":{\\\"action\\\":\\\"\\\",\\\"action_url\\\":\\\"\\\",\\\"end\\\":\\\"\\\",\\\"end_url\\\":\\\"\\\",\\\"start\\\":\\\"\\\",\\\"start_url\\\":\\\"\\\"},\\\"lott\\\":{\\\"callbackId\\\":10,\\\"lottery_id\\\":61382,\\\"lottery_time\\\":1620504000,\\\"title\\\":\\\"互动抽奖\\\"},\\\"topic\\\":{\\\"is_attach_topic\\\":1}}\", \"origin_user\": { \"info\": { \"uid\": 326499679, \"uname\": \"哔哩哔哩漫画\", \"face\": \"https:\\/\\/i1.hdslb.com\\/bfs\\/face\\/2254162161a60b528cfec449f3450409a81ebc37.jpg\" }, \"card\": { \"official_verify\": { \"type\": 1, \"desc\": \"哔哩哔哩漫画官方账号\" } }, \"vip\": { \"vipType\": 2, \"vipDueDate\": 1941033600000, \"vipStatus\": 1, \"themeType\": 0, \"label\": { \"path\": \"\", \"text\": \"十年大会员\", \"label_theme\": \"ten_annual_vip\", \"text_color\": \"#FFFFFF\", \"bg_style\": 1, \"bg_color\": \"#FB7299\", \"border_color\": \"\" }, \"avatar_subscript\": 1, \"nickname_color\": \"#FB7299\", \"role\": 7, \"avatar_subscript_url\": \"https:\\/\\/i0.hdslb.com\\/bfs\\/vip\\/icon_Certification_big_member_22_3x.png\" }, \"pendant\": { \"pid\": 0, \"name\": \"\", \"image\": \"\", \"expire\": 0, \"image_enhance\": \"\", \"image_enhance_frame\": \"\" }, \"rank\": \"10000\", \"sign\": \"↑ 【关注漫画姬】就送【漫读券5张】,当日或次日登录哔哩哔哩漫画APP即可领取,快来关注领券吧(°∀°)ノ ↑\", \"level_info\": { \"current_level\": 6 } } }",
+ "extend_json": "{\"from\":{\"emoji_type\":1,\"from\":\"create.comment\",\"up_close_comment\":0},\"like_icon\":{\"action\":\"\",\"action_url\":\"\",\"end\":\"\",\"end_url\":\"\",\"start\":\"\",\"start_url\":\"\"},\"topic\":{\"is_attach_topic\":1}}",
+ "display": {
+ "topic_info": {
+ "topic_details": [
+ {
+ "topic_id": 7539944,
+ "topic_name": "哔哩哔哩漫画",
+ "is_activity": 0,
+ "topic_link": ""
+ }
+ ]
+ },
+ "origin": {
+ "topic_info": {
+ "topic_details": [
+ {
+ "topic_id": 7539944,
+ "topic_name": "哔哩哔哩漫画",
+ "is_activity": 0,
+ "topic_link": ""
+ }
+ ]
+ },
+ "emoji_info": {
+ "emoji_details": [
+ {
+ "emoji_name": "[干杯]",
+ "id": 1949,
+ "package_id": 1,
+ "state": 0,
+ "type": 1,
+ "attr": 0,
+ "text": "[干杯]",
+ "url": "https://i0.hdslb.com/bfs/emote/8da12d5f55a2c7e9778dcc05b40571979fe208e6.png",
+ "meta": {
+ "size": 1
+ },
+ "mtime": 1597738918
+ }
+ ]
+ },
+ "relation": {
+ "status": 1,
+ "is_follow": 0,
+ "is_followed": 0
+ },
+ "show_tip": {
+ "del_tip": "要删除动态吗?"
+ }
+ },
+ "relation": {
+ "status": 1,
+ "is_follow": 0,
+ "is_followed": 0
+ },
+ "up_act_button": {
+ "report_title": "举报",
+ "founder_report_title": "举报(发起人)",
+ "top_title": "置顶",
+ "top_confirm_title": "确定将此动态置顶吗",
+ "top_cancel_title": "确定将此动态取消置顶吗"
+ },
+ "show_tip": {
+ "del_tip": "要删除动态吗?"
+ }
+ }
+ },
+ {
+ "desc": {
+ "uid": 335270851,
+ "type": 1,
+ "rid": 517243658786443535,
+ "acl": 0,
+ "view": 25,
+ "repost": 0,
+ "comment": 0,
+ "like": 1,
+ "is_liked": 0,
+ "dynamic_id": 517243658790736702,
+ "timestamp": 1619268574,
+ "pre_dy_id": 517241610091321208,
+ "orig_dy_id": 517241610091321208,
+ "orig_type": 2,
+ "user_profile": {
+ "info": {
+ "uid": 335270851,
+ "uname": "符号门",
+ "face": "https://i1.hdslb.com/bfs/face/67371311c9e047543a70c1d41e7a03c3854f2981.jpg"
+ },
+ "card": {
+ "official_verify": {
+ "type": -1,
+ "desc": ""
+ }
+ },
+ "vip": {
+ "vipType": 2,
+ "vipDueDate": 1647014400000,
+ "vipStatus": 1,
+ "themeType": 0,
+ "label": {
+ "path": "",
+ "text": "年度大会员",
+ "label_theme": "annual_vip",
+ "text_color": "#FFFFFF",
+ "bg_style": 1,
+ "bg_color": "#FB7299",
+ "border_color": ""
+ },
+ "avatar_subscript": 1,
+ "nickname_color": "#FB7299",
+ "role": 3,
+ "avatar_subscript_url": "https://i0.hdslb.com/bfs/vip/icon_Certification_big_member_22_3x.png"
+ },
+ "pendant": {
+ "pid": 0,
+ "name": "",
+ "image": "",
+ "expire": 0,
+ "image_enhance": "",
+ "image_enhance_frame": ""
+ },
+ "rank": "10000",
+ "sign": "",
+ "level_info": {
+ "current_level": 4
+ }
+ },
+ "uid_type": 1,
+ "recommend_info": {
+ "is_attention": 0
+ },
+ "stype": 0,
+ "r_type": 1,
+ "inner_id": 0,
+ "topic_board": "C",
+ "topic_board_desc": "最新",
+ "status": 1,
+ "dynamic_id_str": "517243658790736702",
+ "pre_dy_id_str": "517241610091321208",
+ "orig_dy_id_str": "517241610091321208",
+ "rid_str": "517243658786443535",
+ "origin": {
+ "uid": 326499679,
+ "type": 2,
+ "rid": 131403515,
+ "acl": 1024,
+ "view": 1962092,
+ "repost": 16607,
+ "comment": 1020,
+ "like": 7002,
+ "is_liked": 0,
+ "dynamic_id": 517241610091321208,
+ "timestamp": 1619268097,
+ "user_profile": {
+ "info": {
+ "uid": 326499679,
+ "uname": "哔哩哔哩漫画",
+ "face": "https://i1.hdslb.com/bfs/face/2254162161a60b528cfec449f3450409a81ebc37.jpg"
+ },
+ "card": {
+ "official_verify": {
+ "type": 1,
+ "desc": "哔哩哔哩漫画官方账号"
+ }
+ },
+ "vip": {
+ "vipType": 2,
+ "vipDueDate": 1941033600000,
+ "vipStatus": 1,
+ "themeType": 0,
+ "label": {
+ "path": "",
+ "text": "十年大会员",
+ "label_theme": "ten_annual_vip",
+ "text_color": "#FFFFFF",
+ "bg_style": 1,
+ "bg_color": "#FB7299",
+ "border_color": ""
+ },
+ "avatar_subscript": 1,
+ "nickname_color": "#FB7299",
+ "role": 7,
+ "avatar_subscript_url": "https://i0.hdslb.com/bfs/vip/icon_Certification_big_member_22_3x.png"
+ },
+ "pendant": {
+ "pid": 0,
+ "name": "",
+ "image": "",
+ "expire": 0,
+ "image_enhance": "",
+ "image_enhance_frame": ""
+ },
+ "rank": "10000",
+ "sign": "↑ 【关注漫画姬】就送【漫读券5张】,当日或次日登录哔哩哔哩漫画APP即可领取,快来关注领券吧(°∀°)ノ ↑",
+ "level_info": {
+ "current_level": 6
+ }
+ },
+ "uid_type": 1,
+ "r_type": 1,
+ "status": 1,
+ "dynamic_id_str": "517241610091321208",
+ "pre_dy_id_str": "0",
+ "orig_dy_id_str": "0",
+ "rid_str": "131403515"
+ }
+ },
+ "card": "{ \"user\": { \"uid\": 335270851, \"uname\": \"符号门\", \"face\": \"https:\\/\\/i1.hdslb.com\\/bfs\\/face\\/67371311c9e047543a70c1d41e7a03c3854f2981.jpg\" }, \"item\": { \"rp_id\": 517243658786443535, \"uid\": 335270851, \"content\": \"#哔哩哔哩漫画#[打call][打call][打call]\", \"orig_dy_id\": 517241610091321208, \"pre_dy_id\": 517241610091321208, \"timestamp\": 1619268574, \"reply\": 0, \"orig_type\": 2 }, \"origin\": \"{\\\"item\\\":{\\\"at_control\\\":\\\"[{\\\\\\\"type\\\\\\\":2,\\\\\\\"location\\\\\\\":0,\\\\\\\"length\\\\\\\":0,\\\\\\\"data\\\\\\\":\\\\\\\"5\\\\\\\"}]\\\",\\\"category\\\":\\\"daily\\\",\\\"description\\\":\\\"互动抽奖 【关+转】抽1位小伙伴送【哔哩哔哩小电视兔子包】~\\\\n【#哔哩哔哩漫画# 作品推荐】大量西幻少女漫爆更来啦———\\\\n[干杯] 即日起,《重生成为公爵家的丑女》《暴君的监护人是反派魔女》《姐姐捡回了男主》等大量西幻少女精品漫画爆更,追漫更有樱花立牌\\\\\\/玩偶等福利好礼相送!\\\\n[干杯] 快来哔哩哔哩漫画追漫吧~\\\",\\\"id\\\":131403515,\\\"is_fav\\\":0,\\\"pictures\\\":[{\\\"img_height\\\":1357,\\\"img_size\\\":1759.1650390625,\\\"img_src\\\":\\\"https:\\\\\\/\\\\\\/i0.hdslb.com\\\\\\/bfs\\\\\\/album\\\\\\/1ce565e7f36e0ae5a3809df21bb39aa2fe578a88.png\\\",\\\"img_tags\\\":null,\\\"img_width\\\":1080},{\\\"img_height\\\":1238,\\\"img_size\\\":832.51953125,\\\"img_src\\\":\\\"https:\\\\\\/\\\\\\/i0.hdslb.com\\\\\\/bfs\\\\\\/album\\\\\\/6df0150c77a7f42a5d31cce8bb006105a660dad9.png\\\",\\\"img_tags\\\":null,\\\"img_width\\\":1080},{\\\"img_height\\\":2193,\\\"img_size\\\":3424.060546875,\\\"img_src\\\":\\\"https:\\\\\\/\\\\\\/i0.hdslb.com\\\\\\/bfs\\\\\\/album\\\\\\/adce81c59436184b56d84e5394583d2ab491b2e6.png\\\",\\\"img_tags\\\":null,\\\"img_width\\\":1080},{\\\"img_height\\\":800,\\\"img_size\\\":166.1552734375,\\\"img_src\\\":\\\"https:\\\\\\/\\\\\\/i0.hdslb.com\\\\\\/bfs\\\\\\/album\\\\\\/9c4e8d6fc04d5a1f3df225d5967fb65c7a3f5f09.jpg\\\",\\\"img_tags\\\":null,\\\"img_width\\\":800}],\\\"pictures_count\\\":4,\\\"reply\\\":1020,\\\"role\\\":[],\\\"settings\\\":{\\\"copy_forbidden\\\":\\\"0\\\"},\\\"source\\\":[],\\\"title\\\":\\\"\\\",\\\"upload_time\\\":1619268097},\\\"user\\\":{\\\"head_url\\\":\\\"https:\\\\\\/\\\\\\/i1.hdslb.com\\\\\\/bfs\\\\\\/face\\\\\\/2254162161a60b528cfec449f3450409a81ebc37.jpg\\\",\\\"name\\\":\\\"哔哩哔哩漫画\\\",\\\"uid\\\":326499679,\\\"vip\\\":{\\\"avatar_subscript\\\":1,\\\"due_date\\\":1941033600000,\\\"label\\\":{\\\"label_theme\\\":\\\"ten_annual_vip\\\",\\\"path\\\":\\\"\\\",\\\"text\\\":\\\"十年大会员\\\"},\\\"nickname_color\\\":\\\"#FB7299\\\",\\\"status\\\":1,\\\"theme_type\\\":0,\\\"type\\\":2,\\\"vip_pay_type\\\":0}}}\", \"origin_extension\": { \"lott\": \"{\\\"callbackId\\\":10,\\\"lottery_id\\\":61382,\\\"lottery_time\\\":1620504000,\\\"title\\\":\\\"互动抽奖\\\"}\" }, \"origin_extend_json\": \"{\\\"ctrl\\\":[{\\\"data\\\":\\\"5\\\",\\\"length\\\":0,\\\"location\\\":0,\\\"type\\\":2}],\\\"from\\\":{\\\"emoji_type\\\":1,\\\"from\\\":\\\"\\\",\\\"up_close_comment\\\":0,\\\"verify\\\":{\\\"asw\\\":{\\\"fl\\\":15,\\\"nv\\\":1},\\\"cc\\\":{\\\"vf\\\":1},\\\"sw\\\":{\\\"fl\\\":15,\\\"nv\\\":1}}},\\\"like_icon\\\":{\\\"action\\\":\\\"\\\",\\\"action_url\\\":\\\"\\\",\\\"end\\\":\\\"\\\",\\\"end_url\\\":\\\"\\\",\\\"start\\\":\\\"\\\",\\\"start_url\\\":\\\"\\\"},\\\"lott\\\":{\\\"callbackId\\\":10,\\\"lottery_id\\\":61382,\\\"lottery_time\\\":1620504000,\\\"title\\\":\\\"互动抽奖\\\"},\\\"topic\\\":{\\\"is_attach_topic\\\":1}}\", \"origin_user\": { \"info\": { \"uid\": 326499679, \"uname\": \"哔哩哔哩漫画\", \"face\": \"https:\\/\\/i1.hdslb.com\\/bfs\\/face\\/2254162161a60b528cfec449f3450409a81ebc37.jpg\" }, \"card\": { \"official_verify\": { \"type\": 1, \"desc\": \"哔哩哔哩漫画官方账号\" } }, \"vip\": { \"vipType\": 2, \"vipDueDate\": 1941033600000, \"vipStatus\": 1, \"themeType\": 0, \"label\": { \"path\": \"\", \"text\": \"十年大会员\", \"label_theme\": \"ten_annual_vip\", \"text_color\": \"#FFFFFF\", \"bg_style\": 1, \"bg_color\": \"#FB7299\", \"border_color\": \"\" }, \"avatar_subscript\": 1, \"nickname_color\": \"#FB7299\", \"role\": 7, \"avatar_subscript_url\": \"https:\\/\\/i0.hdslb.com\\/bfs\\/vip\\/icon_Certification_big_member_22_3x.png\" }, \"pendant\": { \"pid\": 0, \"name\": \"\", \"image\": \"\", \"expire\": 0, \"image_enhance\": \"\", \"image_enhance_frame\": \"\" }, \"rank\": \"10000\", \"sign\": \"↑ 【关注漫画姬】就送【漫读券5张】,当日或次日登录哔哩哔哩漫画APP即可领取,快来关注领券吧(°∀°)ノ ↑\", \"level_info\": { \"current_level\": 6 } } }",
+ "extend_json": "{\"from\":{\"emoji_type\":1,\"up_close_comment\":0},\"like_icon\":{\"action\":\"\",\"action_url\":\"\",\"end\":\"\",\"end_url\":\"\",\"start\":\"\",\"start_url\":\"\"},\"topic\":{\"is_attach_topic\":1}}",
+ "display": {
+ "topic_info": {
+ "topic_details": [
+ {
+ "topic_id": 7539944,
+ "topic_name": "哔哩哔哩漫画",
+ "is_activity": 0,
+ "topic_link": ""
+ }
+ ]
+ },
+ "origin": {
+ "topic_info": {
+ "topic_details": [
+ {
+ "topic_id": 7539944,
+ "topic_name": "哔哩哔哩漫画",
+ "is_activity": 0,
+ "topic_link": ""
+ }
+ ]
+ },
+ "emoji_info": {
+ "emoji_details": [
+ {
+ "emoji_name": "[干杯]",
+ "id": 1949,
+ "package_id": 1,
+ "state": 0,
+ "type": 1,
+ "attr": 0,
+ "text": "[干杯]",
+ "url": "https://i0.hdslb.com/bfs/emote/8da12d5f55a2c7e9778dcc05b40571979fe208e6.png",
+ "meta": {
+ "size": 1
+ },
+ "mtime": 1597738918
+ }
+ ]
+ },
+ "relation": {
+ "status": 1,
+ "is_follow": 0,
+ "is_followed": 0
+ },
+ "show_tip": {
+ "del_tip": "要删除动态吗?"
+ }
+ },
+ "emoji_info": {
+ "emoji_details": [
+ {
+ "emoji_name": "[打call]",
+ "id": 510,
+ "package_id": 1,
+ "state": 0,
+ "type": 1,
+ "attr": 0,
+ "text": "[打call]",
+ "url": "https://i0.hdslb.com/bfs/emote/431432c43da3ee5aab5b0e4f8931953e649e9975.png",
+ "meta": {
+ "size": 1
+ },
+ "mtime": 1617293741
+ }
+ ]
+ },
+ "relation": {
+ "status": 1,
+ "is_follow": 0,
+ "is_followed": 0
+ },
+ "up_act_button": {
+ "report_title": "举报",
+ "founder_report_title": "举报(发起人)",
+ "top_title": "置顶",
+ "top_confirm_title": "确定将此动态置顶吗",
+ "top_cancel_title": "确定将此动态取消置顶吗"
+ },
+ "show_tip": {
+ "del_tip": "要删除动态吗?"
+ }
+ }
+ },
+ {
+ "desc": {
+ "uid": 326499679,
+ "type": 2,
+ "rid": 131403515,
+ "acl": 1024,
+ "view": 1962092,
+ "repost": 16607,
+ "comment": 1020,
+ "like": 7002,
+ "is_liked": 0,
+ "dynamic_id": 517241610091321208,
+ "timestamp": 1619268097,
+ "orig_type": 0,
+ "user_profile": {
+ "info": {
+ "uid": 326499679,
+ "uname": "哔哩哔哩漫画",
+ "face": "https://i1.hdslb.com/bfs/face/2254162161a60b528cfec449f3450409a81ebc37.jpg"
+ },
+ "card": {
+ "official_verify": {
+ "type": 1,
+ "desc": "哔哩哔哩漫画官方账号"
+ }
+ },
+ "vip": {
+ "vipType": 2,
+ "vipDueDate": 1941033600000,
+ "vipStatus": 1,
+ "themeType": 0,
+ "label": {
+ "path": "",
+ "text": "十年大会员",
+ "label_theme": "ten_annual_vip",
+ "text_color": "#FFFFFF",
+ "bg_style": 1,
+ "bg_color": "#FB7299",
+ "border_color": ""
+ },
+ "avatar_subscript": 1,
+ "nickname_color": "#FB7299",
+ "role": 7,
+ "avatar_subscript_url": "https://i0.hdslb.com/bfs/vip/icon_Certification_big_member_22_3x.png"
+ },
+ "pendant": {
+ "pid": 0,
+ "name": "",
+ "image": "",
+ "expire": 0,
+ "image_enhance": "",
+ "image_enhance_frame": ""
+ },
+ "rank": "10000",
+ "sign": "↑ 【关注漫画姬】就送【漫读券5张】,当日或次日登录哔哩哔哩漫画APP即可领取,快来关注领券吧(°∀°)ノ ↑",
+ "level_info": {
+ "current_level": 6
+ }
+ },
+ "uid_type": 1,
+ "recommend_info": {
+ "is_attention": 0
+ },
+ "r_type": 1,
+ "topic_board": "C",
+ "topic_board_desc": "最新",
+ "status": 1,
+ "dynamic_id_str": "517241610091321208",
+ "pre_dy_id_str": "0",
+ "orig_dy_id_str": "0",
+ "rid_str": "131403515"
+ },
+ "card": "{\"item\":{\"at_control\":\"[{\\\"type\\\":2,\\\"location\\\":0,\\\"length\\\":0,\\\"data\\\":\\\"5\\\"}]\",\"category\":\"daily\",\"description\":\"互动抽奖 【关+转】抽1位小伙伴送【哔哩哔哩小电视兔子包】~\\n【#哔哩哔哩漫画# 作品推荐】大量西幻少女漫爆更来啦———\\n[干杯] 即日起,《重生成为公爵家的丑女》《暴君的监护人是反派魔女》《姐姐捡回了男主》等大量西幻少女精品漫画爆更,追漫更有樱花立牌\\/玩偶等福利好礼相送!\\n[干杯] 快来哔哩哔哩漫画追漫吧~\",\"id\":131403515,\"is_fav\":0,\"pictures\":[{\"img_height\":1357,\"img_size\":1759.1650390625,\"img_src\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/album\\/1ce565e7f36e0ae5a3809df21bb39aa2fe578a88.png\",\"img_tags\":null,\"img_width\":1080},{\"img_height\":1238,\"img_size\":832.51953125,\"img_src\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/album\\/6df0150c77a7f42a5d31cce8bb006105a660dad9.png\",\"img_tags\":null,\"img_width\":1080},{\"img_height\":2193,\"img_size\":3424.060546875,\"img_src\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/album\\/adce81c59436184b56d84e5394583d2ab491b2e6.png\",\"img_tags\":null,\"img_width\":1080},{\"img_height\":800,\"img_size\":166.1552734375,\"img_src\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/album\\/9c4e8d6fc04d5a1f3df225d5967fb65c7a3f5f09.jpg\",\"img_tags\":null,\"img_width\":800}],\"pictures_count\":4,\"reply\":1020,\"role\":[],\"settings\":{\"copy_forbidden\":\"0\"},\"source\":[],\"title\":\"\",\"upload_time\":1619268097},\"user\":{\"head_url\":\"https:\\/\\/i1.hdslb.com\\/bfs\\/face\\/2254162161a60b528cfec449f3450409a81ebc37.jpg\",\"name\":\"哔哩哔哩漫画\",\"uid\":326499679,\"vip\":{\"avatar_subscript\":1,\"due_date\":1941033600000,\"label\":{\"label_theme\":\"ten_annual_vip\",\"path\":\"\",\"text\":\"十年大会员\"},\"nickname_color\":\"#FB7299\",\"status\":1,\"theme_type\":0,\"type\":2,\"vip_pay_type\":0}}}",
+ "extension": {
+ "lott": "{\"callbackId\":10,\"lottery_id\":61382,\"lottery_time\":1620504000,\"title\":\"互动抽奖\"}"
+ },
+ "extend_json": "{\"ctrl\":[{\"data\":\"5\",\"length\":0,\"location\":0,\"type\":2}],\"from\":{\"emoji_type\":1,\"from\":\"\",\"up_close_comment\":0,\"verify\":{\"asw\":{\"fl\":15,\"nv\":1},\"cc\":{\"vf\":1},\"sw\":{\"fl\":15,\"nv\":1}}},\"like_icon\":{\"action\":\"\",\"action_url\":\"\",\"end\":\"\",\"end_url\":\"\",\"start\":\"\",\"start_url\":\"\"},\"lott\":{\"callbackId\":10,\"lottery_id\":61382,\"lottery_time\":1620504000,\"title\":\"互动抽奖\"},\"topic\":{\"is_attach_topic\":1}}",
+ "display": {
+ "topic_info": {
+ "topic_details": [
+ {
+ "topic_id": 7539944,
+ "topic_name": "哔哩哔哩漫画",
+ "is_activity": 0,
+ "topic_link": ""
+ }
+ ]
+ },
+ "emoji_info": {
+ "emoji_details": [
+ {
+ "emoji_name": "[干杯]",
+ "id": 1949,
+ "package_id": 1,
+ "state": 0,
+ "type": 1,
+ "attr": 0,
+ "text": "[干杯]",
+ "url": "https://i0.hdslb.com/bfs/emote/8da12d5f55a2c7e9778dcc05b40571979fe208e6.png",
+ "meta": {
+ "size": 1
+ },
+ "mtime": 1597738918
+ }
+ ]
+ },
+ "relation": {
+ "status": 1,
+ "is_follow": 0,
+ "is_followed": 0
+ },
+ "up_act_button": {
+ "report_title": "举报",
+ "founder_report_title": "举报(发起人)",
+ "top_title": "置顶",
+ "top_confirm_title": "确定将此动态置顶吗",
+ "top_cancel_title": "确定将此动态取消置顶吗"
+ },
+ "show_tip": {
+ "del_tip": "要删除动态吗?"
+ }
+ }
+ },
+ {
+ "desc": {
+ "uid": 326499679,
+ "type": 2,
+ "rid": 131384529,
+ "acl": 0,
+ "view": 1605629,
+ "repost": 5,
+ "comment": 63,
+ "like": 4631,
+ "is_liked": 0,
+ "dynamic_id": 517215462328123502,
+ "timestamp": 1619262009,
+ "pre_dy_id": 0,
+ "orig_dy_id": 0,
+ "orig_type": 0,
+ "user_profile": {
+ "info": {
+ "uid": 326499679,
+ "uname": "哔哩哔哩漫画",
+ "face": "https://i1.hdslb.com/bfs/face/2254162161a60b528cfec449f3450409a81ebc37.jpg"
+ },
+ "card": {
+ "official_verify": {
+ "type": 1,
+ "desc": "哔哩哔哩漫画官方账号"
+ }
+ },
+ "vip": {
+ "vipType": 2,
+ "vipDueDate": 1941033600000,
+ "vipStatus": 1,
+ "themeType": 0,
+ "label": {
+ "path": "",
+ "text": "十年大会员",
+ "label_theme": "ten_annual_vip",
+ "text_color": "#FFFFFF",
+ "bg_style": 1,
+ "bg_color": "#FB7299",
+ "border_color": ""
+ },
+ "avatar_subscript": 1,
+ "nickname_color": "#FB7299",
+ "role": 7,
+ "avatar_subscript_url": "https://i0.hdslb.com/bfs/vip/icon_Certification_big_member_22_3x.png"
+ },
+ "pendant": {
+ "pid": 0,
+ "name": "",
+ "image": "",
+ "expire": 0,
+ "image_enhance": "",
+ "image_enhance_frame": ""
+ },
+ "rank": "10000",
+ "sign": "↑ 【关注漫画姬】就送【漫读券5张】,当日或次日登录哔哩哔哩漫画APP即可领取,快来关注领券吧(°∀°)ノ ↑",
+ "level_info": {
+ "current_level": 6
+ }
+ },
+ "uid_type": 1,
+ "recommend_info": {
+ "is_attention": 0
+ },
+ "stype": 0,
+ "r_type": 1,
+ "inner_id": 0,
+ "topic_board": "C",
+ "topic_board_desc": "最新",
+ "status": 1,
+ "dynamic_id_str": "517215462328123502",
+ "pre_dy_id_str": "0",
+ "orig_dy_id_str": "0",
+ "rid_str": "131384529"
+ },
+ "card": "{\"item\":{\"at_control\":\"\",\"category\":\"daily\",\"description\":\"【#哔哩哔哩漫画# 近期更新】(`・ω・´)\\nP1《#辉夜大小姐想让我告白# ~天才们的恋爱头脑战~ 》:https:\\/\\/manga.bilibili.com\\/m\\/detail\\/mc26009\\nP2《#入间同学入魔了#!》:https:\\/\\/manga.bilibili.com\\/m\\/detail\\/mc27189\\nP3《催眠麦克风-Division Rap Battle- side D.H&B.A.T》\\nP4《他和她的魔法契约》\\nP5《瓦尼塔斯的手记》\\nP6《见面5秒开始战斗》\\nP7《魔气来袭》\\nP8《尖帽子的魔法工坊》 \",\"id\":131384529,\"is_fav\":0,\"pictures\":[{\"img_height\":2920,\"img_size\":1993.103515625,\"img_src\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/album\\/24a3e5d04e8ad86fcdae48e6ee88f90a0351f82d.jpg\",\"img_tags\":null,\"img_width\":2000},{\"img_height\":2872,\"img_size\":2453.1513671875,\"img_src\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/album\\/d512d771dd3f91b54733f104e5de7e38d61ef56c.jpg\",\"img_tags\":null,\"img_width\":2000},{\"img_height\":2806,\"img_size\":4156.140625,\"img_src\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/album\\/119fe01717120eb9c8c04d2c48a22298c8f88d17.jpg\",\"img_tags\":null,\"img_width\":2000},{\"img_height\":1147,\"img_size\":152.23046875,\"img_src\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/album\\/d2fb2a6d2229a03ea967ee2182faefd67b0811fd.jpg\",\"img_tags\":null,\"img_width\":800},{\"img_height\":2637,\"img_size\":10432.2978515625,\"img_src\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/album\\/e8966e96d34938474eebfcf60f38e14932e09be4.jpg\",\"img_tags\":null,\"img_width\":3600},{\"img_height\":2268,\"img_size\":6175.017578125,\"img_src\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/album\\/4ed99d7329108e9e585db49da63a56bdcf7e8670.jpg\",\"img_tags\":null,\"img_width\":3200},{\"img_height\":1461,\"img_size\":283.990234375,\"img_src\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/album\\/a8f37ec732103b1912fd3448d06d610cae5486df.jpg\",\"img_tags\":null,\"img_width\":800},{\"img_height\":2871,\"img_size\":3639.478515625,\"img_src\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/album\\/fe8e58fd4f7c7063f880f064b3366e758dbfd7ee.jpg\",\"img_tags\":null,\"img_width\":2000}],\"pictures_count\":8,\"reply\":63,\"role\":[],\"settings\":{\"copy_forbidden\":\"0\"},\"source\":[],\"title\":\"\",\"upload_time\":1619262009},\"user\":{\"head_url\":\"https:\\/\\/i1.hdslb.com\\/bfs\\/face\\/2254162161a60b528cfec449f3450409a81ebc37.jpg\",\"name\":\"哔哩哔哩漫画\",\"uid\":326499679,\"vip\":{\"avatar_subscript\":1,\"due_date\":1941033600000,\"label\":{\"label_theme\":\"ten_annual_vip\",\"path\":\"\",\"text\":\"十年大会员\"},\"nickname_color\":\"#FB7299\",\"status\":1,\"theme_type\":0,\"type\":2,\"vip_pay_type\":0}}}",
+ "extend_json": "{\"from\":{\"emoji_type\":1,\"from\":\"timer.publish\",\"up_close_comment\":0,\"verify\":{\"cc\":{\"nv\":1}}},\"like_icon\":{\"action\":\"\",\"action_url\":\"\",\"end\":\"\",\"end_url\":\"\",\"start\":\"\",\"start_url\":\"\"},\"topic\":{\"is_attach_topic\":1}}",
+ "display": {
+ "topic_info": {
+ "topic_details": [
+ {
+ "topic_id": 7539944,
+ "topic_name": "哔哩哔哩漫画",
+ "is_activity": 0,
+ "topic_link": ""
+ },
+ {
+ "topic_id": 4386628,
+ "topic_name": "辉夜大小姐想让我告白",
+ "is_activity": 0,
+ "topic_link": ""
+ },
+ {
+ "topic_id": 8724199,
+ "topic_name": "入间同学入魔了",
+ "is_activity": 1,
+ "topic_link": "https://www.bilibili.com/blackboard/dynamic/69330"
+ }
+ ]
+ },
+ "relation": {
+ "status": 1,
+ "is_follow": 0,
+ "is_followed": 0
+ },
+ "up_act_button": {
+ "report_title": "举报",
+ "founder_report_title": "举报(发起人)",
+ "top_title": "置顶",
+ "top_confirm_title": "确定将此动态置顶吗",
+ "top_cancel_title": "确定将此动态取消置顶吗"
+ },
+ "show_tip": {
+ "del_tip": "要删除动态吗?"
+ }
+ }
+ },
+ {
+ "desc": {
+ "uid": 1572178656,
+ "type": 2,
+ "rid": 131375699,
+ "acl": 0,
+ "view": 13,
+ "repost": 0,
+ "comment": 0,
+ "like": 0,
+ "is_liked": 0,
+ "dynamic_id": 517200331161362689,
+ "timestamp": 1619258486,
+ "pre_dy_id": 0,
+ "orig_dy_id": 0,
+ "orig_type": 0,
+ "user_profile": {
+ "info": {
+ "uid": 1572178656,
+ "uname": "星宿战纪漫画",
+ "face": "https://i0.hdslb.com/bfs/face/f791586939dcbd3f19545af1e65c369983e63c39.jpg"
+ },
+ "card": {
+ "official_verify": {
+ "type": -1,
+ "desc": ""
+ }
+ },
+ "vip": {
+ "vipType": 0,
+ "vipDueDate": 0,
+ "vipStatus": 0,
+ "themeType": 0,
+ "label": {
+ "path": "",
+ "text": "",
+ "label_theme": "",
+ "text_color": "",
+ "bg_style": 0,
+ "bg_color": "",
+ "border_color": ""
+ },
+ "avatar_subscript": 0,
+ "nickname_color": "",
+ "role": 0,
+ "avatar_subscript_url": ""
+ },
+ "pendant": {
+ "pid": 0,
+ "name": "",
+ "image": "",
+ "expire": 0,
+ "image_enhance": "",
+ "image_enhance_frame": ""
+ },
+ "rank": "10000",
+ "sign": "",
+ "level_info": {
+ "current_level": 2
+ }
+ },
+ "uid_type": 1,
+ "recommend_info": {
+ "is_attention": 0
+ },
+ "stype": 0,
+ "r_type": 1,
+ "inner_id": 0,
+ "topic_board": "C",
+ "topic_board_desc": "最新",
+ "status": 1,
+ "dynamic_id_str": "517200331161362689",
+ "pre_dy_id_str": "0",
+ "orig_dy_id_str": "0",
+ "rid_str": "131375699"
+ },
+ "card": "{\"item\":{\"at_control\":\"\",\"category\":\"daily\",\"description\":\"#哔哩哔哩漫画# #星宿战纪# #星宿战纪漫画# #漫画# B漫:https:\\/\\/manga.bilibili.com\\/m\\/detail\\/mc29438\\n闭关修炼ing的小金蝉~可可爱爱[热词系列_奥力给]\",\"id\":131375699,\"is_fav\":0,\"pictures\":[{\"img_height\":593,\"img_size\":86.4052734375,\"img_src\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/album\\/d3074ad36616678a285de9011d3ba1cee04fa69e.jpg\",\"img_tags\":null,\"img_width\":375}],\"pictures_count\":1,\"reply\":0,\"role\":[],\"settings\":{\"copy_forbidden\":\"0\"},\"source\":[],\"title\":\"\",\"upload_time\":1619258486},\"user\":{\"head_url\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/face\\/f791586939dcbd3f19545af1e65c369983e63c39.jpg\",\"name\":\"星宿战纪漫画\",\"uid\":1572178656,\"vip\":{\"avatar_subscript\":0,\"due_date\":0,\"label\":{\"label_theme\":\"\",\"path\":\"\",\"text\":\"\"},\"nickname_color\":\"\",\"status\":0,\"theme_type\":0,\"type\":0,\"vip_pay_type\":0}}}",
+ "extend_json": "{\"from\":{\"emoji_type\":1,\"from\":\"\",\"up_close_comment\":0,\"verify\":{}},\"like_icon\":{\"action\":\"\",\"action_url\":\"\",\"end\":\"\",\"end_url\":\"\",\"start\":\"\",\"start_url\":\"\"},\"topic\":{\"is_attach_topic\":1}}",
+ "display": {
+ "topic_info": {
+ "topic_details": [
+ {
+ "topic_id": 7539944,
+ "topic_name": "哔哩哔哩漫画",
+ "is_activity": 0,
+ "topic_link": ""
+ },
+ {
+ "topic_id": 18523004,
+ "topic_name": "星宿战纪",
+ "is_activity": 0,
+ "topic_link": ""
+ },
+ {
+ "topic_id": 18523003,
+ "topic_name": "星宿战纪漫画",
+ "is_activity": 0,
+ "topic_link": ""
+ },
+ {
+ "topic_id": 1184,
+ "topic_name": "漫画",
+ "is_activity": 0,
+ "topic_link": ""
+ }
+ ]
+ },
+ "emoji_info": {
+ "emoji_details": [
+ {
+ "emoji_name": "[热词系列_奥力给]",
+ "id": 1885,
+ "package_id": 53,
+ "state": 0,
+ "type": 1,
+ "attr": 2,
+ "text": "[热词系列_奥力给]",
+ "url": "https://i0.hdslb.com/bfs/emote/c9b8683827ec6c00fea5327c9bec14f581cef2aa.png",
+ "meta": {
+ "size": 2
+ },
+ "mtime": 1598525979
+ }
+ ]
+ },
+ "relation": {
+ "status": 1,
+ "is_follow": 0,
+ "is_followed": 0
+ },
+ "up_act_button": {
+ "report_title": "举报",
+ "founder_report_title": "举报(发起人)",
+ "top_title": "置顶",
+ "top_confirm_title": "确定将此动态置顶吗",
+ "top_cancel_title": "确定将此动态取消置顶吗"
+ },
+ "show_tip": {
+ "del_tip": "要删除动态吗?"
+ }
+ }
+ },
+ {
+ "desc": {
+ "uid": 326499679,
+ "type": 2,
+ "rid": 131350038,
+ "acl": 0,
+ "view": 1974729,
+ "repost": 13,
+ "comment": 39,
+ "like": 4732,
+ "is_liked": 0,
+ "dynamic_id": 517153601912668248,
+ "timestamp": 1619247606,
+ "pre_dy_id": 0,
+ "orig_dy_id": 0,
+ "orig_type": 0,
+ "user_profile": {
+ "info": {
+ "uid": 326499679,
+ "uname": "哔哩哔哩漫画",
+ "face": "https://i1.hdslb.com/bfs/face/2254162161a60b528cfec449f3450409a81ebc37.jpg"
+ },
+ "card": {
+ "official_verify": {
+ "type": 1,
+ "desc": "哔哩哔哩漫画官方账号"
+ }
+ },
+ "vip": {
+ "vipType": 2,
+ "vipDueDate": 1941033600000,
+ "vipStatus": 1,
+ "themeType": 0,
+ "label": {
+ "path": "",
+ "text": "十年大会员",
+ "label_theme": "ten_annual_vip",
+ "text_color": "#FFFFFF",
+ "bg_style": 1,
+ "bg_color": "#FB7299",
+ "border_color": ""
+ },
+ "avatar_subscript": 1,
+ "nickname_color": "#FB7299",
+ "role": 7,
+ "avatar_subscript_url": "https://i0.hdslb.com/bfs/vip/icon_Certification_big_member_22_3x.png"
+ },
+ "pendant": {
+ "pid": 0,
+ "name": "",
+ "image": "",
+ "expire": 0,
+ "image_enhance": "",
+ "image_enhance_frame": ""
+ },
+ "rank": "10000",
+ "sign": "↑ 【关注漫画姬】就送【漫读券5张】,当日或次日登录哔哩哔哩漫画APP即可领取,快来关注领券吧(°∀°)ノ ↑",
+ "level_info": {
+ "current_level": 6
+ }
+ },
+ "uid_type": 1,
+ "recommend_info": {
+ "is_attention": 0
+ },
+ "stype": 0,
+ "r_type": 1,
+ "inner_id": 0,
+ "topic_board": "C",
+ "topic_board_desc": "最新",
+ "status": 1,
+ "dynamic_id_str": "517153601912668248",
+ "pre_dy_id_str": "0",
+ "orig_dy_id_str": "0",
+ "rid_str": "131350038"
+ },
+ "card": "{\"item\":{\"at_control\":\"\",\"category\":\"daily\",\"description\":\"【#哔哩哔哩漫画# 作品推荐】来读一部治愈系#欧漫#吧:《#格莱米耶姐妹#》https:\\/\\/manga.bilibili.com\\/m\\/detail\\/mc28726\\n[W-哈哈]还记得童年最爱的五个魔力少女吗?《#魔力W.i.t.c.h.#》的作者带着全新的故事来了!\\n[打call]熟悉的画风,同样的治愈,主角变成了可爱的三姐妹。她们想在妈妈生日当天送给她一本图画书,却意外发现了一张特别的照片,一个亲情秘密即将被揭晓…… \",\"id\":131350038,\"is_fav\":0,\"pictures\":[{\"img_height\":960,\"img_size\":911.2685546875,\"img_src\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/album\\/f88be70d1dee3dd408fb00daf27ca2b551045424.jpg\",\"img_tags\":null,\"img_width\":720},{\"img_height\":3705,\"img_size\":3552.703125,\"img_src\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/album\\/0c1ad02cfed7d09fb68da69f6f6ed3afb33759ac.png\",\"img_tags\":null,\"img_width\":800},{\"img_height\":3373,\"img_size\":2038.8671875,\"img_src\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/album\\/4eed376d55d27870b126b7089082cd6f32582c55.png\",\"img_tags\":null,\"img_width\":800}],\"pictures_count\":3,\"reply\":39,\"role\":[],\"settings\":{\"copy_forbidden\":\"0\"},\"source\":[],\"title\":\"\",\"upload_time\":1619247606},\"user\":{\"head_url\":\"https:\\/\\/i1.hdslb.com\\/bfs\\/face\\/2254162161a60b528cfec449f3450409a81ebc37.jpg\",\"name\":\"哔哩哔哩漫画\",\"uid\":326499679,\"vip\":{\"avatar_subscript\":1,\"due_date\":1941033600000,\"label\":{\"label_theme\":\"ten_annual_vip\",\"path\":\"\",\"text\":\"十年大会员\"},\"nickname_color\":\"#FB7299\",\"status\":1,\"theme_type\":0,\"type\":2,\"vip_pay_type\":0}}}",
+ "extend_json": "{\"from\":{\"emoji_type\":1,\"from\":\"timer.publish\",\"up_close_comment\":0,\"verify\":{\"cc\":{\"nv\":1}}},\"like_icon\":{\"action\":\"\",\"action_url\":\"\",\"end\":\"\",\"end_url\":\"\",\"start\":\"\",\"start_url\":\"\"},\"topic\":{\"is_attach_topic\":1}}",
+ "display": {
+ "topic_info": {
+ "topic_details": [
+ {
+ "topic_id": 7539944,
+ "topic_name": "哔哩哔哩漫画",
+ "is_activity": 0,
+ "topic_link": ""
+ },
+ {
+ "topic_id": 507003,
+ "topic_name": "欧漫",
+ "is_activity": 0,
+ "topic_link": ""
+ },
+ {
+ "topic_id": 19491399,
+ "topic_name": "格莱米耶姐妹",
+ "is_activity": 0,
+ "topic_link": ""
+ },
+ {
+ "topic_id": 19491398,
+ "topic_name": "魔力W.i.t.c.h.",
+ "is_activity": 0,
+ "topic_link": ""
+ },
+ {
+ "topic_id": 1161514,
+ "topic_name": "魔力W.I.T.C.H.",
+ "is_activity": 0,
+ "topic_link": ""
+ }
+ ]
+ },
+ "emoji_info": {
+ "emoji_details": [
+ {
+ "emoji_name": "[W-哈哈]",
+ "id": 3045,
+ "package_id": 1,
+ "state": 0,
+ "type": 1,
+ "attr": 0,
+ "text": "[W-哈哈]",
+ "url": "https://i0.hdslb.com/bfs/emote/83d527303c8f62f494e6971c48836487e7d87b1b.png",
+ "meta": {
+ "size": 1
+ },
+ "mtime": 1608785082
+ },
+ {
+ "emoji_name": "[打call]",
+ "id": 510,
+ "package_id": 1,
+ "state": 0,
+ "type": 1,
+ "attr": 0,
+ "text": "[打call]",
+ "url": "https://i0.hdslb.com/bfs/emote/431432c43da3ee5aab5b0e4f8931953e649e9975.png",
+ "meta": {
+ "size": 1
+ },
+ "mtime": 1617293741
+ }
+ ]
+ },
+ "relation": {
+ "status": 1,
+ "is_follow": 0,
+ "is_followed": 0
+ },
+ "up_act_button": {
+ "report_title": "举报",
+ "founder_report_title": "举报(发起人)",
+ "top_title": "置顶",
+ "top_confirm_title": "确定将此动态置顶吗",
+ "top_cancel_title": "确定将此动态取消置顶吗"
+ },
+ "show_tip": {
+ "del_tip": "要删除动态吗?"
+ }
+ }
+ },
+ {
+ "desc": {
+ "uid": 1902548007,
+ "type": 2,
+ "rid": 131326547,
+ "acl": 0,
+ "view": 1681,
+ "repost": 0,
+ "comment": 2,
+ "like": 17,
+ "is_liked": 0,
+ "dynamic_id": 517110364476558101,
+ "timestamp": 1619237539,
+ "pre_dy_id": 0,
+ "orig_dy_id": 0,
+ "orig_type": 0,
+ "user_profile": {
+ "info": {
+ "uid": 1902548007,
+ "uname": "BV社",
+ "face": "https://i0.hdslb.com/bfs/face/48f8e6afa688e37b9f1e3721a86bea8ce02688dc.jpg"
+ },
+ "card": {
+ "official_verify": {
+ "type": 1,
+ "desc": "BV社官方账号"
+ }
+ },
+ "vip": {
+ "vipType": 0,
+ "vipDueDate": 0,
+ "vipStatus": 0,
+ "themeType": 0,
+ "label": {
+ "path": "",
+ "text": "",
+ "label_theme": "",
+ "text_color": "",
+ "bg_style": 0,
+ "bg_color": "",
+ "border_color": ""
+ },
+ "avatar_subscript": 0,
+ "nickname_color": "",
+ "role": 0,
+ "avatar_subscript_url": ""
+ },
+ "pendant": {
+ "pid": 0,
+ "name": "",
+ "image": "",
+ "expire": 0,
+ "image_enhance": "",
+ "image_enhance_frame": ""
+ },
+ "rank": "10000",
+ "sign": "Vomic,让你爱的漫画更动听",
+ "level_info": {
+ "current_level": 2
+ }
+ },
+ "uid_type": 1,
+ "recommend_info": {
+ "is_attention": 0
+ },
+ "stype": 0,
+ "r_type": 1,
+ "inner_id": 0,
+ "topic_board": "C",
+ "topic_board_desc": "最新",
+ "status": 1,
+ "dynamic_id_str": "517110364476558101",
+ "pre_dy_id_str": "0",
+ "orig_dy_id_str": "0",
+ "rid_str": "131326547"
+ },
+ "card": "{\"item\":{\"at_control\":\"[{\\\"location\\\":93,\\\"type\\\":1,\\\"length\\\":8,\\\"data\\\":\\\"326499679\\\"},{\\\"location\\\":104,\\\"type\\\":1,\\\"length\\\":5,\\\"data\\\":\\\"1902548007\\\"},{\\\"location\\\":112,\\\"type\\\":1,\\\"length\\\":7,\\\"data\\\":\\\"492733946\\\"},{\\\"location\\\":122,\\\"type\\\":1,\\\"length\\\":6,\\\"data\\\":\\\"1740792\\\"}]\",\"category\":\"daily\",\"description\":\"#哔哩哔哩漫画#独家,#反派初始化# #Vomic# 我命定的男主!凌辰!!\\n第四集准时上线!2021年4月3日起每周六更新!更多精彩,小剧场,花絮,尽在哔哩哔哩漫画APP\\n \\n出品:@哔哩哔哩漫画\\n策划:@BV社\\n制作:@补天研究所\\n录制:@音熊联萌 \",\"id\":131326547,\"is_fav\":0,\"pictures\":[{\"img_height\":2400,\"img_size\":2228.2724609375,\"img_src\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/album\\/461e7359ad89788cea42f61690b9cf7c73cc6ab5.jpg\",\"img_tags\":null,\"img_width\":2400}],\"pictures_count\":1,\"reply\":2,\"role\":[],\"settings\":{\"copy_forbidden\":\"0\"},\"source\":[],\"title\":\"\",\"upload_time\":1619237539},\"user\":{\"head_url\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/face\\/48f8e6afa688e37b9f1e3721a86bea8ce02688dc.jpg\",\"name\":\"BV社\",\"uid\":1902548007,\"vip\":{\"avatar_subscript\":0,\"due_date\":0,\"label\":{\"label_theme\":\"\",\"path\":\"\",\"text\":\"\"},\"nickname_color\":\"\",\"status\":0,\"theme_type\":0,\"type\":0,\"vip_pay_type\":0}}}",
+ "extend_json": "{\"ctrl\":[{\"data\":\"326499679\",\"length\":8,\"location\":93,\"type\":1},{\"data\":\"1902548007\",\"length\":5,\"location\":104,\"type\":1},{\"data\":\"492733946\",\"length\":7,\"location\":112,\"type\":1},{\"data\":\"1740792\",\"length\":6,\"location\":122,\"type\":1}],\"from\":{\"emoji_type\":1,\"from\":\"create.dynamic.web\",\"up_close_comment\":0,\"verify\":{\"asw\":{\"fl\":15,\"nv\":1},\"sw\":{\"fl\":15,\"nv\":1}}},\"like_icon\":{\"action\":\"\",\"action_url\":\"\",\"end\":\"\",\"end_url\":\"\",\"start\":\"\",\"start_url\":\"\"},\"topic\":{\"is_attach_topic\":1}}",
+ "display": {
+ "topic_info": {
+ "topic_details": [
+ {
+ "topic_id": 7539944,
+ "topic_name": "哔哩哔哩漫画",
+ "is_activity": 0,
+ "topic_link": ""
+ },
+ {
+ "topic_id": 10526139,
+ "topic_name": "反派初始化",
+ "is_activity": 0,
+ "topic_link": ""
+ },
+ {
+ "topic_id": 3208432,
+ "topic_name": "Vomic",
+ "is_activity": 1,
+ "topic_link": "https://www.bilibili.com/blackboard/dynamic/106426"
+ },
+ {
+ "topic_id": 37542,
+ "topic_name": "VOMIC",
+ "is_activity": 1,
+ "topic_link": "https://www.bilibili.com/blackboard/dynamic/106283"
+ },
+ {
+ "topic_id": 8972604,
+ "topic_name": "vomic",
+ "is_activity": 1,
+ "topic_link": "https://www.bilibili.com/blackboard/dynamic/106766"
+ }
+ ]
+ },
+ "relation": {
+ "status": 1,
+ "is_follow": 0,
+ "is_followed": 0
+ },
+ "up_act_button": {
+ "report_title": "举报",
+ "founder_report_title": "举报(发起人)",
+ "top_title": "置顶",
+ "top_confirm_title": "确定将此动态置顶吗",
+ "top_cancel_title": "确定将此动态取消置顶吗"
+ },
+ "show_tip": {
+ "del_tip": "要删除动态吗?"
+ }
+ }
+ },
+ {
+ "desc": {
+ "uid": 1192711092,
+ "type": 1,
+ "rid": 516803952918881881,
+ "acl": 0,
+ "view": 231,
+ "repost": 0,
+ "comment": 0,
+ "like": 0,
+ "is_liked": 0,
+ "dynamic_id": 516803952924449005,
+ "timestamp": 1619166197,
+ "pre_dy_id": 516417934145814823,
+ "orig_dy_id": 516417934145814823,
+ "orig_type": 2,
+ "user_profile": {
+ "info": {
+ "uid": 1192711092,
+ "uname": "会发光的偶恰",
+ "face": "https://i0.hdslb.com/bfs/face/b85a508793bd96deec61e2491d60e68f10378395.jpg"
+ },
+ "card": {
+ "official_verify": {
+ "type": -1,
+ "desc": ""
+ }
+ },
+ "vip": {
+ "vipType": 0,
+ "vipDueDate": 0,
+ "vipStatus": 0,
+ "themeType": 0,
+ "label": {
+ "path": "",
+ "text": "",
+ "label_theme": "",
+ "text_color": "",
+ "bg_style": 0,
+ "bg_color": "",
+ "border_color": ""
+ },
+ "avatar_subscript": 0,
+ "nickname_color": "",
+ "role": 0,
+ "avatar_subscript_url": ""
+ },
+ "pendant": {
+ "pid": 0,
+ "name": "",
+ "image": "",
+ "expire": 0,
+ "image_enhance": "",
+ "image_enhance_frame": ""
+ },
+ "rank": "10000",
+ "sign": "",
+ "level_info": {
+ "current_level": 3
+ }
+ },
+ "uid_type": 1,
+ "recommend_info": {
+ "is_attention": 0
+ },
+ "stype": 0,
+ "r_type": 1,
+ "inner_id": 0,
+ "topic_board": "C",
+ "topic_board_desc": "最新",
+ "status": 1,
+ "dynamic_id_str": "516803952924449005",
+ "pre_dy_id_str": "516417934145814823",
+ "orig_dy_id_str": "516417934145814823",
+ "rid_str": "516803952918881881",
+ "origin": {
+ "uid": 326499679,
+ "type": 2,
+ "rid": 131093146,
+ "acl": 1024,
+ "view": 1794629,
+ "repost": 10824,
+ "dynamic_id": 516417934145814823,
+ "timestamp": 1619076320,
+ "uid_type": 1,
+ "r_type": 1,
+ "status": 1,
+ "dynamic_id_str": "516417934145814823",
+ "pre_dy_id_str": "0",
+ "orig_dy_id_str": "0",
+ "rid_str": "131093146"
+ }
+ },
+ "card": "{ \"user\": { \"uid\": 1192711092, \"uname\": \"会发光的偶恰\", \"face\": \"https:\\/\\/i0.hdslb.com\\/bfs\\/face\\/b85a508793bd96deec61e2491d60e68f10378395.jpg\" }, \"item\": { \"rp_id\": 516803952918881881, \"uid\": 1192711092, \"content\": \"给我也整一个,我太爱了#漫画节#,#哔哩哔哩漫画#\", \"ctrl\": \"\", \"orig_dy_id\": 516417934145814823, \"pre_dy_id\": 516417934145814823, \"timestamp\": 1619166197, \"reply\": 0, \"orig_type\": 2 }, \"origin\": \"{\\\"item\\\":{\\\"at_control\\\":\\\"[{\\\\\\\"data\\\\\\\":\\\\\\\"5\\\\\\\",\\\\\\\"length\\\\\\\":0,\\\\\\\"location\\\\\\\":0,\\\\\\\"type\\\\\\\":2}]\\\",\\\"category\\\":\\\"daily\\\",\\\"description\\\":\\\"互动抽奖 【关+转】抽3位幸运小伙伴送【哔哩哔哩漫画商城 · 50元图书无门槛优惠券】~\\\\n【#漫画节# 买书礼】商城图书活动开启,23日0点抢新书秒杀,最高立减160元!\\\\n《罗小黑战记 兰溪镇2》《我是蜘蛛又怎样》等多款新书5元起!\\\\n更有8折立减券,来商城看看吧!\\\\n[羞羞] 活动指路:#哔哩哔哩漫画#APP - 我的 - 漫画商城\\\",\\\"id\\\":131093146,\\\"is_fav\\\":0,\\\"pictures\\\":[{\\\"img_height\\\":600,\\\"img_size\\\":251.2998046875,\\\"img_src\\\":\\\"https:\\\\\\/\\\\\\/i0.hdslb.com\\\\\\/bfs\\\\\\/album\\\\\\/1103a166b95de39f9f05455fed2bcfce5edfacc6.jpg\\\",\\\"img_tags\\\":null,\\\"img_width\\\":1200}],\\\"pictures_count\\\":1,\\\"reply\\\":857,\\\"role\\\":[],\\\"settings\\\":{\\\"copy_forbidden\\\":\\\"0\\\"},\\\"source\\\":[],\\\"title\\\":\\\"\\\",\\\"upload_time\\\":1619076320},\\\"user\\\":{\\\"head_url\\\":\\\"https:\\\\\\/\\\\\\/i1.hdslb.com\\\\\\/bfs\\\\\\/face\\\\\\/2254162161a60b528cfec449f3450409a81ebc37.jpg\\\",\\\"name\\\":\\\"哔哩哔哩漫画\\\",\\\"uid\\\":326499679,\\\"vip\\\":{\\\"avatar_subscript\\\":1,\\\"due_date\\\":1941033600000,\\\"label\\\":{\\\"label_theme\\\":\\\"ten_annual_vip\\\",\\\"path\\\":\\\"\\\",\\\"text\\\":\\\"十年大会员\\\"},\\\"nickname_color\\\":\\\"#FB7299\\\",\\\"status\\\":1,\\\"theme_type\\\":0,\\\"type\\\":2,\\\"vip_pay_type\\\":0}}}\", \"origin_extension\": { \"lott\": \"{\\\"lottery_id\\\":61227}\" }, \"origin_extend_json\": \"{\\\"\\\":{\\\"manga\\\":{\\\"manga_id\\\":26551}},\\\"ctrl\\\":[{\\\"data\\\":\\\"5\\\",\\\"length\\\":0,\\\"location\\\":0,\\\"type\\\":2}],\\\"from\\\":{\\\"emoji_type\\\":1,\\\"from\\\":\\\"create.dynamic.web\\\",\\\"up_close_comment\\\":0,\\\"verify\\\":{\\\"cc\\\":{\\\"vf\\\":1}}},\\\"like_icon\\\":{\\\"action\\\":\\\"\\\",\\\"action_url\\\":\\\"\\\",\\\"end\\\":\\\"\\\",\\\"end_url\\\":\\\"\\\",\\\"start\\\":\\\"\\\",\\\"start_url\\\":\\\"\\\"},\\\"lott\\\":{\\\"lottery_id\\\":61227},\\\"topic\\\":{\\\"is_attach_topic\\\":1}}\", \"origin_user\": { \"info\": { \"uid\": 326499679, \"uname\": \"哔哩哔哩漫画\", \"face\": \"https:\\/\\/i1.hdslb.com\\/bfs\\/face\\/2254162161a60b528cfec449f3450409a81ebc37.jpg\" }, \"card\": { \"official_verify\": { \"type\": 1, \"desc\": \"哔哩哔哩漫画官方账号\" } }, \"vip\": { \"vipType\": 2, \"vipDueDate\": 1941033600000, \"vipStatus\": 1, \"themeType\": 0, \"label\": { \"path\": \"\", \"text\": \"十年大会员\", \"label_theme\": \"ten_annual_vip\", \"text_color\": \"#FFFFFF\", \"bg_style\": 1, \"bg_color\": \"#FB7299\", \"border_color\": \"\" }, \"avatar_subscript\": 1, \"nickname_color\": \"#FB7299\", \"role\": 7, \"avatar_subscript_url\": \"https:\\/\\/i0.hdslb.com\\/bfs\\/vip\\/icon_Certification_big_member_22_3x.png\" }, \"pendant\": { \"pid\": 0, \"name\": \"\", \"image\": \"\", \"expire\": 0, \"image_enhance\": \"\", \"image_enhance_frame\": \"\" }, \"rank\": \"10000\", \"sign\": \"↑ 【关注漫画姬】就送【漫读券5张】,当日或次日登录哔哩哔哩漫画APP即可领取,快来关注领券吧(°∀°)ノ ↑\", \"level_info\": { \"current_level\": 6 } }, \"activity_infos\": { \"details\": [ { \"type\": 1, \"detail\": \"{\\\"is_show\\\":1,\\\"topic_id\\\":877418,\\\"topic_link\\\":\\\"https:\\\\\\/\\\\\\/www.bilibili.com\\\\\\/blackboard\\\\\\/activity-7uSyvlCGRS.html\\\",\\\"topic_name\\\":\\\"漫画节\\\"}\" } ] } }",
+ "extend_json": "{\"from\":{\"emoji_type\":1,\"from\":\"create.comment\",\"up_close_comment\":0},\"like_icon\":{\"action\":\"\",\"action_url\":\"\",\"end\":\"\",\"end_url\":\"\",\"start\":\"\",\"start_url\":\"\"},\"topic\":{\"is_attach_topic\":1}}",
+ "display": {
+ "topic_info": {
+ "topic_details": [
+ {
+ "topic_id": 877418,
+ "topic_name": "漫画节",
+ "is_activity": 1,
+ "topic_link": "https://www.bilibili.com/blackboard/activity-7uSyvlCGRS.html"
+ },
+ {
+ "topic_id": 7539944,
+ "topic_name": "哔哩哔哩漫画",
+ "is_activity": 0,
+ "topic_link": ""
+ }
+ ]
+ },
+ "origin": {
+ "topic_info": {
+ "topic_details": [
+ {
+ "topic_id": 877418,
+ "topic_name": "漫画节",
+ "is_activity": 1,
+ "topic_link": "https://www.bilibili.com/blackboard/activity-7uSyvlCGRS.html"
+ },
+ {
+ "topic_id": 7539944,
+ "topic_name": "哔哩哔哩漫画",
+ "is_activity": 0,
+ "topic_link": ""
+ }
+ ]
+ },
+ "emoji_info": {
+ "emoji_details": [
+ {
+ "emoji_name": "[羞羞]",
+ "id": 2901,
+ "package_id": 1,
+ "state": 0,
+ "type": 1,
+ "attr": 0,
+ "text": "[羞羞]",
+ "url": "https://i0.hdslb.com/bfs/emote/f4f9171e4d8c3f30827a8b96ea1ce1beb825ad50.png",
+ "meta": {
+ "size": 1
+ },
+ "mtime": 1606448649
+ }
+ ]
+ },
+ "relation": {
+ "status": 1,
+ "is_follow": 0,
+ "is_followed": 0
+ },
+ "attach_card": {
+ "type": "manga",
+ "head_text": "相关漫画作品",
+ "cover_url": "https://i0.hdslb.com/bfs/manga-static/e79378436e02fd7f227b901efb9fe79c2df9499c.jpg",
+ "cover_type": 2,
+ "title": "罗小黑战记·蓝溪镇",
+ "desc_first": "更新至068",
+ "desc_second": "搞笑,治愈,古风",
+ "jump_url": "https://manga.bilibili.com/m/detail/mc26551?from=sub_card",
+ "button": {
+ "type": 2,
+ "uncheck": {
+ "icon": "https://i0.hdslb.com/bfs/bangumi/154b6898d2b2c20c21ccef9e41fcf809b518ebb4.png",
+ "text": "追漫"
+ },
+ "check": {
+ "icon": "",
+ "text": "已追漫"
+ },
+ "status": 1
+ },
+ "oid_str": "26551"
+ },
+ "tags": [
+ {
+ "tag_type": 3,
+ "sub_type": 1,
+ "icon": "https://i0.hdslb.com/bfs/album/4c1880a3e9d5fd2c72b339929a73a4b83d2bab93.png",
+ "text": "漫画节",
+ "link": "https://www.bilibili.com/blackboard/activity-7uSyvlCGRS.html?topic_from=topic-card&name=%E6%BC%AB%E7%94%BB%E8%8A%82",
+ "rid": 877418,
+ "sub_module": "topic"
+ }
+ ],
+ "add_on_card_info": [
+ {
+ "add_on_card_show_type": 2,
+ "attach_card": {
+ "type": "manga",
+ "head_text": "相关漫画作品",
+ "cover_url": "https://i0.hdslb.com/bfs/manga-static/e79378436e02fd7f227b901efb9fe79c2df9499c.jpg",
+ "cover_type": 2,
+ "title": "罗小黑战记·蓝溪镇",
+ "desc_first": "更新至068",
+ "desc_second": "搞笑,治愈,古风",
+ "jump_url": "https://manga.bilibili.com/m/detail/mc26551?from=sub_card",
+ "button": {
+ "type": 2,
+ "uncheck": {
+ "icon": "https://i0.hdslb.com/bfs/bangumi/154b6898d2b2c20c21ccef9e41fcf809b518ebb4.png",
+ "text": "追漫"
+ },
+ "check": {
+ "icon": "",
+ "text": "已追漫"
+ },
+ "status": 1
+ },
+ "oid_str": "26551"
+ }
+ }
+ ],
+ "show_tip": {
+ "del_tip": "要删除动态吗?"
+ }
+ },
+ "relation": {
+ "status": 1,
+ "is_follow": 0,
+ "is_followed": 0
+ },
+ "up_act_button": {
+ "report_title": "举报",
+ "founder_report_title": "举报(发起人)",
+ "top_title": "置顶",
+ "top_confirm_title": "确定将此动态置顶吗",
+ "top_cancel_title": "确定将此动态取消置顶吗"
+ },
+ "show_tip": {
+ "del_tip": "要删除动态吗?"
+ }
+ }
+ },
+ {
+ "desc": {
+ "uid": 1365116,
+ "type": 1,
+ "rid": 516801496201774949,
+ "acl": 0,
+ "view": 185,
+ "repost": 0,
+ "comment": 0,
+ "like": 0,
+ "is_liked": 0,
+ "dynamic_id": 516801496202094777,
+ "timestamp": 1619165625,
+ "pre_dy_id": 516417934145814823,
+ "orig_dy_id": 516417934145814823,
+ "orig_type": 2,
+ "user_profile": {
+ "info": {
+ "uid": 1365116,
+ "uname": "濑户的海参",
+ "face": "https://i2.hdslb.com/bfs/face/8426c61be9c3ccd2296d080a54691c3bed5f2f9f.jpg"
+ },
+ "card": {
+ "official_verify": {
+ "type": -1,
+ "desc": ""
+ }
+ },
+ "vip": {
+ "vipType": 0,
+ "vipDueDate": 0,
+ "vipStatus": 0,
+ "themeType": 0,
+ "label": {
+ "path": "",
+ "text": "",
+ "label_theme": "",
+ "text_color": "",
+ "bg_style": 0,
+ "bg_color": "",
+ "border_color": ""
+ },
+ "avatar_subscript": 0,
+ "nickname_color": "",
+ "role": 0,
+ "avatar_subscript_url": ""
+ },
+ "pendant": {
+ "pid": 0,
+ "name": "",
+ "image": "",
+ "expire": 0,
+ "image_enhance": "",
+ "image_enhance_frame": ""
+ },
+ "rank": "10000",
+ "sign": "",
+ "level_info": {
+ "current_level": 5
+ }
+ },
+ "uid_type": 1,
+ "recommend_info": {
+ "is_attention": 0
+ },
+ "stype": 0,
+ "r_type": 1,
+ "inner_id": 0,
+ "topic_board": "C",
+ "topic_board_desc": "最新",
+ "status": 1,
+ "dynamic_id_str": "516801496202094777",
+ "pre_dy_id_str": "516417934145814823",
+ "orig_dy_id_str": "516417934145814823",
+ "rid_str": "516801496201774949",
+ "origin": {
+ "uid": 326499679,
+ "type": 2,
+ "rid": 131093146,
+ "acl": 1024,
+ "view": 1794629,
+ "repost": 10824,
+ "dynamic_id": 516417934145814823,
+ "timestamp": 1619076320,
+ "uid_type": 1,
+ "r_type": 1,
+ "status": 1,
+ "dynamic_id_str": "516417934145814823",
+ "pre_dy_id_str": "0",
+ "orig_dy_id_str": "0",
+ "rid_str": "131093146"
+ }
+ },
+ "card": "{ \"user\": { \"uid\": 1365116, \"uname\": \"濑户的海参\", \"face\": \"https:\\/\\/i2.hdslb.com\\/bfs\\/face\\/8426c61be9c3ccd2296d080a54691c3bed5f2f9f.jpg\" }, \"item\": { \"rp_id\": 516801496201774949, \"uid\": 1365116, \"content\": \"嗯哼#漫画节#,#哔哩哔哩漫画#\", \"ctrl\": \"\", \"orig_dy_id\": 516417934145814823, \"pre_dy_id\": 516417934145814823, \"timestamp\": 1619165625, \"reply\": 0, \"orig_type\": 2 }, \"origin\": \"{\\\"item\\\":{\\\"at_control\\\":\\\"[{\\\\\\\"data\\\\\\\":\\\\\\\"5\\\\\\\",\\\\\\\"length\\\\\\\":0,\\\\\\\"location\\\\\\\":0,\\\\\\\"type\\\\\\\":2}]\\\",\\\"category\\\":\\\"daily\\\",\\\"description\\\":\\\"互动抽奖 【关+转】抽3位幸运小伙伴送【哔哩哔哩漫画商城 · 50元图书无门槛优惠券】~\\\\n【#漫画节# 买书礼】商城图书活动开启,23日0点抢新书秒杀,最高立减160元!\\\\n《罗小黑战记 兰溪镇2》《我是蜘蛛又怎样》等多款新书5元起!\\\\n更有8折立减券,来商城看看吧!\\\\n[羞羞] 活动指路:#哔哩哔哩漫画#APP - 我的 - 漫画商城\\\",\\\"id\\\":131093146,\\\"is_fav\\\":0,\\\"pictures\\\":[{\\\"img_height\\\":600,\\\"img_size\\\":251.2998046875,\\\"img_src\\\":\\\"https:\\\\\\/\\\\\\/i0.hdslb.com\\\\\\/bfs\\\\\\/album\\\\\\/1103a166b95de39f9f05455fed2bcfce5edfacc6.jpg\\\",\\\"img_tags\\\":null,\\\"img_width\\\":1200}],\\\"pictures_count\\\":1,\\\"reply\\\":857,\\\"role\\\":[],\\\"settings\\\":{\\\"copy_forbidden\\\":\\\"0\\\"},\\\"source\\\":[],\\\"title\\\":\\\"\\\",\\\"upload_time\\\":1619076320},\\\"user\\\":{\\\"head_url\\\":\\\"https:\\\\\\/\\\\\\/i1.hdslb.com\\\\\\/bfs\\\\\\/face\\\\\\/2254162161a60b528cfec449f3450409a81ebc37.jpg\\\",\\\"name\\\":\\\"哔哩哔哩漫画\\\",\\\"uid\\\":326499679,\\\"vip\\\":{\\\"avatar_subscript\\\":1,\\\"due_date\\\":1941033600000,\\\"label\\\":{\\\"label_theme\\\":\\\"ten_annual_vip\\\",\\\"path\\\":\\\"\\\",\\\"text\\\":\\\"十年大会员\\\"},\\\"nickname_color\\\":\\\"#FB7299\\\",\\\"status\\\":1,\\\"theme_type\\\":0,\\\"type\\\":2,\\\"vip_pay_type\\\":0}}}\", \"origin_extension\": { \"lott\": \"{\\\"lottery_id\\\":61227}\" }, \"origin_extend_json\": \"{\\\"\\\":{\\\"manga\\\":{\\\"manga_id\\\":26551}},\\\"ctrl\\\":[{\\\"data\\\":\\\"5\\\",\\\"length\\\":0,\\\"location\\\":0,\\\"type\\\":2}],\\\"from\\\":{\\\"emoji_type\\\":1,\\\"from\\\":\\\"create.dynamic.web\\\",\\\"up_close_comment\\\":0,\\\"verify\\\":{\\\"cc\\\":{\\\"vf\\\":1}}},\\\"like_icon\\\":{\\\"action\\\":\\\"\\\",\\\"action_url\\\":\\\"\\\",\\\"end\\\":\\\"\\\",\\\"end_url\\\":\\\"\\\",\\\"start\\\":\\\"\\\",\\\"start_url\\\":\\\"\\\"},\\\"lott\\\":{\\\"lottery_id\\\":61227},\\\"topic\\\":{\\\"is_attach_topic\\\":1}}\", \"origin_user\": { \"info\": { \"uid\": 326499679, \"uname\": \"哔哩哔哩漫画\", \"face\": \"https:\\/\\/i1.hdslb.com\\/bfs\\/face\\/2254162161a60b528cfec449f3450409a81ebc37.jpg\" }, \"card\": { \"official_verify\": { \"type\": 1, \"desc\": \"哔哩哔哩漫画官方账号\" } }, \"vip\": { \"vipType\": 2, \"vipDueDate\": 1941033600000, \"vipStatus\": 1, \"themeType\": 0, \"label\": { \"path\": \"\", \"text\": \"十年大会员\", \"label_theme\": \"ten_annual_vip\", \"text_color\": \"#FFFFFF\", \"bg_style\": 1, \"bg_color\": \"#FB7299\", \"border_color\": \"\" }, \"avatar_subscript\": 1, \"nickname_color\": \"#FB7299\", \"role\": 7, \"avatar_subscript_url\": \"https:\\/\\/i0.hdslb.com\\/bfs\\/vip\\/icon_Certification_big_member_22_3x.png\" }, \"pendant\": { \"pid\": 0, \"name\": \"\", \"image\": \"\", \"expire\": 0, \"image_enhance\": \"\", \"image_enhance_frame\": \"\" }, \"rank\": \"10000\", \"sign\": \"↑ 【关注漫画姬】就送【漫读券5张】,当日或次日登录哔哩哔哩漫画APP即可领取,快来关注领券吧(°∀°)ノ ↑\", \"level_info\": { \"current_level\": 6 } }, \"activity_infos\": { \"details\": [ { \"type\": 1, \"detail\": \"{\\\"is_show\\\":1,\\\"topic_id\\\":877418,\\\"topic_link\\\":\\\"https:\\\\\\/\\\\\\/www.bilibili.com\\\\\\/blackboard\\\\\\/activity-7uSyvlCGRS.html\\\",\\\"topic_name\\\":\\\"漫画节\\\"}\" } ] } }",
+ "extend_json": "{\"from\":{\"emoji_type\":1,\"from\":\"create.comment\",\"up_close_comment\":0},\"like_icon\":{\"action\":\"\",\"action_url\":\"\",\"end\":\"\",\"end_url\":\"\",\"start\":\"\",\"start_url\":\"\"},\"topic\":{\"is_attach_topic\":1}}",
+ "display": {
+ "topic_info": {
+ "topic_details": [
+ {
+ "topic_id": 877418,
+ "topic_name": "漫画节",
+ "is_activity": 1,
+ "topic_link": "https://www.bilibili.com/blackboard/activity-7uSyvlCGRS.html"
+ },
+ {
+ "topic_id": 7539944,
+ "topic_name": "哔哩哔哩漫画",
+ "is_activity": 0,
+ "topic_link": ""
+ }
+ ]
+ },
+ "origin": {
+ "topic_info": {
+ "topic_details": [
+ {
+ "topic_id": 877418,
+ "topic_name": "漫画节",
+ "is_activity": 1,
+ "topic_link": "https://www.bilibili.com/blackboard/activity-7uSyvlCGRS.html"
+ },
+ {
+ "topic_id": 7539944,
+ "topic_name": "哔哩哔哩漫画",
+ "is_activity": 0,
+ "topic_link": ""
+ }
+ ]
+ },
+ "emoji_info": {
+ "emoji_details": [
+ {
+ "emoji_name": "[羞羞]",
+ "id": 2901,
+ "package_id": 1,
+ "state": 0,
+ "type": 1,
+ "attr": 0,
+ "text": "[羞羞]",
+ "url": "https://i0.hdslb.com/bfs/emote/f4f9171e4d8c3f30827a8b96ea1ce1beb825ad50.png",
+ "meta": {
+ "size": 1
+ },
+ "mtime": 1606448649
+ }
+ ]
+ },
+ "relation": {
+ "status": 1,
+ "is_follow": 0,
+ "is_followed": 0
+ },
+ "attach_card": {
+ "type": "manga",
+ "head_text": "相关漫画作品",
+ "cover_url": "https://i0.hdslb.com/bfs/manga-static/e79378436e02fd7f227b901efb9fe79c2df9499c.jpg",
+ "cover_type": 2,
+ "title": "罗小黑战记·蓝溪镇",
+ "desc_first": "更新至068",
+ "desc_second": "搞笑,治愈,古风",
+ "jump_url": "https://manga.bilibili.com/m/detail/mc26551?from=sub_card",
+ "button": {
+ "type": 2,
+ "uncheck": {
+ "icon": "https://i0.hdslb.com/bfs/bangumi/154b6898d2b2c20c21ccef9e41fcf809b518ebb4.png",
+ "text": "追漫"
+ },
+ "check": {
+ "icon": "",
+ "text": "已追漫"
+ },
+ "status": 1
+ },
+ "oid_str": "26551"
+ },
+ "tags": [
+ {
+ "tag_type": 3,
+ "sub_type": 1,
+ "icon": "https://i0.hdslb.com/bfs/album/4c1880a3e9d5fd2c72b339929a73a4b83d2bab93.png",
+ "text": "漫画节",
+ "link": "https://www.bilibili.com/blackboard/activity-7uSyvlCGRS.html?topic_from=topic-card&name=%E6%BC%AB%E7%94%BB%E8%8A%82",
+ "rid": 877418,
+ "sub_module": "topic"
+ }
+ ],
+ "add_on_card_info": [
+ {
+ "add_on_card_show_type": 2,
+ "attach_card": {
+ "type": "manga",
+ "head_text": "相关漫画作品",
+ "cover_url": "https://i0.hdslb.com/bfs/manga-static/e79378436e02fd7f227b901efb9fe79c2df9499c.jpg",
+ "cover_type": 2,
+ "title": "罗小黑战记·蓝溪镇",
+ "desc_first": "更新至068",
+ "desc_second": "搞笑,治愈,古风",
+ "jump_url": "https://manga.bilibili.com/m/detail/mc26551?from=sub_card",
+ "button": {
+ "type": 2,
+ "uncheck": {
+ "icon": "https://i0.hdslb.com/bfs/bangumi/154b6898d2b2c20c21ccef9e41fcf809b518ebb4.png",
+ "text": "追漫"
+ },
+ "check": {
+ "icon": "",
+ "text": "已追漫"
+ },
+ "status": 1
+ },
+ "oid_str": "26551"
+ }
+ }
+ ],
+ "show_tip": {
+ "del_tip": "要删除动态吗?"
+ }
+ },
+ "relation": {
+ "status": 1,
+ "is_follow": 0,
+ "is_followed": 0
+ },
+ "up_act_button": {
+ "report_title": "举报",
+ "founder_report_title": "举报(发起人)",
+ "top_title": "置顶",
+ "top_confirm_title": "确定将此动态置顶吗",
+ "top_cancel_title": "确定将此动态取消置顶吗"
+ },
+ "show_tip": {
+ "del_tip": "要删除动态吗?"
+ }
+ }
+ },
+ {
+ "desc": {
+ "uid": 1902548007,
+ "type": 2,
+ "rid": 131192629,
+ "view": 1537,
+ "repost": 0,
+ "comment": 1,
+ "like": 18,
+ "is_liked": 0,
+ "dynamic_id": 516737432462144044,
+ "timestamp": 1619150709,
+ "orig_type": 0,
+ "user_profile": {
+ "info": {
+ "uid": 1902548007,
+ "uname": "BV社",
+ "face": "https://i0.hdslb.com/bfs/face/48f8e6afa688e37b9f1e3721a86bea8ce02688dc.jpg"
+ },
+ "card": {
+ "official_verify": {
+ "type": 1,
+ "desc": "BV社官方账号"
+ }
+ },
+ "vip": {
+ "vipType": 0,
+ "vipDueDate": 0,
+ "vipStatus": 0,
+ "themeType": 0,
+ "label": {
+ "path": "",
+ "text": "",
+ "label_theme": "",
+ "text_color": "",
+ "bg_style": 0,
+ "bg_color": "",
+ "border_color": ""
+ },
+ "avatar_subscript": 0,
+ "nickname_color": "",
+ "role": 0,
+ "avatar_subscript_url": ""
+ },
+ "pendant": {
+ "pid": 0,
+ "name": "",
+ "image": "",
+ "expire": 0,
+ "image_enhance": "",
+ "image_enhance_frame": ""
+ },
+ "rank": "10000",
+ "sign": "Vomic,让你爱的漫画更动听",
+ "level_info": {
+ "current_level": 2
+ }
+ },
+ "uid_type": 1,
+ "recommend_info": {
+ "is_attention": 0
+ },
+ "r_type": 1,
+ "topic_board": "C",
+ "topic_board_desc": "最新",
+ "status": 1,
+ "dynamic_id_str": "516737432462144044",
+ "pre_dy_id_str": "0",
+ "orig_dy_id_str": "0",
+ "rid_str": "131192629"
+ },
+ "card": "{\"item\":{\"at_control\":\"[{\\\"location\\\":111,\\\"type\\\":1,\\\"length\\\":8,\\\"data\\\":\\\"326499679\\\"},{\\\"location\\\":122,\\\"type\\\":1,\\\"length\\\":5,\\\"data\\\":\\\"1902548007\\\"},{\\\"location\\\":130,\\\"type\\\":1,\\\"length\\\":6,\\\"data\\\":\\\"1740792\\\"}]\",\"category\":\"daily\",\"description\":\"#哔哩哔哩漫画#独家,#神赐予我这种尴尬的超能力究竟有什么用?# #Vomic# 这粉色情侣套间是怎么回事?搞这么大排场!?2021年4月9日起每周五更新!更多精彩,小剧场,花絮,尽在哔哩哔哩漫画APP \\n \\n出品:@哔哩哔哩漫画\\n策划:@BV社\\n承制:@音熊联萌 \",\"id\":131192629,\"is_fav\":0,\"pictures\":[{\"img_height\":2400,\"img_size\":2546.9873046875,\"img_src\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/album\\/b355832bc3bf9196f9a6e024504b99279e1463fa.jpg\",\"img_tags\":null,\"img_width\":2400}],\"pictures_count\":1,\"reply\":1,\"role\":[],\"settings\":{\"copy_forbidden\":\"0\"},\"source\":[],\"title\":\"\",\"upload_time\":1619150709},\"user\":{\"head_url\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/face\\/48f8e6afa688e37b9f1e3721a86bea8ce02688dc.jpg\",\"name\":\"BV社\",\"uid\":1902548007,\"vip\":{\"avatar_subscript\":0,\"due_date\":0,\"label\":{\"label_theme\":\"\",\"path\":\"\",\"text\":\"\"},\"nickname_color\":\"\",\"status\":0,\"theme_type\":0,\"type\":0,\"vip_pay_type\":0}}}",
+ "extend_json": "{\"ctrl\":[{\"data\":\"326499679\",\"length\":8,\"location\":111,\"type\":1},{\"data\":\"1902548007\",\"length\":5,\"location\":122,\"type\":1},{\"data\":\"1740792\",\"length\":6,\"location\":130,\"type\":1}],\"from\":{\"emoji_type\":1,\"from\":\"timer.publish\",\"up_close_comment\":0,\"verify\":{\"asw\":{\"fl\":15,\"nv\":1},\"sw\":{\"fl\":15,\"nv\":1}}},\"like_icon\":{\"action\":\"\",\"action_url\":\"\",\"end\":\"\",\"end_url\":\"\",\"start\":\"\",\"start_url\":\"\"},\"topic\":{\"is_attach_topic\":1}}",
+ "display": {
+ "topic_info": {
+ "topic_details": [
+ {
+ "topic_id": 7539944,
+ "topic_name": "哔哩哔哩漫画",
+ "is_activity": 0,
+ "topic_link": ""
+ },
+ {
+ "topic_id": 15321050,
+ "topic_name": "神赐予我这种尴尬的超能力究竟有什么用?",
+ "is_activity": 0,
+ "topic_link": ""
+ },
+ {
+ "topic_id": 3208432,
+ "topic_name": "Vomic",
+ "is_activity": 1,
+ "topic_link": "https://www.bilibili.com/blackboard/dynamic/106426"
+ },
+ {
+ "topic_id": 37542,
+ "topic_name": "VOMIC",
+ "is_activity": 1,
+ "topic_link": "https://www.bilibili.com/blackboard/dynamic/106283"
+ },
+ {
+ "topic_id": 8972604,
+ "topic_name": "vomic",
+ "is_activity": 1,
+ "topic_link": "https://www.bilibili.com/blackboard/dynamic/106766"
+ }
+ ]
+ },
+ "relation": {
+ "status": 1,
+ "is_follow": 0,
+ "is_followed": 0
+ },
+ "up_act_button": {
+ "report_title": "举报",
+ "founder_report_title": "举报(发起人)",
+ "top_title": "置顶",
+ "top_confirm_title": "确定将此动态置顶吗",
+ "top_cancel_title": "确定将此动态取消置顶吗"
+ },
+ "show_tip": {
+ "del_tip": "要删除动态吗?"
+ }
+ }
+ },
+ {
+ "desc": {
+ "uid": 326499679,
+ "type": 8,
+ "rid": 332648194,
+ "view": 2470218,
+ "repost": 11,
+ "like": 8329,
+ "is_liked": 0,
+ "dynamic_id": 516720707859405128,
+ "timestamp": 1619146815,
+ "orig_dy_id": 516720707860453704,
+ "orig_type": 0,
+ "user_profile": {
+ "info": {
+ "uid": 326499679,
+ "uname": "哔哩哔哩漫画",
+ "face": "https://i1.hdslb.com/bfs/face/2254162161a60b528cfec449f3450409a81ebc37.jpg"
+ },
+ "card": {
+ "official_verify": {
+ "type": 1,
+ "desc": "哔哩哔哩漫画官方账号"
+ }
+ },
+ "vip": {
+ "vipType": 2,
+ "vipDueDate": 1941033600000,
+ "vipStatus": 1,
+ "themeType": 0,
+ "label": {
+ "path": "",
+ "text": "十年大会员",
+ "label_theme": "ten_annual_vip",
+ "text_color": "#FFFFFF",
+ "bg_style": 1,
+ "bg_color": "#FB7299",
+ "border_color": ""
+ },
+ "avatar_subscript": 1,
+ "nickname_color": "#FB7299",
+ "role": 7,
+ "avatar_subscript_url": "https://i0.hdslb.com/bfs/vip/icon_Certification_big_member_22_3x.png"
+ },
+ "pendant": {
+ "pid": 0,
+ "name": "",
+ "image": "",
+ "expire": 0,
+ "image_enhance": "",
+ "image_enhance_frame": ""
+ },
+ "rank": "10000",
+ "sign": "↑ 【关注漫画姬】就送【漫读券5张】,当日或次日登录哔哩哔哩漫画APP即可领取,快来关注领券吧(°∀°)ノ ↑",
+ "level_info": {
+ "current_level": 6
+ }
+ },
+ "uid_type": 1,
+ "recommend_info": {
+ "is_attention": 0
+ },
+ "r_type": 1,
+ "topic_board": "C",
+ "topic_board_desc": "最新",
+ "status": 1,
+ "dynamic_id_str": "516720707859405128",
+ "pre_dy_id_str": "0",
+ "orig_dy_id_str": "516720707860453704",
+ "rid_str": "332648194",
+ "origin": {
+ "uid": 628215255,
+ "type": 8,
+ "rid": 332648194,
+ "view": 4802,
+ "repost": 18,
+ "dynamic_id": 516720707860453704,
+ "timestamp": 1619146815,
+ "uid_type": 1,
+ "r_type": 1,
+ "status": 1,
+ "dynamic_id_str": "516720707860453704",
+ "pre_dy_id_str": "0",
+ "orig_dy_id_str": "0",
+ "rid_str": "332648194",
+ "bvid": "BV1eA411L7Ck"
+ },
+ "bvid": "BV1eA411L7Ck"
+ },
+ "card": "{\"aid\":332648194,\"attribute\":0,\"cid\":327661869,\"copyright\":1,\"ctime\":1619091334,\"desc\":\"漫画节之际,恰逢世界读书日,哔哩哔哩漫画联合欧漫达高,邀请到了法国驻上海总领事馆文化领事柯梅燕女士在线推荐漫画啦!\\n被称为“图像小说”的纯正法国漫画是什么样呢?让我们一起跟着柯梅燕女士的介绍看看这本《莫奈逐光者》,领略欧陆漫画艺术的独特魅力吧~\",\"dimension\":{\"height\":2160,\"rotate\":0,\"width\":3840},\"duration\":219,\"dynamic\":\"漫画节之际,恰逢世界读书日,法国驻上海总领事馆文化领事柯梅燕女士应哔哩哔哩漫画与@欧漫达高 邀请,来给大家推荐漫画啦!\",\"item\":{\"at_control\":\"\"},\"jump_url\":\"bilibili:\\/\\/video\\/332648194\\/?page=1&player_preload=null&player_width=3840&player_height=2160&player_rotate=0\",\"mission_id\":20024,\"owner\":{\"face\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/face\\/341a390cbae7efc021d3c492da56665f2a4944ee.jpg\",\"mid\":628215255,\"name\":\"faguowenhua\"},\"pic\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/archive\\/7de60703c311c2afae10fab44a18bd3fbb5b3a13.jpg\",\"player_info\":null,\"pubdate\":1619146812,\"rights\":{\"autoplay\":1,\"bp\":0,\"download\":0,\"elec\":0,\"hd5\":1,\"is_cooperation\":1,\"movie\":0,\"no_background\":0,\"no_reprint\":1,\"pay\":0,\"ugc_pay\":0,\"ugc_pay_preview\":0},\"short_link\":\"https:\\/\\/b23.tv\\/BV1eA411L7Ck\",\"short_link_v2\":\"https:\\/\\/b23.tv\\/BV1eA411L7Ck\",\"stat\":{\"aid\":332648194,\"coin\":291,\"danmaku\":18,\"dislike\":0,\"favorite\":295,\"his_rank\":0,\"like\":8329,\"now_rank\":0,\"reply\":148,\"share\":95,\"view\":42929},\"state\":0,\"tid\":124,\"title\":\"大师的故事《莫奈逐光者》——来自法国文化领事的漫画推荐│哔哩哔哩漫画节\",\"tname\":\"社科人文\",\"videos\":1}",
+ "extend_json": "{\"\":{\"ogv\":{\"ogv_id\":0}},\"dispute\":{\"content\":\"\"},\"from\":{\"from\":\"\",\"verify\":{}},\"like_icon\":{\"action\":\"\",\"action_url\":\"\",\"end\":\"\",\"end_url\":\"\",\"start\":\"\",\"start_url\":\"\"},\"topic\":{\"is_attach_topic\":1}}",
+ "activity_infos": {
+ "details": [
+ {
+ "type": 1,
+ "detail": "{\"is_show\":1,\"topic_id\":877418,\"topic_link\":\"https:\\/\\/www.bilibili.com\\/blackboard\\/activity-7uSyvlCGRS.html\",\"topic_name\":\"漫画节\"}"
+ }
+ ]
+ },
+ "display": {
+ "topic_info": {
+ "topic_details": [
+ {
+ "topic_id": 19380831,
+ "topic_name": "2021读书日",
+ "is_activity": 0,
+ "topic_link": ""
+ },
+ {
+ "topic_id": 7539944,
+ "topic_name": "哔哩哔哩漫画",
+ "is_activity": 0,
+ "topic_link": ""
+ },
+ {
+ "topic_id": 1449371,
+ "topic_name": "法国漫画",
+ "is_activity": 0,
+ "topic_link": ""
+ },
+ {
+ "topic_id": 877418,
+ "topic_name": "漫画节",
+ "is_activity": 1,
+ "topic_link": "https://www.bilibili.com/blackboard/activity-7uSyvlCGRS.html"
+ },
+ {
+ "topic_id": 591844,
+ "topic_name": "莫奈",
+ "is_activity": 0,
+ "topic_link": ""
+ },
+ {
+ "topic_id": 507003,
+ "topic_name": "欧漫",
+ "is_activity": 0,
+ "topic_link": ""
+ }
+ ]
+ },
+ "usr_action_txt": "与他人联合创作",
+ "relation": {
+ "status": 1,
+ "is_follow": 0,
+ "is_followed": 0
+ },
+ "tags": [
+ {
+ "tag_type": 3,
+ "sub_type": 1,
+ "icon": "https://i0.hdslb.com/bfs/album/4c1880a3e9d5fd2c72b339929a73a4b83d2bab93.png",
+ "text": "漫画节",
+ "link": "https://www.bilibili.com/blackboard/activity-7uSyvlCGRS.html?topic_from=topic-card&name=%E6%BC%AB%E7%94%BB%E8%8A%82",
+ "rid": 877418,
+ "sub_module": "topic"
+ }
+ ],
+ "up_act_button": {
+ "report_title": "举报",
+ "founder_report_title": "举报(发起人)",
+ "top_title": "置顶",
+ "top_confirm_title": "确定将此动态置顶吗",
+ "top_cancel_title": "确定将此动态取消置顶吗"
+ },
+ "show_tip": {
+ "del_tip": "要删除动态吗?"
+ },
+ "cover_play_icon_url": "https://i0.hdslb.com/bfs/album/2269afa7897830b397797ebe5f032b899b405c67.png"
+ }
+ },
+ {
+ "desc": {
+ "uid": 326499679,
+ "type": 2,
+ "rid": 131140536,
+ "view": 2969785,
+ "repost": 11,
+ "comment": 55,
+ "like": 5077,
+ "is_liked": 0,
+ "dynamic_id": 516519647563103432,
+ "timestamp": 1619100002,
+ "orig_type": 0,
+ "user_profile": {
+ "info": {
+ "uid": 326499679,
+ "uname": "哔哩哔哩漫画",
+ "face": "https://i1.hdslb.com/bfs/face/2254162161a60b528cfec449f3450409a81ebc37.jpg"
+ },
+ "card": {
+ "official_verify": {
+ "type": 1,
+ "desc": "哔哩哔哩漫画官方账号"
+ }
+ },
+ "vip": {
+ "vipType": 2,
+ "vipDueDate": 1941033600000,
+ "vipStatus": 1,
+ "themeType": 0,
+ "label": {
+ "path": "",
+ "text": "十年大会员",
+ "label_theme": "ten_annual_vip",
+ "text_color": "#FFFFFF",
+ "bg_style": 1,
+ "bg_color": "#FB7299",
+ "border_color": ""
+ },
+ "avatar_subscript": 1,
+ "nickname_color": "#FB7299",
+ "role": 7,
+ "avatar_subscript_url": "https://i0.hdslb.com/bfs/vip/icon_Certification_big_member_22_3x.png"
+ },
+ "pendant": {
+ "pid": 0,
+ "name": "",
+ "image": "",
+ "expire": 0,
+ "image_enhance": "",
+ "image_enhance_frame": ""
+ },
+ "rank": "10000",
+ "sign": "↑ 【关注漫画姬】就送【漫读券5张】,当日或次日登录哔哩哔哩漫画APP即可领取,快来关注领券吧(°∀°)ノ ↑",
+ "level_info": {
+ "current_level": 6
+ }
+ },
+ "uid_type": 1,
+ "recommend_info": {
+ "is_attention": 0
+ },
+ "r_type": 1,
+ "topic_board": "C",
+ "topic_board_desc": "最新",
+ "status": 1,
+ "dynamic_id_str": "516519647563103432",
+ "pre_dy_id_str": "0",
+ "orig_dy_id_str": "0",
+ "rid_str": "131140536"
+ },
+ "card": "{\"item\":{\"at_control\":\"\",\"category\":\"daily\",\"description\":\"【#哔哩哔哩漫画# 作品推荐】《#蘑菇汤#》:https:\\/\\/manga.bilibili.com\\/m\\/detail\\/mc29622\\n[霜叶-疑问]才刚转学离开了熟悉的朋友们,就被爸爸送的“生日礼物”震惊到!\\n[煌-震撼]在2次敲打礼物树后,雅丽瞬间往地下坠落?!魅力无穷的蘑菇族的故事现在开始! \",\"id\":131140536,\"is_fav\":0,\"pictures\":[{\"img_height\":960,\"img_size\":198.8623046875,\"img_src\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/album\\/b9f8d6849478db32593ebd4b6b452b873c989fae.jpg\",\"img_tags\":null,\"img_width\":720},{\"img_height\":4532,\"img_size\":4342.27734375,\"img_src\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/album\\/ce9803ca6c0e3424cebcfa42fc4d9a59e809f3d7.jpg\",\"img_tags\":null,\"img_width\":1280},{\"img_height\":2293,\"img_size\":298.7080078125,\"img_src\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/album\\/d52ce6a063eba9c8256458e85e776cd3c82b07f7.jpg\",\"img_tags\":null,\"img_width\":1280},{\"img_height\":4122,\"img_size\":2115.80859375,\"img_src\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/album\\/7bd83bd470376334a3c5ce9266cb6f045cb72faa.jpg\",\"img_tags\":null,\"img_width\":1280},{\"img_height\":4149,\"img_size\":1425.8837890625,\"img_src\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/album\\/80aaba99dbc558287b89aa961329e15814ff85a2.jpg\",\"img_tags\":null,\"img_width\":1280},{\"img_height\":5019,\"img_size\":1546.1396484375,\"img_src\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/album\\/3a86cdd61a701559935bf87bdd7a3f68f59cf5f6.jpg\",\"img_tags\":null,\"img_width\":1280}],\"pictures_count\":6,\"reply\":55,\"role\":[],\"settings\":{\"copy_forbidden\":\"0\"},\"source\":[],\"title\":\"\",\"upload_time\":1619100002},\"user\":{\"head_url\":\"https:\\/\\/i1.hdslb.com\\/bfs\\/face\\/2254162161a60b528cfec449f3450409a81ebc37.jpg\",\"name\":\"哔哩哔哩漫画\",\"uid\":326499679,\"vip\":{\"avatar_subscript\":1,\"due_date\":1941033600000,\"label\":{\"label_theme\":\"ten_annual_vip\",\"path\":\"\",\"text\":\"十年大会员\"},\"nickname_color\":\"#FB7299\",\"status\":1,\"theme_type\":0,\"type\":2,\"vip_pay_type\":0}}}",
+ "extend_json": "{\"\":{\"manga\":{\"manga_id\":29622}},\"from\":{\"emoji_type\":1,\"from\":\"timer.publish\",\"up_close_comment\":0,\"verify\":{\"cc\":{\"nv\":1}}},\"like_icon\":{\"action\":\"\",\"action_url\":\"\",\"end\":\"\",\"end_url\":\"\",\"start\":\"\",\"start_url\":\"\"},\"topic\":{\"is_attach_topic\":1}}",
+ "display": {
+ "topic_info": {
+ "topic_details": [
+ {
+ "topic_id": 7539944,
+ "topic_name": "哔哩哔哩漫画",
+ "is_activity": 0,
+ "topic_link": ""
+ },
+ {
+ "topic_id": 699,
+ "topic_name": "蘑菇汤",
+ "is_activity": 0,
+ "topic_link": ""
+ }
+ ]
+ },
+ "emoji_info": {
+ "emoji_details": [
+ {
+ "emoji_name": "[煌-震撼]",
+ "id": 3047,
+ "package_id": 1,
+ "state": 0,
+ "type": 1,
+ "attr": 0,
+ "text": "[煌-震撼]",
+ "url": "https://i0.hdslb.com/bfs/emote/7bb39ac289bc97fe52af047020a9bf324ecdebe1.png",
+ "meta": {
+ "size": 1
+ },
+ "mtime": 1608785082
+ },
+ {
+ "emoji_name": "[霜叶-疑问]",
+ "id": 3048,
+ "package_id": 1,
+ "state": 0,
+ "type": 1,
+ "attr": 0,
+ "text": "[霜叶-疑问]",
+ "url": "https://i0.hdslb.com/bfs/emote/ada3aea8594e724511c1daad15fb3b23900d8e24.png",
+ "meta": {
+ "size": 1
+ },
+ "mtime": 1608785082
+ }
+ ]
+ },
+ "relation": {
+ "status": 1,
+ "is_follow": 0,
+ "is_followed": 0
+ },
+ "attach_card": {
+ "type": "manga",
+ "head_text": "相关漫画作品",
+ "cover_url": "https://i0.hdslb.com/bfs/manga-static/72bb5ca8058c0a5b19093136f09a77c2dca707cb.jpg",
+ "cover_type": 2,
+ "title": "蘑菇汤",
+ "desc_first": "更新至13",
+ "desc_second": "奇幻,日常,治愈",
+ "jump_url": "https://manga.bilibili.com/m/detail/mc29622?from=sub_card",
+ "button": {
+ "type": 2,
+ "uncheck": {
+ "icon": "https://i0.hdslb.com/bfs/bangumi/154b6898d2b2c20c21ccef9e41fcf809b518ebb4.png",
+ "text": "追漫"
+ },
+ "check": {
+ "icon": "",
+ "text": "已追漫"
+ },
+ "status": 1
+ },
+ "oid_str": "29622"
+ },
+ "add_on_card_info": [
+ {
+ "add_on_card_show_type": 2,
+ "attach_card": {
+ "type": "manga",
+ "head_text": "相关漫画作品",
+ "cover_url": "https://i0.hdslb.com/bfs/manga-static/72bb5ca8058c0a5b19093136f09a77c2dca707cb.jpg",
+ "cover_type": 2,
+ "title": "蘑菇汤",
+ "desc_first": "更新至13",
+ "desc_second": "奇幻,日常,治愈",
+ "jump_url": "https://manga.bilibili.com/m/detail/mc29622?from=sub_card",
+ "button": {
+ "type": 2,
+ "uncheck": {
+ "icon": "https://i0.hdslb.com/bfs/bangumi/154b6898d2b2c20c21ccef9e41fcf809b518ebb4.png",
+ "text": "追漫"
+ },
+ "check": {
+ "icon": "",
+ "text": "已追漫"
+ },
+ "status": 1
+ },
+ "oid_str": "29622"
+ }
+ }
+ ],
+ "up_act_button": {
+ "report_title": "举报",
+ "founder_report_title": "举报(发起人)",
+ "top_title": "置顶",
+ "top_confirm_title": "确定将此动态置顶吗",
+ "top_cancel_title": "确定将此动态取消置顶吗"
+ },
+ "show_tip": {
+ "del_tip": "要删除动态吗?"
+ }
+ }
+ },
+ {
+ "desc": {
+ "uid": 326499679,
+ "type": 2,
+ "rid": 131131421,
+ "acl": 0,
+ "view": 2620670,
+ "repost": 8,
+ "comment": 46,
+ "like": 4764,
+ "is_liked": 0,
+ "dynamic_id": 516504207153429574,
+ "timestamp": 1619096407,
+ "pre_dy_id": 0,
+ "orig_dy_id": 0,
+ "orig_type": 0,
+ "user_profile": {
+ "info": {
+ "uid": 326499679,
+ "uname": "哔哩哔哩漫画",
+ "face": "https://i1.hdslb.com/bfs/face/2254162161a60b528cfec449f3450409a81ebc37.jpg"
+ },
+ "card": {
+ "official_verify": {
+ "type": 1,
+ "desc": "哔哩哔哩漫画官方账号"
+ }
+ },
+ "vip": {
+ "vipType": 2,
+ "vipDueDate": 1941033600000,
+ "vipStatus": 1,
+ "themeType": 0,
+ "label": {
+ "path": "",
+ "text": "十年大会员",
+ "label_theme": "ten_annual_vip",
+ "text_color": "#FFFFFF",
+ "bg_style": 1,
+ "bg_color": "#FB7299",
+ "border_color": ""
+ },
+ "avatar_subscript": 1,
+ "nickname_color": "#FB7299",
+ "role": 7,
+ "avatar_subscript_url": "https://i0.hdslb.com/bfs/vip/icon_Certification_big_member_22_3x.png"
+ },
+ "pendant": {
+ "pid": 0,
+ "name": "",
+ "image": "",
+ "expire": 0,
+ "image_enhance": "",
+ "image_enhance_frame": ""
+ },
+ "rank": "10000",
+ "sign": "↑ 【关注漫画姬】就送【漫读券5张】,当日或次日登录哔哩哔哩漫画APP即可领取,快来关注领券吧(°∀°)ノ ↑",
+ "level_info": {
+ "current_level": 6
+ }
+ },
+ "uid_type": 1,
+ "recommend_info": {
+ "is_attention": 0
+ },
+ "stype": 0,
+ "r_type": 1,
+ "inner_id": 0,
+ "topic_board": "C",
+ "topic_board_desc": "最新",
+ "status": 1,
+ "dynamic_id_str": "516504207153429574",
+ "pre_dy_id_str": "0",
+ "orig_dy_id_str": "0",
+ "rid_str": "131131421"
+ },
+ "card": "{\"item\":{\"at_control\":\"\",\"category\":\"daily\",\"description\":\"【#哔哩哔哩漫画# 作品推荐】《#身体互换#》:https:\\/\\/manga.bilibili.com\\/m\\/detail\\/mc29621 \\n[热词系列_害]青梅竹马三人组,同是失恋沦落人,相逢在许愿池边时奇怪的事情发生了……\\n[热词系列_知识增加]什么?我和喜欢的女生互换了身体?!学霸、落落大方、机智果断的属性都出现在我自己的身上,突……突然感觉自己变帅了?\",\"id\":131131421,\"is_fav\":0,\"pictures\":[{\"img_height\":960,\"img_size\":537.4560546875,\"img_src\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/album\\/0144a1a68b77eb293915fe8e63876a592c39a179.jpg\",\"img_tags\":null,\"img_width\":720},{\"img_height\":2687,\"img_size\":880.25,\"img_src\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/album\\/5c169c961e6abe6ed9e19a508d8ce742219fce48.jpg\",\"img_tags\":null,\"img_width\":1280},{\"img_height\":2329,\"img_size\":649.5859375,\"img_src\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/album\\/20d28936c37fa2c62e9ef5bab0050d670a6074c7.jpg\",\"img_tags\":null,\"img_width\":1280},{\"img_height\":2236,\"img_size\":703.5146484375,\"img_src\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/album\\/5ddea24d47abb40636d05b1cd07a759eb7fe7967.jpg\",\"img_tags\":null,\"img_width\":1280},{\"img_height\":3472,\"img_size\":714.130859375,\"img_src\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/album\\/d1c9aafd4317192c3815fb342aee64887cfd1a6e.jpg\",\"img_tags\":null,\"img_width\":2500},{\"img_height\":6321,\"img_size\":3838.9482421875,\"img_src\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/album\\/f16021df4379261ec1c118d7e2a3b7259e759671.jpg\",\"img_tags\":null,\"img_width\":2500}],\"pictures_count\":6,\"reply\":46,\"role\":[],\"settings\":{\"copy_forbidden\":\"0\"},\"source\":[],\"title\":\"\",\"upload_time\":1619096407},\"user\":{\"head_url\":\"https:\\/\\/i1.hdslb.com\\/bfs\\/face\\/2254162161a60b528cfec449f3450409a81ebc37.jpg\",\"name\":\"哔哩哔哩漫画\",\"uid\":326499679,\"vip\":{\"avatar_subscript\":1,\"due_date\":1941033600000,\"label\":{\"label_theme\":\"ten_annual_vip\",\"path\":\"\",\"text\":\"十年大会员\"},\"nickname_color\":\"#FB7299\",\"status\":1,\"theme_type\":0,\"type\":2,\"vip_pay_type\":0}}}",
+ "extend_json": "{\"\":{\"manga\":{\"manga_id\":29621}},\"from\":{\"emoji_type\":1,\"from\":\"timer.publish\",\"up_close_comment\":0,\"verify\":{\"cc\":{\"nv\":1}}},\"like_icon\":{\"action\":\"\",\"action_url\":\"\",\"end\":\"\",\"end_url\":\"\",\"start\":\"\",\"start_url\":\"\"},\"topic\":{\"is_attach_topic\":1}}",
+ "display": {
+ "topic_info": {
+ "topic_details": [
+ {
+ "topic_id": 7539944,
+ "topic_name": "哔哩哔哩漫画",
+ "is_activity": 0,
+ "topic_link": ""
+ },
+ {
+ "topic_id": 200686,
+ "topic_name": "身体互换",
+ "is_activity": 1,
+ "topic_link": "https://www.bilibili.com/blackboard/dynamic/20573"
+ }
+ ]
+ },
+ "emoji_info": {
+ "emoji_details": [
+ {
+ "emoji_name": "[热词系列_害]",
+ "id": 1965,
+ "package_id": 53,
+ "state": 0,
+ "type": 1,
+ "attr": 2,
+ "text": "[热词系列_害]",
+ "url": "https://i0.hdslb.com/bfs/emote/cbe798a194612958537c5282fcca7c3bcd2aa15c.png",
+ "meta": {
+ "size": 2
+ },
+ "mtime": 1598525979
+ },
+ {
+ "emoji_name": "[热词系列_知识增加]",
+ "id": 1937,
+ "package_id": 53,
+ "state": 0,
+ "type": 1,
+ "attr": 2,
+ "text": "[热词系列_知识增加]",
+ "url": "https://i0.hdslb.com/bfs/emote/142409b595982b8210b2958f3d340f3b47942645.png",
+ "meta": {
+ "size": 2
+ },
+ "mtime": 1617293934
+ }
+ ]
+ },
+ "relation": {
+ "status": 1,
+ "is_follow": 0,
+ "is_followed": 0
+ },
+ "attach_card": {
+ "type": "manga",
+ "head_text": "相关漫画作品",
+ "cover_url": "https://i0.hdslb.com/bfs/manga-static/2f7e4c1c1e6122c6488ce986d5785319fc329b89.jpg",
+ "cover_type": 2,
+ "title": "身体互换",
+ "desc_first": "更新至15",
+ "desc_second": "恋爱,校园,奇幻",
+ "jump_url": "https://manga.bilibili.com/m/detail/mc29621?from=sub_card",
+ "button": {
+ "type": 2,
+ "uncheck": {
+ "icon": "https://i0.hdslb.com/bfs/bangumi/154b6898d2b2c20c21ccef9e41fcf809b518ebb4.png",
+ "text": "追漫"
+ },
+ "check": {
+ "icon": "",
+ "text": "已追漫"
+ },
+ "status": 1
+ },
+ "oid_str": "29621"
+ },
+ "add_on_card_info": [
+ {
+ "add_on_card_show_type": 2,
+ "attach_card": {
+ "type": "manga",
+ "head_text": "相关漫画作品",
+ "cover_url": "https://i0.hdslb.com/bfs/manga-static/2f7e4c1c1e6122c6488ce986d5785319fc329b89.jpg",
+ "cover_type": 2,
+ "title": "身体互换",
+ "desc_first": "更新至15",
+ "desc_second": "恋爱,校园,奇幻",
+ "jump_url": "https://manga.bilibili.com/m/detail/mc29621?from=sub_card",
+ "button": {
+ "type": 2,
+ "uncheck": {
+ "icon": "https://i0.hdslb.com/bfs/bangumi/154b6898d2b2c20c21ccef9e41fcf809b518ebb4.png",
+ "text": "追漫"
+ },
+ "check": {
+ "icon": "",
+ "text": "已追漫"
+ },
+ "status": 1
+ },
+ "oid_str": "29621"
+ }
+ }
+ ],
+ "up_act_button": {
+ "report_title": "举报",
+ "founder_report_title": "举报(发起人)",
+ "top_title": "置顶",
+ "top_confirm_title": "确定将此动态置顶吗",
+ "top_cancel_title": "确定将此动态取消置顶吗"
+ },
+ "show_tip": {
+ "del_tip": "要删除动态吗?"
+ }
+ }
+ },
+ {
+ "desc": {
+ "uid": 398468825,
+ "type": 8,
+ "rid": 545184671,
+ "acl": 0,
+ "view": 393,
+ "repost": 0,
+ "like": 8,
+ "is_liked": 0,
+ "dynamic_id": 516478317094534470,
+ "timestamp": 1619090379,
+ "pre_dy_id": 0,
+ "orig_dy_id": 0,
+ "orig_type": 0,
+ "user_profile": {
+ "info": {
+ "uid": 398468825,
+ "uname": "欧漫达高",
+ "face": "https://i2.hdslb.com/bfs/face/0ba24b18b461b80c5727b5dee9a66bb9e25c1f46.jpg"
+ },
+ "card": {
+ "official_verify": {
+ "type": 1,
+ "desc": "欧漫达高文化传媒(上海)有限公司"
+ }
+ },
+ "vip": {
+ "vipType": 0,
+ "vipDueDate": 0,
+ "vipStatus": 0,
+ "themeType": 0,
+ "label": {
+ "path": "",
+ "text": "",
+ "label_theme": "",
+ "text_color": "",
+ "bg_style": 0,
+ "bg_color": "",
+ "border_color": ""
+ },
+ "avatar_subscript": 0,
+ "nickname_color": "",
+ "role": 0,
+ "avatar_subscript_url": ""
+ },
+ "pendant": {
+ "pid": 0,
+ "name": "",
+ "image": "",
+ "expire": 0,
+ "image_enhance": "",
+ "image_enhance_frame": ""
+ },
+ "rank": "10000",
+ "sign": "经典欧洲绘本、漫画、动画集合地。Weibo:欧漫达高 WeChat:DargaudShanghai",
+ "level_info": {
+ "current_level": 2
+ }
+ },
+ "uid_type": 1,
+ "recommend_info": {
+ "is_attention": 0
+ },
+ "stype": 0,
+ "r_type": 1,
+ "inner_id": 0,
+ "topic_board": "C",
+ "topic_board_desc": "最新",
+ "status": 1,
+ "dynamic_id_str": "516478317094534470",
+ "pre_dy_id_str": "0",
+ "orig_dy_id_str": "0",
+ "rid_str": "545184671",
+ "bvid": "BV1ki4y1A7Kb"
+ },
+ "card": "{\"aid\":545184671,\"attribute\":0,\"cid\":327679459,\"copyright\":1,\"ctime\":1619090379,\"desc\":\"2151年,由于气候变化,世界人口缩减到了原来的十分之一,人类生活在脆弱的平衡之中。仅剩的7个城市区建立了新的社会生活模式。宇航员西蒙是名为“未来计划”的太空探险任务的一员,但这将是一场有去无回的旅行,承载着人类历史上前所未有的野心。在出发之前,西蒙带儿子尤里兜了最后一次风。开始了解世界的尤里能否明白母亲对完美、对冒险和对未知的渴求呢?\",\"dimension\":{\"height\":1080,\"rotate\":0,\"width\":1920},\"duration\":58,\"dynamic\":\"昨天的科幻欧漫预告片还没看过瘾?今天和另一部科幻漫的编剧一起规划未来吧!这位作者的日常向漫画《双面人生》中文版在#哔哩哔哩漫画#就能看哦~\",\"item\":{\"at_control\":\"\"},\"jump_url\":\"bilibili:\\/\\/video\\/545184671\\/?page=1&player_preload=null&player_width=1920&player_height=1080&player_rotate=0\",\"owner\":{\"face\":\"https:\\/\\/i2.hdslb.com\\/bfs\\/face\\/0ba24b18b461b80c5727b5dee9a66bb9e25c1f46.jpg\",\"mid\":398468825,\"name\":\"欧漫达高\"},\"pic\":\"https:\\/\\/i2.hdslb.com\\/bfs\\/archive\\/3411696f65b2bce0954f1dc66b1adc0a73de398a.jpg\",\"player_info\":null,\"pubdate\":1619090379,\"rights\":{\"autoplay\":1,\"bp\":0,\"download\":0,\"elec\":0,\"hd5\":0,\"is_cooperation\":0,\"movie\":0,\"no_background\":0,\"no_reprint\":1,\"pay\":0,\"ugc_pay\":0,\"ugc_pay_preview\":0},\"short_link\":\"https:\\/\\/b23.tv\\/BV1ki4y1A7Kb\",\"short_link_v2\":\"https:\\/\\/b23.tv\\/BV1ki4y1A7Kb\",\"stat\":{\"aid\":545184671,\"coin\":4,\"danmaku\":0,\"dislike\":0,\"favorite\":1,\"his_rank\":0,\"like\":8,\"now_rank\":0,\"reply\":0,\"share\":1,\"view\":29},\"state\":0,\"tid\":27,\"title\":\"【欧漫作家访谈】《未来计划》(SOON)作者Thomas Cadène采访\",\"tname\":\"综合\",\"videos\":1}",
+ "extend_json": "{\"\":{\"ogv\":{\"ogv_id\":0}},\"dispute\":{\"content\":\"\"},\"from\":{\"from\":\"\",\"verify\":{\"asw\":{\"fl\":15},\"sw\":{\"fl\":15}}},\"like_icon\":{\"action\":\"\",\"action_url\":\"\",\"end\":\"\",\"end_url\":\"\",\"start\":\"\",\"start_url\":\"\"},\"topic\":{\"is_attach_topic\":1}}",
+ "display": {
+ "topic_info": {
+ "topic_details": [
+ {
+ "topic_id": 7539944,
+ "topic_name": "哔哩哔哩漫画",
+ "is_activity": 0,
+ "topic_link": ""
+ },
+ {
+ "topic_id": 530918,
+ "topic_name": "动漫杂谈",
+ "is_activity": 0,
+ "topic_link": ""
+ },
+ {
+ "topic_id": 444408,
+ "topic_name": "编剧",
+ "is_activity": 0,
+ "topic_link": ""
+ },
+ {
+ "topic_id": 43646,
+ "topic_name": "生态",
+ "is_activity": 0,
+ "topic_link": ""
+ },
+ {
+ "topic_id": 33730,
+ "topic_name": "法语",
+ "is_activity": 0,
+ "topic_link": ""
+ },
+ {
+ "topic_id": 13619,
+ "topic_name": "欧美",
+ "is_activity": 0,
+ "topic_link": ""
+ },
+ {
+ "topic_id": 9264,
+ "topic_name": "宇宙",
+ "is_activity": 0,
+ "topic_link": ""
+ }
+ ]
+ },
+ "usr_action_txt": "投稿了视频",
+ "relation": {
+ "status": 1,
+ "is_follow": 0,
+ "is_followed": 0
+ },
+ "up_act_button": {
+ "report_title": "举报",
+ "founder_report_title": "举报(发起人)",
+ "top_title": "置顶",
+ "top_confirm_title": "确定将此动态置顶吗",
+ "top_cancel_title": "确定将此动态取消置顶吗"
+ },
+ "show_tip": {
+ "del_tip": "要删除动态吗?"
+ },
+ "cover_play_icon_url": "https://i0.hdslb.com/bfs/album/2269afa7897830b397797ebe5f032b899b405c67.png"
+ }
+ },
+ {
+ "desc": {
+ "uid": 326499679,
+ "type": 8,
+ "rid": 630241940,
+ "view": 2624796,
+ "repost": 5,
+ "like": 10051,
+ "is_liked": 0,
+ "dynamic_id": 516457881632645972,
+ "timestamp": 1619085621,
+ "orig_dy_id": 516457881633694548,
+ "orig_type": 0,
+ "user_profile": {
+ "info": {
+ "uid": 326499679,
+ "uname": "哔哩哔哩漫画",
+ "face": "https://i1.hdslb.com/bfs/face/2254162161a60b528cfec449f3450409a81ebc37.jpg"
+ },
+ "card": {
+ "official_verify": {
+ "type": 1,
+ "desc": "哔哩哔哩漫画官方账号"
+ }
+ },
+ "vip": {
+ "vipType": 2,
+ "vipDueDate": 1941033600000,
+ "vipStatus": 1,
+ "themeType": 0,
+ "label": {
+ "path": "",
+ "text": "十年大会员",
+ "label_theme": "ten_annual_vip",
+ "text_color": "#FFFFFF",
+ "bg_style": 1,
+ "bg_color": "#FB7299",
+ "border_color": ""
+ },
+ "avatar_subscript": 1,
+ "nickname_color": "#FB7299",
+ "role": 7,
+ "avatar_subscript_url": "https://i0.hdslb.com/bfs/vip/icon_Certification_big_member_22_3x.png"
+ },
+ "pendant": {
+ "pid": 0,
+ "name": "",
+ "image": "",
+ "expire": 0,
+ "image_enhance": "",
+ "image_enhance_frame": ""
+ },
+ "rank": "10000",
+ "sign": "↑ 【关注漫画姬】就送【漫读券5张】,当日或次日登录哔哩哔哩漫画APP即可领取,快来关注领券吧(°∀°)ノ ↑",
+ "level_info": {
+ "current_level": 6
+ }
+ },
+ "uid_type": 1,
+ "recommend_info": {
+ "is_attention": 0
+ },
+ "r_type": 1,
+ "topic_board": "C",
+ "topic_board_desc": "最新",
+ "status": 1,
+ "dynamic_id_str": "516457881632645972",
+ "pre_dy_id_str": "0",
+ "orig_dy_id_str": "516457881633694548",
+ "rid_str": "630241940",
+ "origin": {
+ "uid": 7435683,
+ "type": 8,
+ "rid": 630241940,
+ "acl": 0,
+ "view": 32239,
+ "repost": 13,
+ "like": 0,
+ "dynamic_id": 516457881633694548,
+ "timestamp": 1619085621,
+ "pre_dy_id": 0,
+ "orig_dy_id": 0,
+ "uid_type": 1,
+ "stype": 0,
+ "r_type": 1,
+ "inner_id": 0,
+ "status": 1,
+ "dynamic_id_str": "516457881633694548",
+ "pre_dy_id_str": "0",
+ "orig_dy_id_str": "0",
+ "rid_str": "630241940",
+ "bvid": "BV1b84y1F7qT"
+ },
+ "bvid": "BV1b84y1F7qT"
+ },
+ "card": "{\"aid\":630241940,\"attribute\":0,\"cid\":325729439,\"copyright\":1,\"ctime\":1618830035,\"desc\":\"BGM:No Rainbows In The Desert (Pluto Tapes),歌手名:Unlike Pluto\\n咒术回战单素材,帅就完事!求3连!\",\"dimension\":{\"height\":1080,\"rotate\":0,\"width\":1920},\"duration\":94,\"dynamic\":\"\",\"item\":{\"at_control\":\"\"},\"jump_url\":\"bilibili:\\/\\/video\\/630241940\\/?page=1&player_preload=null&player_width=1920&player_height=1080&player_rotate=0\",\"owner\":{\"face\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/face\\/a536ad1c4c66e17113cfb599fcbb97e03bcdae44.jpg\",\"mid\":7435683,\"name\":\"葉月Mashiro灬\"},\"pic\":\"https:\\/\\/i2.hdslb.com\\/bfs\\/archive\\/663b7f275b0f93356523880aa7e626803168df93.jpg\",\"player_info\":null,\"pubdate\":1619085619,\"rights\":{\"autoplay\":1,\"bp\":0,\"download\":0,\"elec\":0,\"hd5\":1,\"is_cooperation\":1,\"movie\":0,\"no_background\":0,\"no_reprint\":1,\"pay\":0,\"ugc_pay\":0,\"ugc_pay_preview\":0},\"short_link\":\"https:\\/\\/b23.tv\\/BV1b84y1F7qT\",\"short_link_v2\":\"https:\\/\\/b23.tv\\/BV1b84y1F7qT\",\"stat\":{\"aid\":630241940,\"coin\":889,\"danmaku\":146,\"dislike\":0,\"favorite\":1167,\"his_rank\":0,\"like\":10051,\"now_rank\":0,\"reply\":95,\"share\":205,\"view\":61405},\"state\":0,\"tid\":24,\"title\":\"全员高能!这才是咒术回战!\",\"tname\":\"MAD·AMV\",\"videos\":1}",
+ "extend_json": "{\"\":{\"decoration\":{\"decoration_id\":0},\"game\":{\"game_id\":0},\"manga\":{\"manga_id\":26505},\"match\":{\"match_id\":0},\"official_activity\":{\"official_activity_id\":0},\"ogv\":{\"auto_bind\":0,\"ogv_id\":0},\"pgc\":0,\"pugv\":{\"pugv_id\":0},\"reserve\":{\"reserve_id\":0},\"ugc\":{\"ugc_id\":0}},\"bottom\":{},\"dispute\":{\"content\":\"\"},\"from\":{\"from\":\"\"},\"like_icon\":{\"action\":\"\",\"action_url\":\"\",\"end\":\"\",\"end_url\":\"\",\"start\":\"\",\"start_url\":\"\"},\"topic\":{\"is_attach_topic\":1}}",
+ "display": {
+ "topic_info": {
+ "topic_details": [
+ {
+ "topic_id": 391,
+ "topic_name": "AMV",
+ "is_activity": 0,
+ "topic_link": ""
+ },
+ {
+ "topic_id": 281,
+ "topic_name": "MAD",
+ "is_activity": 0,
+ "topic_link": ""
+ },
+ {
+ "topic_id": 7662089,
+ "topic_name": "五条悟",
+ "is_activity": 1,
+ "topic_link": "https://www.bilibili.com/blackboard/dynamic/66796"
+ },
+ {
+ "topic_id": 7539944,
+ "topic_name": "哔哩哔哩漫画",
+ "is_activity": 0,
+ "topic_link": ""
+ },
+ {
+ "topic_id": 6497596,
+ "topic_name": "咒术回战",
+ "is_activity": 0,
+ "topic_link": ""
+ },
+ {
+ "topic_id": 3545,
+ "topic_name": "热血",
+ "is_activity": 0,
+ "topic_link": ""
+ }
+ ]
+ },
+ "usr_action_txt": "与他人联合创作",
+ "relation": {
+ "status": 1,
+ "is_follow": 0,
+ "is_followed": 0
+ },
+ "attach_card": {
+ "type": "manga",
+ "head_text": "相关漫画作品",
+ "cover_url": "https://i0.hdslb.com/bfs/manga-static/ca4c24bd8bf896545811f401106c19588b80549d.png",
+ "cover_type": 2,
+ "title": "咒术回战",
+ "desc_first": "更新至146",
+ "desc_second": "冒险,热血,奇幻",
+ "jump_url": "https://manga.bilibili.com/m/detail/mc26505?from=sub_card",
+ "button": {
+ "type": 2,
+ "uncheck": {
+ "icon": "https://i0.hdslb.com/bfs/bangumi/154b6898d2b2c20c21ccef9e41fcf809b518ebb4.png",
+ "text": "追漫"
+ },
+ "check": {
+ "icon": "",
+ "text": "已追漫"
+ },
+ "status": 1
+ },
+ "oid_str": "26505"
+ },
+ "add_on_card_info": [
+ {
+ "add_on_card_show_type": 2,
+ "attach_card": {
+ "type": "manga",
+ "head_text": "相关漫画作品",
+ "cover_url": "https://i0.hdslb.com/bfs/manga-static/ca4c24bd8bf896545811f401106c19588b80549d.png",
+ "cover_type": 2,
+ "title": "咒术回战",
+ "desc_first": "更新至146",
+ "desc_second": "冒险,热血,奇幻",
+ "jump_url": "https://manga.bilibili.com/m/detail/mc26505?from=sub_card",
+ "button": {
+ "type": 2,
+ "uncheck": {
+ "icon": "https://i0.hdslb.com/bfs/bangumi/154b6898d2b2c20c21ccef9e41fcf809b518ebb4.png",
+ "text": "追漫"
+ },
+ "check": {
+ "icon": "",
+ "text": "已追漫"
+ },
+ "status": 1
+ },
+ "oid_str": "26505"
+ }
+ }
+ ],
+ "up_act_button": {
+ "report_title": "举报",
+ "founder_report_title": "举报(发起人)",
+ "top_title": "置顶",
+ "top_confirm_title": "确定将此动态置顶吗",
+ "top_cancel_title": "确定将此动态取消置顶吗"
+ },
+ "show_tip": {
+ "del_tip": "要删除动态吗?"
+ },
+ "cover_play_icon_url": "https://i0.hdslb.com/bfs/album/2269afa7897830b397797ebe5f032b899b405c67.png"
+ }
+ }
+ ],
+ "offset": "516457881632645972",
+ "_gt_": 0
+ }
+}
+```
+
## 搜索发布话题