From f486d0b9832448a34e201e7bd9e67cfcaf7a4111 Mon Sep 17 00:00:00 2001 From: Azide Date: Sat, 20 Aug 2022 22:33:57 +0800 Subject: [PATCH 1/8] =?UTF-8?q?=E5=88=9D=E6=AD=A5=E5=AE=8C=E6=88=90?= =?UTF-8?q?=E5=B1=8F=E8=94=BD=E7=89=B9=E5=AE=9Atag=E5=8A=9F=E8=83=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../nonebot_bison/platform/platform.py | 31 +++++++++++++++---- 1 file changed, 25 insertions(+), 6 deletions(-) diff --git a/src/plugins/nonebot_bison/platform/platform.py b/src/plugins/nonebot_bison/platform/platform.py index d0e2cf6..417c9cd 100644 --- a/src/plugins/nonebot_bison/platform/platform.py +++ b/src/plugins/nonebot_bison/platform/platform.py @@ -111,6 +111,30 @@ class Platform(metaclass=RegistryABCMeta, base=True): def set_stored_data(self, target: Target, data: Any): self.store[target] = data + def tag_separator(self, stored_tags: list[Tag]): + subscribed_tags = [] + banned_tags = [] + for tag in stored_tags: + if tag.startswith("~"): + banned_tags.append(tag.lstrip("~")) + else: + subscribed_tags.append(tag) + return subscribed_tags, banned_tags + + def is_banned_post( + self, + post_tags: Collection[Tag], + subscribed_tags: list[Tag], + banned_tags: list[Tag], + ) -> bool: + for tag in post_tags or []: + if banned_tags and tag in banned_tags: + return True + elif subscribed_tags and tag not in subscribed_tags: + return True + + return False + async def filter_user_custom( self, raw_post_list: list[RawPost], cats: list[Category], tags: list[Tag] ) -> list[RawPost]: @@ -121,13 +145,8 @@ class Platform(metaclass=RegistryABCMeta, base=True): if cats and cat not in cats: continue if self.enable_tag and tags: - flag = False post_tags = self.get_tags(raw_post) - for tag in post_tags or []: - if tag in tags: - flag = True - break - if not flag: + if self.is_banned_post(post_tags, **self.tag_separator(tags)): continue res.append(raw_post) return res From 8a4a7ad26c5a8a191f952c191c442b4f0d5e3b9c Mon Sep 17 00:00:00 2001 From: Azide Date: Sun, 21 Aug 2022 22:10:07 +0800 Subject: [PATCH 2/8] =?UTF-8?q?=E5=AE=8C=E5=96=84tag=E7=9A=84=E5=A4=84?= =?UTF-8?q?=E7=90=86=E9=80=BB=E8=BE=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../nonebot_bison/platform/platform.py | 30 ++++++++++++++----- 1 file changed, 22 insertions(+), 8 deletions(-) diff --git a/src/plugins/nonebot_bison/platform/platform.py b/src/plugins/nonebot_bison/platform/platform.py index 417c9cd..f623241 100644 --- a/src/plugins/nonebot_bison/platform/platform.py +++ b/src/plugins/nonebot_bison/platform/platform.py @@ -127,13 +127,26 @@ class Platform(metaclass=RegistryABCMeta, base=True): subscribed_tags: list[Tag], banned_tags: list[Tag], ) -> bool: - for tag in post_tags or []: - if banned_tags and tag in banned_tags: - return True - elif subscribed_tags and tag not in subscribed_tags: - return True + """只要存在任意屏蔽tag则返回真,此行为优先级最高。 + 存在任意被订阅tag则返回假,此行为优先级次之。 + 若被订阅tag为空,则返回假。 + """ + # 存在任意需要屏蔽的tag则为真 + if banned_tags: + for tag in post_tags or []: + if tag in banned_tags: + return True + # 检测屏蔽tag后检测订阅tag + # 存在任意需要订阅的tag则为假 + ban_it = True + if subscribed_tags: + for tag in post_tags or []: + if tag in subscribed_tags: + ban_it = False + else: + ban_it = False - return False + return ban_it async def filter_user_custom( self, raw_post_list: list[RawPost], cats: list[Category], tags: list[Tag] @@ -145,8 +158,9 @@ class Platform(metaclass=RegistryABCMeta, base=True): if cats and cat not in cats: continue if self.enable_tag and tags: - post_tags = self.get_tags(raw_post) - if self.is_banned_post(post_tags, **self.tag_separator(tags)): + if self.is_banned_post( + self.get_tags(raw_post), *self.tag_separator(tags) + ): continue res.append(raw_post) return res From 945f00f53104520b78110a15918ee68451660a9a Mon Sep 17 00:00:00 2001 From: Azide Date: Thu, 1 Sep 2022 01:59:46 +0800 Subject: [PATCH 3/8] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E6=B5=8B=E8=AF=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tests/platforms/static/tag_cases.json | 129 ++++++++++++++++++++ tests/platforms/test_platform_tag_filter.py | 19 +++ 2 files changed, 148 insertions(+) create mode 100644 tests/platforms/static/tag_cases.json create mode 100644 tests/platforms/test_platform_tag_filter.py diff --git a/tests/platforms/static/tag_cases.json b/tests/platforms/static/tag_cases.json new file mode 100644 index 0000000..01c9af9 --- /dev/null +++ b/tests/platforms/static/tag_cases.json @@ -0,0 +1,129 @@ +[ + { + "case": { + "post_tags": [ + "111", + "222", + "333", + "444" + ], + "subscribed_tags": [ + "222" + ], + "banned_tags": [ + "555" + ] + }, + "result": false + }, + { + "case": { + "post_tags": [ + "111", + "222", + "333", + "444" + ], + "subscribed_tags": [], + "banned_tags": [ + "555" + ] + }, + "result": false + }, + { + "case": { + "post_tags": [ + "111", + "222", + "333", + "444" + ], + "subscribed_tags": [], + "banned_tags": [ + "444" + ] + }, + "result": true + }, + { + "case": { + "post_tags": [ + "111", + "222", + "333", + "444" + ], + "subscribed_tags": [ + "222" + ], + "banned_tags": [] + }, + "result": false + }, + { + "case": { + "post_tags": [ + "111", + "222", + "333", + "444" + ], + "subscribed_tags": [], + "banned_tags": [] + }, + "result": false + }, + { + "case": { + "post_tags": [ + "111", + "222", + "333", + "444" + ], + "subscribed_tags": ["111","555","666"], + "banned_tags": [] + }, + "result": false + }, + { + "case": { + "post_tags": [ + "111", + "222", + "333", + "444" + ], + "subscribed_tags": ["111","555"], + "banned_tags": ["333"] + }, + "result": true + }, + { + "case": { + "post_tags": [ + "111", + "222", + "333", + "444" + ], + "subscribed_tags": ["111","333"], + "banned_tags": ["111"] + }, + "result": true + }, + { + "case": { + "post_tags": [ + "111", + "222", + "333", + "444" + ], + "subscribed_tags": ["222"], + "banned_tags": ["555","333"] + }, + "result": true + } +] \ No newline at end of file diff --git a/tests/platforms/test_platform_tag_filter.py b/tests/platforms/test_platform_tag_filter.py new file mode 100644 index 0000000..c644b05 --- /dev/null +++ b/tests/platforms/test_platform_tag_filter.py @@ -0,0 +1,19 @@ +import pytest +from nonebug.app import App + +from .utils import get_json + + +@pytest.fixture(scope="module") +def test_cases(): + return get_json("tag_cases.json") + + +@pytest.mark.asyncio +async def test_filter_user_custom_tag(app: App, test_cases): + from nonebot_bison.platform import platform_manager + + bilibili = platform_manager["bilibili"] + for case in test_cases: + res = bilibili.is_banned_post(**case["case"]) + assert res == case["result"] From 4177fd149a1d63389b55c6cdcda3fa24344dd735 Mon Sep 17 00:00:00 2001 From: Azide Date: Fri, 2 Sep 2022 02:48:11 +0800 Subject: [PATCH 4/8] =?UTF-8?q?feat=20(issue#67):=E6=B7=BB=E5=8A=A0?= =?UTF-8?q?=E5=B1=8F=E8=94=BD=E7=89=B9=E5=AE=9Atag=E7=9A=84=E5=8A=9F?= =?UTF-8?q?=E8=83=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../nonebot_bison/platform/platform.py | 1 + .../platforms/static/bilibili_bing_list.json | 2079 ++++++++++++++++- .../static/bilibili_fake_dy_list.json | 246 ++ tests/platforms/test_bilibili.py | 30 + tests/platforms/test_platform_tag_filter.py | 13 + 5 files changed, 2368 insertions(+), 1 deletion(-) create mode 100644 tests/platforms/static/bilibili_fake_dy_list.json diff --git a/src/plugins/nonebot_bison/platform/platform.py b/src/plugins/nonebot_bison/platform/platform.py index f623241..5218058 100644 --- a/src/plugins/nonebot_bison/platform/platform.py +++ b/src/plugins/nonebot_bison/platform/platform.py @@ -112,6 +112,7 @@ class Platform(metaclass=RegistryABCMeta, base=True): self.store[target] = data def tag_separator(self, stored_tags: list[Tag]): + """返回分离好的正反tag元组""" subscribed_tags = [] banned_tags = [] for tag in stored_tags: diff --git a/tests/platforms/static/bilibili_bing_list.json b/tests/platforms/static/bilibili_bing_list.json index ce66e40..8493aaf 100644 --- a/tests/platforms/static/bilibili_bing_list.json +++ b/tests/platforms/static/bilibili_bing_list.json @@ -1 +1,2078 @@ -{"code":0,"msg":"","message":"","data":{"has_more":1,"cards":[{"desc":{"uid":8412516,"type":2,"rid":165322654,"acl":0,"view":8149,"repost":1,"comment":25,"like":251,"is_liked":0,"dynamic_id":569475202750529681,"timestamp":1631429678,"pre_dy_id":0,"orig_dy_id":0,"orig_type":0,"user_profile":{"info":{"uid":8412516,"uname":"罗德岛蜜饼工坊","face":"https://i0.hdslb.com/bfs/face/00776b6ddde4874af87b8bc2870da86ed39c2c80.jpg"},"card":{"official_verify":{"type":-1,"desc":""}},"vip":{"vipType":1,"vipDueDate":1626364800000,"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,"stype":0,"r_type":0,"inner_id":0,"status":1,"dynamic_id_str":"569475202750529681","pre_dy_id_str":"0","orig_dy_id_str":"0","rid_str":"165322654"},"card":"{\"item\":{\"at_control\":\"\",\"category\":\"daily\",\"description\":\"最新的9.16轮换池预测图来啦[打call][打call]\\n顺便捞一捞本期轮换池预测视频[doge][doge]视频最后有彩蛋性质预测哦[脱单doge][脱单doge]本次轮换池预测图也有彩蛋(诶 就喜欢 one more thing 就是玩诶[墨镜][墨镜])\",\"id\":165322654,\"is_fav\":0,\"pictures\":[{\"img_height\":1080,\"img_size\":1074.380004882812,\"img_src\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/album\\/676ec47adae184ad6ad2193d2f92c5c2b9f82336.jpg\",\"img_tags\":null,\"img_width\":2160}],\"pictures_count\":1,\"reply\":25,\"role\":[],\"settings\":{\"copy_forbidden\":\"0\"},\"source\":[],\"title\":\"\",\"upload_time\":1631429678},\"user\":{\"head_url\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/face\\/00776b6ddde4874af87b8bc2870da86ed39c2c80.jpg\",\"name\":\"罗德岛蜜饼工坊\",\"uid\":8412516,\"vip\":{\"avatar_subscript\":0,\"due_date\":1626364800000,\"label\":{\"label_theme\":\"\",\"path\":\"\",\"text\":\"\"},\"nickname_color\":\"\",\"status\":0,\"theme_type\":0,\"type\":1,\"vip_pay_type\":0}}}","extend_json":"{\"\":{\"ugc\":{\"ugc_id\":335464825}},\"from\":{\"emoji_type\":1,\"verify\":{\"asw\":{},\"cc\":{},\"csw\":{},\"dc\":{},\"gc\":{},\"ra\":{},\"sp\":{},\"sw\":{},\"ur\":{}}},\"like_icon\":{\"action\":\"\",\"action_url\":\"\",\"end\":\"\",\"end_url\":\"\",\"start\":\"\",\"start_url\":\"\"}}","extra":{"is_space_top":0},"display":{"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},{"emoji_name":"[墨镜]","id":1953,"package_id":1,"state":0,"type":1,"attr":0,"text":"[墨镜]","url":"https://i0.hdslb.com/bfs/emote/3a03aebfc06339d86a68c2d893303b46f4b85771.png","meta":{"size":1},"mtime":1597738918},{"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},{"emoji_name":"[脱单doge]","id":3301,"package_id":1,"state":0,"type":1,"attr":0,"text":"[脱单doge]","url":"https://i0.hdslb.com/bfs/emote/bf7e00ecab02171f8461ee8cf439c73db9797748.png","meta":{"size":1},"mtime":1613231074}]},"relation":{"status":1,"is_follow":0,"is_followed":0},"comment_info":{"comment_ids":""},"add_on_card_info":[{"add_on_card_show_type":5,"ugc_attach_card":{"type":"ugc","head_text":"","title":"【明日方舟】伊芙利特的轮换池作业#04:9.16轮换池预测","image_url":"https://i2.hdslb.com/bfs/archive/4558d4098ef67d826de99d864ed35af64abf54eb.jpg","desc_second":"1.5万观看 87弹幕","play_url":"https://www.bilibili.com/video/BV1tA411F73r","duration":"10:44","multi_line":true,"oid_str":"335464825"}}]}},{"desc":{"uid":8412516,"type":1,"rid":569448354911038740,"view":10002,"repost":1,"comment":9,"like":155,"is_liked":0,"dynamic_id":569448354910819194,"timestamp":1631423427,"pre_dy_id":569445713500670069,"orig_dy_id":569445713500670069,"orig_type":8,"user_profile":{"info":{"uid":8412516,"uname":"罗德岛蜜饼工坊","face":"https://i0.hdslb.com/bfs/face/00776b6ddde4874af87b8bc2870da86ed39c2c80.jpg"},"card":{"official_verify":{"type":-1,"desc":""}},"vip":{"vipType":1,"vipDueDate":1626364800000,"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,"r_type":1,"status":1,"dynamic_id_str":"569448354910819194","pre_dy_id_str":"569445713500670069","orig_dy_id_str":"569445713500670069","rid_str":"569448354911038740","origin":{"uid":161775300,"type":8,"rid":420408148,"acl":0,"view":911594,"repost":156,"like":0,"dynamic_id":569445713500670069,"timestamp":1631422812,"pre_dy_id":0,"orig_dy_id":0,"uid_type":1,"stype":0,"r_type":1,"inner_id":0,"status":1,"dynamic_id_str":"569445713500670069","pre_dy_id_str":"0","orig_dy_id_str":"0","rid_str":"420408148","bvid":"BV1E3411q7nU"}},"card":"{ \"user\": { \"uid\": 8412516, \"uname\": \"罗德岛蜜饼工坊\", \"face\": \"https:\\/\\/i0.hdslb.com\\/bfs\\/face\\/00776b6ddde4874af87b8bc2870da86ed39c2c80.jpg\" }, \"item\": { \"rp_id\": 569448354911038740, \"uid\": 8412516, \"content\": \"答案揭晓:宿舍!来看看投票结果\\nhttps:\\/\\/t.bilibili.com\\/568093580488553786\", \"ctrl\": \"\", \"orig_dy_id\": 569445713500670069, \"pre_dy_id\": 569445713500670069, \"timestamp\": 1631423427, \"reply\": 9, \"orig_type\": 8 }, \"origin\": \"{\\\"aid\\\":420408148,\\\"attribute\\\":0,\\\"cid\\\":405963622,\\\"copyright\\\":1,\\\"ctime\\\":1631422804,\\\"desc\\\":\\\"《可露希尔的秘密档案》\\\\n11:来宿舍休息一下吧 \\\\n档案来源:lambda:\\\\\\\\罗德岛内务\\\\\\\\秘密档案 \\\\n发布时间:9\\\\\\/12 1:00 P.M. \\\\n档案类型:可见 \\\\n档案描述:今天请了病假在宿舍休息。很舒适。 \\\\n提供者:赫默\\\",\\\"dimension\\\":{\\\"height\\\":1080,\\\"rotate\\\":0,\\\"width\\\":1920},\\\"duration\\\":123,\\\"dynamic\\\":\\\"#可露希尔的秘密档案# \\\\n11:来宿舍休息一下吧 \\\\n档案来源:lambda:\\\\\\\\罗德岛内务\\\\\\\\秘密档案 \\\\n发布时间:9\\\\\\/12 1:00 P.M. \\\\n档案类型:可见 \\\\n档案描述:今天请了病假在宿舍休息。很舒适。 \\\\n提供者:赫默\\\",\\\"first_frame\\\":\\\"https:\\\\\\/\\\\\\/i1.hdslb.com\\\\\\/bfs\\\\\\/storyff\\\\\\/n210910a23nkzbjqpmaxi33e6m6eln5g_firsti.jpg\\\",\\\"jump_url\\\":\\\"bilibili:\\\\\\/\\\\\\/video\\\\\\/420408148\\\\\\/?page=1&player_preload=null&player_width=1920&player_height=1080&player_rotate=0\\\",\\\"owner\\\":{\\\"face\\\":\\\"https:\\\\\\/\\\\\\/i0.hdslb.com\\\\\\/bfs\\\\\\/face\\\\\\/89154378c06a5ed332c40c2ca56f50cd641c0c90.jpg\\\",\\\"mid\\\":161775300,\\\"name\\\":\\\"明日方舟\\\"},\\\"pic\\\":\\\"https:\\\\\\/\\\\\\/i2.hdslb.com\\\\\\/bfs\\\\\\/archive\\\\\\/21a6c7ce0baf767d99e81a450590f4ddfdc585ea.jpg\\\",\\\"player_info\\\":null,\\\"pubdate\\\":1631422802,\\\"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},\\\"share_subtitle\\\":\\\"已观看31.0万次\\\",\\\"short_link\\\":\\\"https:\\\\\\/\\\\\\/b23.tv\\\\\\/BV1E3411q7nU\\\",\\\"short_link_v2\\\":\\\"https:\\\\\\/\\\\\\/b23.tv\\\\\\/BV1E3411q7nU\\\",\\\"stat\\\":{\\\"aid\\\":420408148,\\\"coin\\\":6848,\\\"danmaku\\\":1187,\\\"dislike\\\":0,\\\"favorite\\\":4776,\\\"his_rank\\\":0,\\\"like\\\":43653,\\\"now_rank\\\":0,\\\"reply\\\":3469,\\\"share\\\":910,\\\"view\\\":313791},\\\"state\\\":0,\\\"tid\\\":27,\\\"title\\\":\\\"《可露希尔的秘密档案》11话:来宿舍休息一下吧\\\",\\\"tname\\\":\\\"综合\\\",\\\"videos\\\":1}\", \"origin_extend_json\": \"{\\\"\\\":{\\\"game\\\":{\\\"game_id\\\":101772,\\\"platform\\\":\\\"1,2\\\"},\\\"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}}\", \"origin_user\": { \"info\": { \"uid\": 161775300, \"uname\": \"明日方舟\", \"face\": \"https:\\/\\/i1.hdslb.com\\/bfs\\/face\\/89154378c06a5ed332c40c2ca56f50cd641c0c90.jpg\" }, \"card\": { \"official_verify\": { \"type\": 1, \"desc\": \"明日方舟官方账号\" } }, \"vip\": { \"vipType\": 2, \"vipDueDate\": 1646150400000, \"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\": 5305, \"name\": \"明日方舟音律系列\", \"image\": \"https:\\/\\/i0.hdslb.com\\/bfs\\/garb\\/item\\/615a1653281141ddf64cbb98c792ddaee78f7f40.png\", \"expire\": 0, \"image_enhance\": \"https:\\/\\/i0.hdslb.com\\/bfs\\/garb\\/item\\/516ecdf2d495a62f1bac31497c831b711823140c.webp\", \"image_enhance_frame\": \"https:\\/\\/i0.hdslb.com\\/bfs\\/garb\\/item\\/c0751afbf950373c260254d02768eabf30ff3906.png\" }, \"rank\": \"10000\", \"sign\": \"重铸未来 方舟启航\", \"level_info\": { \"current_level\": 6 } }, \"activity_infos\": { \"details\": [ { \"type\": 2, \"detail\": \"{\\\"icon\\\":\\\"https:\\\\\\/\\\\\\/i0.hdslb.com\\\\\\/bfs\\\\\\/album\\\\\\/4afb1d524cbd1aa8d4ac97f61e599d067169d646.png\\\",\\\"link\\\":\\\"bilibili:\\\\\\/\\\\\\/pegasus\\\\\\/hotpage\\\",\\\"text\\\":\\\"热门\\\"}\" } ] } }","extend_json":"{\"from\":{\"emoji_type\":1,\"up_close_comment\":0},\"like_icon\":{\"action\":\"\",\"action_url\":\"\",\"end\":\"\",\"end_url\":\"\",\"start\":\"\",\"start_url\":\"\"}}","extra":{"is_space_top":0},"display":{"origin":{"topic_info":{"topic_details":[{"topic_id":19501473,"topic_name":"可露希尔的秘密档案","is_activity":1,"topic_link":"https://www.bilibili.com/blackboard/dynamic/132290"},{"topic_id":4610466,"topic_name":"明日方舟","is_activity":0,"topic_link":""}]},"usr_action_txt":"投稿了视频","relation":{"status":1,"is_follow":0,"is_followed":0},"attach_card":{"type":"game","head_text":"相关游戏","cover_url":"https://i0.hdslb.com/bfs/game/debad5150aa1aeb27dd3bcbac4588c54dc7b5d10.png","cover_type":1,"title":"明日方舟","desc_first":"策略/二次元/美少女","desc_second":"主线【风暴瞭望】即将开放,限时纪念活动即将开启","jump_url":"https://www.biligame.com/detail?id=101772&sourceFrom=1005","button":{"type":1,"jump_style":{"text":"进入"},"jump_url":"https://www.biligame.com/detail?id=101772&sourceFrom=1005"},"oid_str":"101772"},"tags":[{"tag_type":4,"sub_type":2,"icon":"https://i0.hdslb.com/bfs/album/4afb1d524cbd1aa8d4ac97f61e599d067169d646.png","text":"热门","link":"bilibili://pegasus/hotpage?topic_from=topic-card&name=%E7%83%AD%E9%97%A8","sub_module":"hot"}],"add_on_card_info":[{"add_on_card_show_type":2,"attach_card":{"type":"game","head_text":"相关游戏","cover_url":"https://i0.hdslb.com/bfs/game/debad5150aa1aeb27dd3bcbac4588c54dc7b5d10.png","cover_type":1,"title":"明日方舟","desc_first":"策略/二次元/美少女","desc_second":"主线【风暴瞭望】即将开放,限时纪念活动即将开启","jump_url":"https://www.biligame.com/detail?id=101772&sourceFrom=1005","button":{"type":1,"jump_style":{"text":"进入"},"jump_url":"https://www.biligame.com/detail?id=101772&sourceFrom=1005"},"oid_str":"101772"}}],"show_tip":{"del_tip":"要删除动态吗?"},"cover_play_icon_url":"https://i0.hdslb.com/bfs/album/2269afa7897830b397797ebe5f032b899b405c67.png"},"relation":{"status":1,"is_follow":0,"is_followed":0},"comment_info":{"comment_ids":""}}},{"desc":{"uid":8412516,"type":8,"rid":975400699,"acl":0,"view":14173,"repost":2,"like":495,"is_liked":0,"dynamic_id":569384016297146454,"timestamp":1631408447,"pre_dy_id":0,"orig_dy_id":0,"orig_type":0,"user_profile":{"info":{"uid":8412516,"uname":"罗德岛蜜饼工坊","face":"https://i0.hdslb.com/bfs/face/00776b6ddde4874af87b8bc2870da86ed39c2c80.jpg"},"card":{"official_verify":{"type":-1,"desc":""}},"vip":{"vipType":1,"vipDueDate":1626364800000,"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,"stype":0,"r_type":1,"inner_id":0,"status":1,"dynamic_id_str":"569384016297146454","pre_dy_id_str":"0","orig_dy_id_str":"0","rid_str":"975400699","bvid":"BV1K44y1h7Xg"},"card":"{\"aid\":975400699,\"attribute\":0,\"cid\":406644689,\"copyright\":1,\"ctime\":1631408447,\"desc\":\"本系列视频为饼组成员的有趣直播录播,主要内容为方舟相关,未来可能系列其他视频会包含部分饼组团建日常等。仅为娱乐性视频,内容与常规饼学预测无关。视频仅为当期主播主观观点,不代表饼组观点。仅供娱乐。\\n\\n直播主播:@寒蝉慕夏 \\n后期剪辑:@Melodiesviel \\n\\n本群视频为9.11组员慕夏直播录播,包含慕夏对新PV的个人解读,风笛厨力疯狂放出,CP言论输出,9.16轮换池预测视频分析和理智规划杂谈内容。\\n注意:内含大量个人性质对风笛的厨力观点,与多CP混乱发言,不适者请及时点击退出或跳到下一片段。\",\"dimension\":{\"height\":1080,\"rotate\":0,\"width\":1920},\"duration\":4318,\"dynamic\":\"昨天慕夏直播的录播剪辑版,关于新PV,慕夏对风笛的看法,新一期轮换池预测视频的分析以及理智规划。错过直播且有兴趣的朋友可以看啦。\",\"first_frame\":\"https:\\/\\/i1.hdslb.com\\/bfs\\/storyff\\/n210911a297vzlaeyhb8g26etg86gci5_firsti.jpg\",\"jump_url\":\"bilibili:\\/\\/video\\/975400699\\/?page=1&player_preload=null&player_width=1920&player_height=1080&player_rotate=0\",\"owner\":{\"face\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/face\\/00776b6ddde4874af87b8bc2870da86ed39c2c80.jpg\",\"mid\":8412516,\"name\":\"罗德岛蜜饼工坊\"},\"pic\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/archive\\/c8cb0073819a0c8171db5009002eec19a80c85f6.jpg\",\"player_info\":null,\"pubdate\":1631408446,\"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\\/BV1K44y1h7Xg\",\"short_link_v2\":\"https:\\/\\/b23.tv\\/BV1K44y1h7Xg\",\"stat\":{\"aid\":975400699,\"coin\":46,\"danmaku\":156,\"dislike\":0,\"favorite\":45,\"his_rank\":0,\"like\":495,\"now_rank\":0,\"reply\":45,\"share\":6,\"view\":3293},\"state\":0,\"tid\":172,\"title\":\"阿消的罗德岛闲谈直播#01:《女人最喜欢的女人,就是在战场上熠熠生辉的女人》\",\"tname\":\"手机游戏\",\"up_from_v2\":35,\"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}}","extra":{"is_space_top":0},"activity_infos":{"details":[{"type":1,"detail":"{\"is_show\":1,\"topic_id\":10511051,\"topic_link\":\"\",\"topic_name\":\"打卡挑战\"}"}]},"display":{"topic_info":{"topic_details":[{"topic_id":4610466,"topic_name":"明日方舟","is_activity":0,"topic_link":""},{"topic_id":133748,"topic_name":"风笛","is_activity":0,"topic_link":""},{"topic_id":21641728,"topic_name":"琴柳","is_activity":0,"topic_link":""},{"topic_id":20833282,"topic_name":"风暴瞭望","is_activity":0,"topic_link":""},{"topic_id":15127509,"topic_name":"轮换池","is_activity":0,"topic_link":""},{"topic_id":10511051,"topic_name":"打卡挑战","is_activity":1,"topic_link":""}]},"usr_action_txt":"投稿了视频","relation":{"status":1,"is_follow":0,"is_followed":0},"comment_info":{"comment_ids":""},"tags":[{"tag_type":3,"sub_type":1,"icon":"https://i0.hdslb.com/bfs/album/4c1880a3e9d5fd2c72b339929a73a4b83d2bab93.png","text":"打卡挑战","link":"","rid":10511051,"sub_module":"topic"}],"show_tip":{"del_tip":"要删除动态吗?"},"cover_play_icon_url":"https://i0.hdslb.com/bfs/album/2269afa7897830b397797ebe5f032b899b405c67.png"}},{"desc":{"uid":8412516,"type":2,"rid":165204278,"view":13591,"repost":0,"comment":5,"like":322,"is_liked":0,"dynamic_id":569221082416208390,"timestamp":1631370511,"orig_type":0,"user_profile":{"info":{"uid":8412516,"uname":"罗德岛蜜饼工坊","face":"https://i0.hdslb.com/bfs/face/00776b6ddde4874af87b8bc2870da86ed39c2c80.jpg"},"card":{"official_verify":{"type":-1,"desc":""}},"vip":{"vipType":1,"vipDueDate":1626364800000,"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,"r_type":1,"status":1,"dynamic_id_str":"569221082416208390","pre_dy_id_str":"0","orig_dy_id_str":"0","rid_str":"165204278"},"card":"{\"item\":{\"at_control\":\"\",\"category\":\"daily\",\"description\":\"视频更新预告\",\"id\":165204278,\"is_fav\":0,\"pictures\":[{\"img_height\":607,\"img_size\":75,\"img_src\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/archive\\/c8cb0073819a0c8171db5009002eec19a80c85f6.jpg\",\"img_tags\":null,\"img_width\":972}],\"pictures_count\":1,\"reply\":5,\"role\":[],\"settings\":{\"copy_forbidden\":\"0\"},\"source\":[],\"title\":\"\",\"upload_time\":1631370511},\"user\":{\"head_url\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/face\\/00776b6ddde4874af87b8bc2870da86ed39c2c80.jpg\",\"name\":\"罗德岛蜜饼工坊\",\"uid\":8412516,\"vip\":{\"avatar_subscript\":0,\"due_date\":1626364800000,\"label\":{\"label_theme\":\"\",\"path\":\"\",\"text\":\"\"},\"nickname_color\":\"\",\"status\":0,\"theme_type\":0,\"type\":1,\"vip_pay_type\":0}}}","extend_json":"{\"\":{\"reserve\":{\"reserve_id\":146857}},\"from\":{\"audit_level\":100,\"from\":\"draft_video.reserve.svr\",\"up_close_comment\":0},\"like_icon\":{\"action\":\"\",\"action_url\":\"\",\"end\":\"\",\"end_url\":\"\",\"start\":\"\",\"start_url\":\"\"}}","extra":{"is_space_top":0},"display":{"relation":{"status":1,"is_follow":0,"is_followed":0},"comment_info":{"comment_ids":""},"add_on_card_info":[{"add_on_card_show_type":6,"reserve_attach_card":{"type":"reserve","title":"预告:阿消的罗德岛闲谈直播#01:《女人最喜欢的女人,就是在战场上熠熠生辉的女人》","state":0,"reserve_total":197,"desc_first":{"text":"预计今天 09:00发布","style":0},"desc_second":"3293观看","jump_url":"https://www.bilibili.com/video/BV1K44y1h7Xg","oid_str":"146857","reserve_button":{"type":1,"jump_style":{"text":"去观看"},"jump_url":"https://www.bilibili.com/video/BV1K44y1h7Xg","status":1},"origin_state":150,"stype":1,"livePlanStartTime":1631408418,"up_mid":8412516,"show_desc_second":true}}]}},{"desc":{"uid":8412516,"type":1,"rid":569189870891453975,"acl":0,"view":13474,"repost":0,"comment":23,"like":167,"is_liked":0,"dynamic_id":569189870889648693,"timestamp":1631363244,"pre_dy_id":568484078920438420,"orig_dy_id":565815693047293346,"orig_type":64,"user_profile":{"info":{"uid":8412516,"uname":"罗德岛蜜饼工坊","face":"https://i0.hdslb.com/bfs/face/00776b6ddde4874af87b8bc2870da86ed39c2c80.jpg"},"card":{"official_verify":{"type":-1,"desc":""}},"vip":{"vipType":1,"vipDueDate":1626364800000,"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,"stype":0,"r_type":1,"inner_id":0,"status":1,"dynamic_id_str":"569189870889648693","pre_dy_id_str":"568484078920438420","orig_dy_id_str":"565815693047293346","rid_str":"569189870891453975","origin":{"uid":8412516,"type":64,"rid":12993752,"view":67017,"repost":17,"dynamic_id":565815693047293346,"timestamp":1630577632,"uid_type":1,"r_type":1,"status":1,"dynamic_id_str":"565815693047293346","pre_dy_id_str":"0","orig_dy_id_str":"0","rid_str":"12993752"},"previous":{"uid":8412516,"type":1,"rid":568484078913235403,"view":17673,"repost":2,"dynamic_id":568484078920438420,"timestamp":1631198914,"pre_dy_id":568387154389567443,"orig_dy_id":565815693047293346,"uid_type":1,"r_type":1,"status":1,"dynamic_id_str":"568484078920438420","pre_dy_id_str":"568387154389567443","orig_dy_id_str":"565815693047293346","rid_str":"568484078913235403","origin":{"uid":8412516,"type":64,"rid":12993752,"dynamic_id":565815693047293346,"timestamp":1630577632,"uid_type":1,"r_type":1,"status":1,"dynamic_id_str":"565815693047293346","pre_dy_id_str":"0","orig_dy_id_str":"0","rid_str":"12993752"},"previous":{"uid":8412516,"type":1,"rid":568387154387891793,"acl":0,"view":0,"repost":0,"like":0,"dynamic_id":568387154389567443,"timestamp":1631176347,"pre_dy_id":568000577272362574,"orig_dy_id":565815693047293346,"uid_type":1,"stype":0,"r_type":1,"inner_id":0,"status":1,"dynamic_id_str":"568387154389567443","pre_dy_id_str":"568000577272362574","orig_dy_id_str":"565815693047293346","rid_str":"568387154387891793"}}},"card":"{ \"user\": { \"uid\": 8412516, \"uname\": \"罗德岛蜜饼工坊\", \"face\": \"https:\\/\\/i0.hdslb.com\\/bfs\\/face\\/00776b6ddde4874af87b8bc2870da86ed39c2c80.jpg\" }, \"item\": { \"rp_id\": 569189870891453975, \"uid\": 8412516, \"content\": \"#明日方舟##饼学大厦#\\n9.11专栏更新完毕,这还塌了实属没跟新运营对上\\n后边除了周日发饼和PV没提及的中文语音,稳了\\n别忘了来参加#可露希尔的秘密档案#的主题投票\\nhttps:\\/\\/t.bilibili.com\\/568093580488553786?tab=2\", \"ctrl\": \"\", \"orig_dy_id\": 565815693047293346, \"pre_dy_id\": 568484078920438420, \"timestamp\": 1631363244, \"reply\": 23, \"orig_type\": 64 }, \"origin\": \"{ \\\"id\\\": 12993752, \\\"category\\\": { \\\"id\\\": 8, \\\"parent_id\\\": 1, \\\"name\\\": \\\"手机游戏\\\" }, \\\"categories\\\": [ { \\\"id\\\": 1, \\\"parent_id\\\": 0, \\\"name\\\": \\\"游戏\\\" }, { \\\"id\\\": 8, \\\"parent_id\\\": 1, \\\"name\\\": \\\"手机游戏\\\" } ], \\\"title\\\": \\\"【明日方舟】饼学大厦#12~14(风暴瞭望&玛莉娅·临光&红松林&感谢庆典)9.11更新\\\", \\\"summary\\\": \\\"更新记录09.11更新:覆盖09.10更新;以及排期更新,猜测周一周五开活动09.10更新:以周五开活动为底,PV\\\\\\/公告调整位置,整体结构更新09.08更新:饼学大厦#12更新,新增一件六星商店服饰(周日发饼)09.06更新:饼学大厦整栋整栋翻新,改为9.16开主线(四日无饼!)09.05凌晨更新:10.13后的排期(两日无饼,鹰角背刺,心狠手辣)前言感谢楪筱祈ぺ的动态-哔哩哔哩 (bilibili.com) 对饼学的贡献!后续排期:9.17【风暴瞭望】、10.01【玛莉娅·临光】复刻、10.1\\\", \\\"banner_url\\\": \\\"\\\", \\\"template_id\\\": 4, \\\"state\\\": 0, \\\"author\\\": { \\\"mid\\\": 8412516, \\\"name\\\": \\\"罗德岛蜜饼工坊\\\", \\\"face\\\": \\\"https:\\\\\\/\\\\\\/i0.hdslb.com\\\\\\/bfs\\\\\\/face\\\\\\/00776b6ddde4874af87b8bc2870da86ed39c2c80.jpg\\\", \\\"pendant\\\": { \\\"pid\\\": 0, \\\"name\\\": \\\"\\\", \\\"image\\\": \\\"\\\", \\\"expire\\\": 0 }, \\\"official_verify\\\": { \\\"type\\\": -1, \\\"desc\\\": \\\"\\\" }, \\\"nameplate\\\": { \\\"nid\\\": 0, \\\"name\\\": \\\"\\\", \\\"image\\\": \\\"\\\", \\\"image_small\\\": \\\"\\\", \\\"level\\\": \\\"\\\", \\\"condition\\\": \\\"\\\" }, \\\"vip\\\": { \\\"type\\\": 1, \\\"status\\\": 0, \\\"due_date\\\": 0, \\\"vip_pay_type\\\": 0, \\\"theme_type\\\": 0, \\\"label\\\": { \\\"path\\\": \\\"\\\", \\\"text\\\": \\\"\\\", \\\"label_theme\\\": \\\"\\\" }, \\\"avatar_subscript\\\": 0, \\\"nickname_color\\\": \\\"\\\" } }, \\\"reprint\\\": 0, \\\"image_urls\\\": [ \\\"https:\\\\\\/\\\\\\/i0.hdslb.com\\\\\\/bfs\\\\\\/article\\\\\\/e960919dc185d1d9026e8c80bf6d058edbab2e69.jpg\\\" ], \\\"publish_time\\\": 1630577632, \\\"ctime\\\": 1630577338, \\\"stats\\\": { \\\"view\\\": 14767, \\\"favorite\\\": 60, \\\"like\\\": 373, \\\"dislike\\\": 0, \\\"reply\\\": 103, \\\"share\\\": 21, \\\"coin\\\": 32, \\\"dynamic\\\": 0 }, \\\"attributes\\\": 24, \\\"words\\\": 1829, \\\"origin_image_urls\\\": [ \\\"https:\\\\\\/\\\\\\/i0.hdslb.com\\\\\\/bfs\\\\\\/article\\\\\\/5fcc573673cd6fa7204792f231d211472e28bd39.jpg\\\" ], \\\"list\\\": { \\\"id\\\": 383313, \\\"mid\\\": 8412516, \\\"name\\\": \\\"明日方舟饼学预测\\\", \\\"image_url\\\": \\\"\\\", \\\"update_time\\\": 1630577338, \\\"ctime\\\": 1614183370, \\\"publish_time\\\": 1630577632, \\\"summary\\\": \\\"\\\", \\\"words\\\": 8218, \\\"read\\\": 0, \\\"articles_count\\\": 0, \\\"state\\\": 3, \\\"reason\\\": \\\"\\\", \\\"apply_time\\\": \\\"\\\", \\\"check_time\\\": \\\"\\\" }, \\\"is_like\\\": false, \\\"media\\\": { \\\"score\\\": 0, \\\"media_id\\\": 0, \\\"title\\\": \\\"\\\", \\\"cover\\\": \\\"\\\", \\\"area\\\": \\\"\\\", \\\"type_id\\\": 0, \\\"type_name\\\": \\\"\\\", \\\"spoiler\\\": 0, \\\"season_id\\\": 0 }, \\\"apply_time\\\": \\\"\\\", \\\"check_time\\\": \\\"\\\", \\\"original\\\": 1, \\\"act_id\\\": 0, \\\"dispute\\\": null, \\\"authenMark\\\": null, \\\"cover_avid\\\": 0, \\\"top_video_info\\\": null, \\\"type\\\": 0 }\", \"origin_extend_json\": \"{\\\"like_icon\\\":{\\\"action\\\":\\\"\\\",\\\"action_url\\\":\\\"\\\",\\\"end\\\":\\\"\\\",\\\"end_url\\\":\\\"\\\",\\\"start\\\":\\\"\\\",\\\"start_url\\\":\\\"\\\"},\\\"topic\\\":{\\\"is_attach_topic\\\":1}}\", \"origin_user\": { \"info\": { \"uid\": 8412516, \"uname\": \"罗德岛蜜饼工坊\", \"face\": \"https:\\/\\/i0.hdslb.com\\/bfs\\/face\\/00776b6ddde4874af87b8bc2870da86ed39c2c80.jpg\" }, \"card\": { \"official_verify\": { \"type\": -1, \"desc\": \"\" } }, \"vip\": { \"vipType\": 1, \"vipDueDate\": 1626364800000, \"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 } } }","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}}","extra":{"is_space_top":0},"display":{"topic_info":{"topic_details":[{"topic_id":4610466,"topic_name":"明日方舟","is_activity":0,"topic_link":""},{"topic_id":16222309,"topic_name":"饼学大厦","is_activity":0,"topic_link":""},{"topic_id":19501473,"topic_name":"可露希尔的秘密档案","is_activity":1,"topic_link":"https://www.bilibili.com/blackboard/dynamic/132290"}]},"origin":{"topic_info":{"topic_details":[{"topic_id":12189522,"topic_name":"感谢庆典","is_activity":1,"topic_link":"https://www.bilibili.com/blackboard/dynamic/84498"},{"topic_id":4610466,"topic_name":"明日方舟","is_activity":0,"topic_link":""},{"topic_id":21527990,"topic_name":"红松林","is_activity":0,"topic_link":""},{"topic_id":20833282,"topic_name":"风暴瞭望","is_activity":0,"topic_link":""},{"topic_id":20302865,"topic_name":"饼学预测","is_activity":0,"topic_link":""}]},"relation":{"status":1,"is_follow":0,"is_followed":0},"show_tip":{"del_tip":"要删除动态吗?"}},"relation":{"status":1,"is_follow":0,"is_followed":0},"comment_info":{"comment_ids":""},"show_tip":{"del_tip":"要删除动态吗?"}}},{"desc":{"uid":8412516,"type":1,"rid":569107343094504142,"view":15650,"repost":0,"comment":33,"like":215,"is_liked":0,"dynamic_id":569107343093484983,"timestamp":1631344029,"pre_dy_id":569105539209306328,"orig_dy_id":569105539209306328,"orig_type":2,"user_profile":{"info":{"uid":8412516,"uname":"罗德岛蜜饼工坊","face":"https://i0.hdslb.com/bfs/face/00776b6ddde4874af87b8bc2870da86ed39c2c80.jpg"},"card":{"official_verify":{"type":-1,"desc":""}},"vip":{"vipType":1,"vipDueDate":1626364800000,"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,"r_type":1,"status":1,"dynamic_id_str":"569107343093484983","pre_dy_id_str":"569105539209306328","orig_dy_id_str":"569105539209306328","rid_str":"569107343094504142","origin":{"uid":161775300,"type":2,"rid":165109731,"view":1414748,"repost":631,"dynamic_id":569105539209306328,"timestamp":1631343609,"uid_type":1,"r_type":1,"status":1,"dynamic_id_str":"569105539209306328","pre_dy_id_str":"0","orig_dy_id_str":"0","rid_str":"165109731"}},"card":"{ \"user\": { \"uid\": 8412516, \"uname\": \"罗德岛蜜饼工坊\", \"face\": \"https:\\/\\/i0.hdslb.com\\/bfs\\/face\\/00776b6ddde4874af87b8bc2870da86ed39c2c80.jpg\" }, \"item\": { \"rp_id\": 569107343094504142, \"uid\": 8412516, \"content\": \"饼组主线饼学预测——9.11版\\n①今日结果\\n9.11 殿堂上的游禽-星极(x,新运营实锤了)\\n②后续预测\\n9.12 #罗德岛相簿#+#可露希尔的秘密档案#11话\\n9.13 六星先锋(执旗手)干员-琴柳\\n9.14 宣传策略-空弦+家具\\n9.15 轮换池(+中文语音前瞻)\\n9.16 停机\\n9.17 #罗德岛闲逛部#+新六星EP+EP09·风暴瞭望开启\\n9.19 #罗德岛相簿#\", \"ctrl\": \"\", \"orig_dy_id\": 569105539209306328, \"pre_dy_id\": 569105539209306328, \"timestamp\": 1631344029, \"reply\": 33, \"orig_type\": 2 }, \"origin\": \"{\\\"item\\\":{\\\"at_control\\\":\\\"\\\",\\\"category\\\":\\\"daily\\\",\\\"description\\\":\\\"#明日方舟#\\\\n【新增服饰】\\\\n\\\\\\/\\\\\\/殿堂上的游禽 - 星极\\\\n塞壬唱片偶像企划《闪耀阶梯》特供服饰\\\\\\/殿堂上的游禽。星极自费参加了这项企划,尝试着用大众能接受的方式演绎天空之上的故事。\\\\n\\\\n_____________\\\\n谦逊留给观众,骄傲发自歌喉,此夜,唯我璀璨。 \\\",\\\"id\\\":165109731,\\\"is_fav\\\":0,\\\"pictures\\\":[{\\\"img_height\\\":1080,\\\"img_size\\\":2472.5859375,\\\"img_src\\\":\\\"https:\\\\\\/\\\\\\/i0.hdslb.com\\\\\\/bfs\\\\\\/album\\\\\\/1cdd2bf828f56350b90881c4cbe83845bdb76d75.png\\\",\\\"img_tags\\\":null,\\\"img_width\\\":1920},{\\\"img_height\\\":816,\\\"img_size\\\":5333.072265625,\\\"img_src\\\":\\\"https:\\\\\\/\\\\\\/i0.hdslb.com\\\\\\/bfs\\\\\\/album\\\\\\/50735bb4dce5ec875b9f5aa6dd49e4b89baa0bad.gif\\\",\\\"img_tags\\\":null,\\\"img_width\\\":499},{\\\"img_height\\\":816,\\\"img_size\\\":8158.134765625,\\\"img_src\\\":\\\"https:\\\\\\/\\\\\\/i0.hdslb.com\\\\\\/bfs\\\\\\/album\\\\\\/de08b9a0eecd884bc1f45fd22bc239f6bb0d4a8b.gif\\\",\\\"img_tags\\\":null,\\\"img_width\\\":499},{\\\"img_height\\\":816,\\\"img_size\\\":3409.19921875,\\\"img_src\\\":\\\"https:\\\\\\/\\\\\\/i0.hdslb.com\\\\\\/bfs\\\\\\/album\\\\\\/5759352a4a9f83358817ff22744b991816d73382.gif\\\",\\\"img_tags\\\":null,\\\"img_width\\\":499}],\\\"pictures_count\\\":4,\\\"reply\\\":5844,\\\"role\\\":[],\\\"settings\\\":{\\\"copy_forbidden\\\":\\\"0\\\"},\\\"source\\\":[],\\\"title\\\":\\\"\\\",\\\"upload_time\\\":1631343609},\\\"user\\\":{\\\"head_url\\\":\\\"https:\\\\\\/\\\\\\/i1.hdslb.com\\\\\\/bfs\\\\\\/face\\\\\\/89154378c06a5ed332c40c2ca56f50cd641c0c90.jpg\\\",\\\"name\\\":\\\"明日方舟\\\",\\\"uid\\\":161775300,\\\"vip\\\":{\\\"avatar_subscript\\\":1,\\\"due_date\\\":1646150400000,\\\"label\\\":{\\\"label_theme\\\":\\\"annual_vip\\\",\\\"path\\\":\\\"\\\",\\\"text\\\":\\\"年度大会员\\\"},\\\"nickname_color\\\":\\\"#FB7299\\\",\\\"status\\\":1,\\\"theme_type\\\":0,\\\"type\\\":2,\\\"vip_pay_type\\\":0}}}\", \"origin_extend_json\": \"{\\\"\\\":{\\\"game\\\":{\\\"game_id\\\":101772,\\\"platform\\\":\\\"1,2\\\"}},\\\"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}}\", \"origin_user\": { \"info\": { \"uid\": 161775300, \"uname\": \"明日方舟\", \"face\": \"https:\\/\\/i1.hdslb.com\\/bfs\\/face\\/89154378c06a5ed332c40c2ca56f50cd641c0c90.jpg\" }, \"card\": { \"official_verify\": { \"type\": 1, \"desc\": \"明日方舟官方账号\" } }, \"vip\": { \"vipType\": 2, \"vipDueDate\": 1646150400000, \"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\": 5305, \"name\": \"明日方舟音律系列\", \"image\": \"https:\\/\\/i0.hdslb.com\\/bfs\\/garb\\/item\\/615a1653281141ddf64cbb98c792ddaee78f7f40.png\", \"expire\": 0, \"image_enhance\": \"https:\\/\\/i0.hdslb.com\\/bfs\\/garb\\/item\\/516ecdf2d495a62f1bac31497c831b711823140c.webp\", \"image_enhance_frame\": \"https:\\/\\/i0.hdslb.com\\/bfs\\/garb\\/item\\/c0751afbf950373c260254d02768eabf30ff3906.png\" }, \"rank\": \"10000\", \"sign\": \"重铸未来 方舟启航\", \"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}}","extra":{"is_space_top":0},"display":{"topic_info":{"topic_details":[{"topic_id":19505960,"topic_name":"罗德岛相簿","is_activity":0,"topic_link":""},{"topic_id":19501473,"topic_name":"可露希尔的秘密档案","is_activity":1,"topic_link":"https://www.bilibili.com/blackboard/dynamic/132290"},{"topic_id":19504680,"topic_name":"罗德岛闲逛部","is_activity":0,"topic_link":""}]},"origin":{"topic_info":{"topic_details":[{"topic_id":4610466,"topic_name":"明日方舟","is_activity":0,"topic_link":""}]},"relation":{"status":1,"is_follow":0,"is_followed":0},"attach_card":{"type":"game","head_text":"相关游戏","cover_url":"https://i0.hdslb.com/bfs/game/debad5150aa1aeb27dd3bcbac4588c54dc7b5d10.png","cover_type":1,"title":"明日方舟","desc_first":"策略/二次元/美少女","desc_second":"主线【风暴瞭望】即将开放,限时纪念活动即将开启","jump_url":"https://www.biligame.com/detail?id=101772&sourceFrom=1005","button":{"type":1,"jump_style":{"text":"进入"},"jump_url":"https://www.biligame.com/detail?id=101772&sourceFrom=1005"},"oid_str":"101772"},"add_on_card_info":[{"add_on_card_show_type":2,"attach_card":{"type":"game","head_text":"相关游戏","cover_url":"https://i0.hdslb.com/bfs/game/debad5150aa1aeb27dd3bcbac4588c54dc7b5d10.png","cover_type":1,"title":"明日方舟","desc_first":"策略/二次元/美少女","desc_second":"主线【风暴瞭望】即将开放,限时纪念活动即将开启","jump_url":"https://www.biligame.com/detail?id=101772&sourceFrom=1005","button":{"type":1,"jump_style":{"text":"进入"},"jump_url":"https://www.biligame.com/detail?id=101772&sourceFrom=1005"},"oid_str":"101772"}}],"show_tip":{"del_tip":"要删除动态吗?"}},"relation":{"status":1,"is_follow":0,"is_followed":0},"comment_info":{"comment_ids":""},"show_tip":{"del_tip":"要删除动态吗?"}}},{"desc":{"uid":8412516,"type":8,"rid":335464825,"view":17627,"repost":5,"like":1572,"is_liked":0,"dynamic_id":569028375831520374,"timestamp":1631325643,"orig_type":0,"user_profile":{"info":{"uid":8412516,"uname":"罗德岛蜜饼工坊","face":"https://i0.hdslb.com/bfs/face/00776b6ddde4874af87b8bc2870da86ed39c2c80.jpg"},"card":{"official_verify":{"type":-1,"desc":""}},"vip":{"vipType":1,"vipDueDate":1626364800000,"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,"r_type":1,"status":1,"dynamic_id_str":"569028375831520374","pre_dy_id_str":"0","orig_dy_id_str":"0","rid_str":"335464825","bvid":"BV1tA411F73r"},"card":"{\"aid\":335464825,\"attribute\":0,\"cid\":406175333,\"copyright\":1,\"ctime\":1631301491,\"desc\":\"简介:9.16轮换池预测它来了,久违的进店概率百分百预测!究竟是为什么皮肤轮换学要大失败了!皮肤学真的会败北吗?\\n\\n\\n出品:罗德岛蜜饼工坊\\n视频录制:@寒蝉慕夏 \\n文案:@寒蝉慕夏 、@柳陌轩Endivie 、@博尔吉亚7211 \\n后期:@Melodiesviel 、@让你爱上学习 、@とがた \\n校对:@とがた \\n封面:@外星蚂蚁 \\n系列往期:\\n【明日方舟】伊芙利特的轮换池作业#01:8.19轮换池前瞻 BV18L411J74U\\n【明日方舟】伊芙利特的轮换池作业#02:鹰角的自由,异\",\"dimension\":{\"height\":1080,\"rotate\":0,\"width\":1920},\"duration\":644,\"dynamic\":\"是谁要击碎皮肤轮换学!是谁这次百分百进店!One More Thing......\",\"first_frame\":\"https:\\/\\/i2.hdslb.com\\/bfs\\/storyff\\/n210911a27xbp8dv50nx71vk8u8dj0uv_firsti.jpg\",\"jump_url\":\"bilibili:\\/\\/video\\/335464825\\/?page=1&player_preload=null&player_width=1920&player_height=1080&player_rotate=0\",\"owner\":{\"face\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/face\\/00776b6ddde4874af87b8bc2870da86ed39c2c80.jpg\",\"mid\":8412516,\"name\":\"罗德岛蜜饼工坊\"},\"pic\":\"https:\\/\\/i2.hdslb.com\\/bfs\\/archive\\/4558d4098ef67d826de99d864ed35af64abf54eb.jpg\",\"player_info\":null,\"pubdate\":1631325606,\"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\\/BV1tA411F73r\",\"short_link_v2\":\"https:\\/\\/b23.tv\\/BV1tA411F73r\",\"stat\":{\"aid\":335464825,\"coin\":221,\"danmaku\":87,\"dislike\":0,\"favorite\":108,\"his_rank\":0,\"like\":1572,\"now_rank\":0,\"reply\":135,\"share\":43,\"view\":15989},\"state\":0,\"tid\":172,\"title\":\"【明日方舟】伊芙利特的轮换池作业#04:9.16轮换池预测\",\"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}}","extra":{"is_space_top":0},"display":{"topic_info":{"topic_details":[{"topic_id":4610466,"topic_name":"明日方舟","is_activity":0,"topic_link":""},{"topic_id":20955936,"topic_name":"轮换学","is_activity":0,"topic_link":""},{"topic_id":18032856,"topic_name":"常驻标准寻访","is_activity":0,"topic_link":""},{"topic_id":15127509,"topic_name":"轮换池","is_activity":0,"topic_link":""},{"topic_id":10511051,"topic_name":"打卡挑战","is_activity":1,"topic_link":""},{"topic_id":9608827,"topic_name":"舟游","is_activity":0,"topic_link":""}]},"usr_action_txt":"投稿了视频","relation":{"status":1,"is_follow":0,"is_followed":0},"comment_info":{"comments":[{"uid":456873626,"name":"维沐辰","content":"早期慕夏自信预测后发现失误为防止背刺连夜肝视频珍贵影像[藏狐]"}],"emojis":[{"emoji_name":"[藏狐]","url":"https://i0.hdslb.com/bfs/emote/ba0937ef6f3ccca85e2e0047e6263f3b4da37201.png","meta":{"size":1}}],"comment_ids":"5375314021"},"show_tip":{"del_tip":"要删除动态吗?"},"cover_play_icon_url":"https://i0.hdslb.com/bfs/album/2269afa7897830b397797ebe5f032b899b405c67.png"}},{"desc":{"uid":8412516,"type":2,"rid":165045045,"view":16721,"repost":0,"comment":10,"like":214,"is_liked":0,"dynamic_id":569006690537333142,"timestamp":1631320594,"orig_type":0,"user_profile":{"info":{"uid":8412516,"uname":"罗德岛蜜饼工坊","face":"https://i0.hdslb.com/bfs/face/00776b6ddde4874af87b8bc2870da86ed39c2c80.jpg"},"card":{"official_verify":{"type":-1,"desc":""}},"vip":{"vipType":1,"vipDueDate":1626364800000,"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,"r_type":1,"status":1,"dynamic_id_str":"569006690537333142","pre_dy_id_str":"0","orig_dy_id_str":"0","rid_str":"165045045"},"card":"{\"item\":{\"at_control\":\"\",\"category\":\"daily\",\"description\":\"#明日方舟##饼学大厦#\\ncv12993752\\n9.10专栏更新完毕——继PV背刺后,连审核也(悲)\\n以周五开活动为底,PV\\/公告调整位置,整体结构更新\",\"id\":165045045,\"is_fav\":0,\"pictures\":[{\"img_height\":112,\"img_size\":36.4140625,\"img_src\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/album\\/54a09fea5a1b3240d9af288ffe705574ad6a5915.png\",\"img_tags\":null,\"img_width\":1540}],\"pictures_count\":1,\"reply\":10,\"role\":[],\"settings\":{\"copy_forbidden\":\"0\"},\"source\":[],\"title\":\"\",\"upload_time\":1631320594},\"user\":{\"head_url\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/face\\/00776b6ddde4874af87b8bc2870da86ed39c2c80.jpg\",\"name\":\"罗德岛蜜饼工坊\",\"uid\":8412516,\"vip\":{\"avatar_subscript\":0,\"due_date\":1626364800000,\"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\":\"create.dynamic.web\",\"up_close_comment\":0,\"verify\":{}},\"like_icon\":{\"action\":\"\",\"action_url\":\"\",\"end\":\"\",\"end_url\":\"\",\"start\":\"\",\"start_url\":\"\"},\"topic\":{\"is_attach_topic\":1}}","extra":{"is_space_top":0},"display":{"topic_info":{"topic_details":[{"topic_id":4610466,"topic_name":"明日方舟","is_activity":0,"topic_link":""},{"topic_id":16222309,"topic_name":"饼学大厦","is_activity":0,"topic_link":""}]},"relation":{"status":1,"is_follow":0,"is_followed":0},"comment_info":{"comment_ids":""},"show_tip":{"del_tip":"要删除动态吗?"},"rich_text":{"rich_details":[{"jump_uri":"https://www.bilibili.com/read/cv12993752","icon_type":2,"text":"【明日方舟】饼学大厦#12~14(风暴瞭...","orig_text":"cv12993752"}]}}},{"desc":{"uid":8412516,"type":4,"rid":568887466536025305,"acl":0,"view":18179,"repost":1,"comment":20,"like":294,"is_liked":0,"dynamic_id":568887466540903340,"timestamp":1631292835,"pre_dy_id":0,"orig_dy_id":0,"orig_type":0,"user_profile":{"info":{"uid":8412516,"uname":"罗德岛蜜饼工坊","face":"https://i0.hdslb.com/bfs/face/00776b6ddde4874af87b8bc2870da86ed39c2c80.jpg"},"card":{"official_verify":{"type":-1,"desc":""}},"vip":{"vipType":1,"vipDueDate":1626364800000,"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,"stype":0,"r_type":0,"inner_id":0,"status":1,"dynamic_id_str":"568887466540903340","pre_dy_id_str":"0","orig_dy_id_str":"0","rid_str":"568887466536025305"},"card":"{ \"user\": { \"uid\": 8412516, \"uname\": \"罗德岛蜜饼工坊\", \"face\": \"https:\\/\\/i0.hdslb.com\\/bfs\\/face\\/00776b6ddde4874af87b8bc2870da86ed39c2c80.jpg\" }, \"item\": { \"rp_id\": 568887466536025305, \"uid\": 8412516, \"content\": \"[热词系列_知识增加]是谁要击碎皮肤轮换学!是谁这次百分百进店\\n[热词系列_三连]十点见\", \"ctrl\": \"\", \"orig_dy_id\": 0, \"pre_dy_id\": 0, \"timestamp\": 1631292835, \"reply\": 20 } }","extend_json":"{\"\":{\"reserve\":{\"reserve_id\":145512}},\"from\":{\"emoji_type\":1,\"verify\":{\"asw\":{},\"cc\":{},\"csw\":{},\"dc\":{},\"gc\":{},\"ra\":{},\"sp\":{},\"sw\":{},\"ur\":{}}},\"like_icon\":{\"action\":\"\",\"action_url\":\"\",\"end\":\"\",\"end_url\":\"\",\"start\":\"\",\"start_url\":\"\"}}","extra":{"is_space_top":0},"display":{"emoji_info":{"emoji_details":[{"emoji_name":"[热词系列_三连]","id":1483,"package_id":53,"state":0,"type":1,"attr":2,"text":"[热词系列_三连]","url":"https://i0.hdslb.com/bfs/emote/21f15fe11b7a84d2f2121c16dec50a4e4556f865.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},"comment_info":{"comment_ids":""},"add_on_card_info":[{"add_on_card_show_type":6,"reserve_attach_card":{"type":"reserve","title":"预告:伊芙利特的轮换池作业#04期","state":0,"reserve_total":186,"desc_first":{"text":"视频预约","style":0},"desc_second":"1.5万观看","jump_url":"https://www.bilibili.com/video/BV1tA411F73r","oid_str":"145512","reserve_button":{"type":1,"jump_style":{"text":"去观看"},"jump_url":"https://www.bilibili.com/video/BV1tA411F73r","status":1},"origin_state":150,"stype":1,"livePlanStartTime":0,"up_mid":8412516,"show_desc_second":true}}]}},{"desc":{"uid":8412516,"type":1,"rid":568678499200295660,"acl":0,"view":16572,"repost":4,"comment":57,"like":219,"is_liked":0,"dynamic_id":568678499202493661,"timestamp":1631244181,"pre_dy_id":568672623683005903,"orig_dy_id":568672623683005903,"orig_type":8,"user_profile":{"info":{"uid":8412516,"uname":"罗德岛蜜饼工坊","face":"https://i0.hdslb.com/bfs/face/00776b6ddde4874af87b8bc2870da86ed39c2c80.jpg"},"card":{"official_verify":{"type":-1,"desc":""}},"vip":{"vipType":1,"vipDueDate":1626364800000,"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,"stype":0,"r_type":1,"inner_id":0,"status":1,"dynamic_id_str":"568678499202493661","pre_dy_id_str":"568672623683005903","orig_dy_id_str":"568672623683005903","rid_str":"568678499200295660","origin":{"uid":161775300,"type":8,"rid":335406585,"view":1898496,"repost":2123,"dynamic_id":568672623683005903,"timestamp":1631242813,"uid_type":1,"r_type":1,"status":1,"dynamic_id_str":"568672623683005903","pre_dy_id_str":"0","orig_dy_id_str":"0","rid_str":"335406585","bvid":"BV1gA411F7s4"}},"card":"{ \"user\": { \"uid\": 8412516, \"uname\": \"罗德岛蜜饼工坊\", \"face\": \"https:\\/\\/i0.hdslb.com\\/bfs\\/face\\/00776b6ddde4874af87b8bc2870da86ed39c2c80.jpg\" }, \"item\": { \"rp_id\": 568678499200295660, \"uid\": 8412516, \"content\": \"#明日方舟##饼学大厦#\\n饼组主线饼学预测——9.10版\\n①今日结果\\n9.10 PV(x周五没想到吧)\\n②后续预测\\n9.11 六星先锋(执旗手)干员-琴柳\\n9.12 #罗德岛相簿#+#可露希尔的秘密档案#11话\\n9.13 殿堂上的游禽-星极\\n9.14 宣传策略-空弦+家具\\n9.15 轮换池(+中文语音前瞻)\\n9.16 停机更新公告\\n9.17 #罗德岛闲逛部#+新六星EP+EP09·风暴瞭望开启\\n(后边3个活动都是周五开,yj,你好温柔)\\n9.19 #罗德岛相簿#\", \"ctrl\": \"\", \"orig_dy_id\": 568672623683005903, \"pre_dy_id\": 568672623683005903, \"timestamp\": 1631244181, \"reply\": 57, \"orig_type\": 8 }, \"origin\": \"{\\\"aid\\\":335406585,\\\"attribute\\\":0,\\\"cid\\\":405923565,\\\"copyright\\\":1,\\\"ctime\\\":1631242806,\\\"desc\\\":\\\"--重铸未来 方舟启航--\\\\n《明日方舟》主线【风暴瞭望】开放 限时纪念活动宣传pv\\\\n\\\\n↓↓《明日方舟》bilibili服下载↓↓\\\\nhttps:\\\\\\/\\\\\\/www.biligame.com\\\\\\/detail\\\\\\/?id=101772\\\\n\\\\n\\\\n一、主线EP09【风暴瞭望】开放\\\\n二、【小丘上的眠柳】限时寻访开启\\\\n三、新干员登场,【标准寻访】常驻\\\\n四、【怀望桑梓】登录活动开启\\\\n五、【风暴瞭望】开放,限时掉落活动开启\\\\n六、【闪耀阶梯】系列,新装限时上架\\\\n七、【生命之地】系列,限时复刻上架\\\\n八、新增【维多利亚近卫学院宿舍】主题家具,限时\\\",\\\"dimension\\\":{\\\"height\\\":1080,\\\"rotate\\\":0,\\\"width\\\":1920},\\\"duration\\\":147,\\\"dynamic\\\":\\\"--重铸未来 方舟启航--\\\\n《明日方舟》主线【风暴瞭望】开放 限时纪念活动宣传pv\\\\n\\\\n↓↓《明日方舟》bilibili服下载↓↓\\\\nhttps:\\\\\\/\\\\\\/www.biligame.com\\\\\\/detail\\\\\\/?id=101772\\\\n\\\\n\\\\n关于限时纪念活动的具体内容,请持续关注《明日方舟》游戏内公告、官网及官方自媒体账号。\\\",\\\"first_frame\\\":\\\"https:\\\\\\/\\\\\\/i0.hdslb.com\\\\\\/bfs\\\\\\/storyff\\\\\\/n210910a23h7upat6wvgfl3i80ue9aua_firsti.jpg\\\",\\\"jump_url\\\":\\\"bilibili:\\\\\\/\\\\\\/video\\\\\\/335406585\\\\\\/?page=1&player_preload=null&player_width=1920&player_height=1080&player_rotate=0\\\",\\\"owner\\\":{\\\"face\\\":\\\"https:\\\\\\/\\\\\\/i0.hdslb.com\\\\\\/bfs\\\\\\/face\\\\\\/89154378c06a5ed332c40c2ca56f50cd641c0c90.jpg\\\",\\\"mid\\\":161775300,\\\"name\\\":\\\"明日方舟\\\"},\\\"pic\\\":\\\"https:\\\\\\/\\\\\\/i1.hdslb.com\\\\\\/bfs\\\\\\/archive\\\\\\/d194cc26c034cb9fc0a5a55e25f98c0d357dedeb.jpg\\\",\\\"player_info\\\":null,\\\"pubdate\\\":1631242802,\\\"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},\\\"share_subtitle\\\":\\\"已观看176.0万次\\\",\\\"short_link\\\":\\\"https:\\\\\\/\\\\\\/b23.tv\\\\\\/BV1gA411F7s4\\\",\\\"short_link_v2\\\":\\\"https:\\\\\\/\\\\\\/b23.tv\\\\\\/BV1gA411F7s4\\\",\\\"stat\\\":{\\\"aid\\\":335406585,\\\"coin\\\":44601,\\\"danmaku\\\":14670,\\\"dislike\\\":0,\\\"favorite\\\":20251,\\\"his_rank\\\":9,\\\"like\\\":133118,\\\"now_rank\\\":0,\\\"reply\\\":25181,\\\"share\\\":27783,\\\"view\\\":1766087},\\\"state\\\":0,\\\"tid\\\":172,\\\"title\\\":\\\"《明日方舟》主线【风暴瞭望】开放 限时纪念活动宣传pv\\\",\\\"tname\\\":\\\"手机游戏\\\",\\\"videos\\\":1}\", \"origin_extend_json\": \"{\\\"\\\":{\\\"game\\\":{\\\"game_id\\\":101772,\\\"platform\\\":\\\"1,2\\\"},\\\"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}}\", \"origin_user\": { \"info\": { \"uid\": 161775300, \"uname\": \"明日方舟\", \"face\": \"https:\\/\\/i1.hdslb.com\\/bfs\\/face\\/89154378c06a5ed332c40c2ca56f50cd641c0c90.jpg\" }, \"card\": { \"official_verify\": { \"type\": 1, \"desc\": \"明日方舟官方账号\" } }, \"vip\": { \"vipType\": 2, \"vipDueDate\": 1646150400000, \"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\": 5305, \"name\": \"明日方舟音律系列\", \"image\": \"https:\\/\\/i0.hdslb.com\\/bfs\\/garb\\/item\\/615a1653281141ddf64cbb98c792ddaee78f7f40.png\", \"expire\": 0, \"image_enhance\": \"https:\\/\\/i0.hdslb.com\\/bfs\\/garb\\/item\\/516ecdf2d495a62f1bac31497c831b711823140c.webp\", \"image_enhance_frame\": \"https:\\/\\/i0.hdslb.com\\/bfs\\/garb\\/item\\/c0751afbf950373c260254d02768eabf30ff3906.png\" }, \"rank\": \"10000\", \"sign\": \"重铸未来 方舟启航\", \"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}}","extra":{"is_space_top":0},"display":{"topic_info":{"topic_details":[{"topic_id":4610466,"topic_name":"明日方舟","is_activity":0,"topic_link":""},{"topic_id":16222309,"topic_name":"饼学大厦","is_activity":0,"topic_link":""},{"topic_id":19505960,"topic_name":"罗德岛相簿","is_activity":0,"topic_link":""},{"topic_id":19501473,"topic_name":"可露希尔的秘密档案","is_activity":1,"topic_link":"https://www.bilibili.com/blackboard/dynamic/132290"},{"topic_id":19504680,"topic_name":"罗德岛闲逛部","is_activity":0,"topic_link":""}]},"origin":{"topic_info":{"topic_details":[{"topic_id":4610466,"topic_name":"明日方舟","is_activity":0,"topic_link":""},{"topic_id":3007,"topic_name":"手机游戏","is_activity":0,"topic_link":""}]},"usr_action_txt":"投稿了视频","relation":{"status":1,"is_follow":0,"is_followed":0},"attach_card":{"type":"game","head_text":"相关游戏","cover_url":"https://i0.hdslb.com/bfs/game/debad5150aa1aeb27dd3bcbac4588c54dc7b5d10.png","cover_type":1,"title":"明日方舟","desc_first":"策略/二次元/美少女","desc_second":"主线【风暴瞭望】即将开放,限时纪念活动即将开启","jump_url":"https://www.biligame.com/detail?id=101772&sourceFrom=1005","button":{"type":1,"jump_style":{"text":"进入"},"jump_url":"https://www.biligame.com/detail?id=101772&sourceFrom=1005"},"oid_str":"101772"},"add_on_card_info":[{"add_on_card_show_type":2,"attach_card":{"type":"game","head_text":"相关游戏","cover_url":"https://i0.hdslb.com/bfs/game/debad5150aa1aeb27dd3bcbac4588c54dc7b5d10.png","cover_type":1,"title":"明日方舟","desc_first":"策略/二次元/美少女","desc_second":"主线【风暴瞭望】即将开放,限时纪念活动即将开启","jump_url":"https://www.biligame.com/detail?id=101772&sourceFrom=1005","button":{"type":1,"jump_style":{"text":"进入"},"jump_url":"https://www.biligame.com/detail?id=101772&sourceFrom=1005"},"oid_str":"101772"}}],"show_tip":{"del_tip":"要删除动态吗?"},"cover_play_icon_url":"https://i0.hdslb.com/bfs/album/2269afa7897830b397797ebe5f032b899b405c67.png"},"relation":{"status":1,"is_follow":0,"is_followed":0},"comment_info":{"comment_ids":""},"show_tip":{"del_tip":"要删除动态吗?"}}},{"desc":{"uid":8412516,"type":1,"rid":568484078913235403,"view":17673,"repost":2,"comment":21,"like":199,"is_liked":0,"dynamic_id":568484078920438420,"timestamp":1631198914,"pre_dy_id":568387154389567443,"orig_dy_id":565815693047293346,"orig_type":64,"user_profile":{"info":{"uid":8412516,"uname":"罗德岛蜜饼工坊","face":"https://i0.hdslb.com/bfs/face/00776b6ddde4874af87b8bc2870da86ed39c2c80.jpg"},"card":{"official_verify":{"type":-1,"desc":""}},"vip":{"vipType":1,"vipDueDate":1626364800000,"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,"r_type":1,"status":1,"dynamic_id_str":"568484078920438420","pre_dy_id_str":"568387154389567443","orig_dy_id_str":"565815693047293346","rid_str":"568484078913235403","origin":{"uid":8412516,"type":64,"rid":12993752,"view":67017,"repost":17,"dynamic_id":565815693047293346,"timestamp":1630577632,"uid_type":1,"r_type":1,"status":1,"dynamic_id_str":"565815693047293346","pre_dy_id_str":"0","orig_dy_id_str":"0","rid_str":"12993752"},"previous":{"uid":8412516,"type":1,"rid":568387154387891793,"acl":0,"view":12862,"repost":2,"like":0,"dynamic_id":568387154389567443,"timestamp":1631176347,"pre_dy_id":568000577272362574,"orig_dy_id":565815693047293346,"uid_type":1,"stype":0,"r_type":1,"inner_id":0,"status":1,"dynamic_id_str":"568387154389567443","pre_dy_id_str":"568000577272362574","orig_dy_id_str":"565815693047293346","rid_str":"568387154387891793","origin":{"uid":8412516,"type":64,"rid":12993752,"dynamic_id":565815693047293346,"timestamp":1630577632,"uid_type":1,"r_type":1,"status":1,"dynamic_id_str":"565815693047293346","pre_dy_id_str":"0","orig_dy_id_str":"0","rid_str":"12993752"},"previous":{"uid":8412516,"type":1,"rid":568000577273505783,"acl":0,"view":0,"repost":0,"like":0,"dynamic_id":568000577272362574,"timestamp":1631086340,"pre_dy_id":567622607260398211,"orig_dy_id":565815693047293346,"uid_type":1,"stype":0,"r_type":1,"inner_id":0,"status":1,"dynamic_id_str":"568000577272362574","pre_dy_id_str":"567622607260398211","orig_dy_id_str":"565815693047293346","rid_str":"568000577273505783"}}},"card":"{ \"user\": { \"uid\": 8412516, \"uname\": \"罗德岛蜜饼工坊\", \"face\": \"https:\\/\\/i0.hdslb.com\\/bfs\\/face\\/00776b6ddde4874af87b8bc2870da86ed39c2c80.jpg\" }, \"item\": { \"rp_id\": 568484078913235403, \"uid\": 8412516, \"content\": \"#明日方舟##饼学大厦#\\n9.09专栏更新完毕,有惊无险(时间诡异)\\n考虑到近来发饼,b站与微博时间差距不大\\n以后大厦等b站动态出了,直接转官方动态\\n制图更新、专栏替换完毕,再另行转专栏\", \"ctrl\": \"\", \"orig_dy_id\": 565815693047293346, \"pre_dy_id\": 568387154389567443, \"timestamp\": 1631198914, \"reply\": 21, \"orig_type\": 64 }, \"origin\": \"{ \\\"id\\\": 12993752, \\\"category\\\": { \\\"id\\\": 8, \\\"parent_id\\\": 1, \\\"name\\\": \\\"手机游戏\\\" }, \\\"categories\\\": [ { \\\"id\\\": 1, \\\"parent_id\\\": 0, \\\"name\\\": \\\"游戏\\\" }, { \\\"id\\\": 8, \\\"parent_id\\\": 1, \\\"name\\\": \\\"手机游戏\\\" } ], \\\"title\\\": \\\"【明日方舟】饼学大厦#12~14(风暴瞭望&玛莉娅·临光&红松林&感谢庆典)9.11更新\\\", \\\"summary\\\": \\\"更新记录09.11更新:覆盖09.10更新;以及排期更新,猜测周一周五开活动09.10更新:以周五开活动为底,PV\\\\\\/公告调整位置,整体结构更新09.08更新:饼学大厦#12更新,新增一件六星商店服饰(周日发饼)09.06更新:饼学大厦整栋整栋翻新,改为9.16开主线(四日无饼!)09.05凌晨更新:10.13后的排期(两日无饼,鹰角背刺,心狠手辣)前言感谢楪筱祈ぺ的动态-哔哩哔哩 (bilibili.com) 对饼学的贡献!后续排期:9.17【风暴瞭望】、10.01【玛莉娅·临光】复刻、10.1\\\", \\\"banner_url\\\": \\\"\\\", \\\"template_id\\\": 4, \\\"state\\\": 0, \\\"author\\\": { \\\"mid\\\": 8412516, \\\"name\\\": \\\"罗德岛蜜饼工坊\\\", \\\"face\\\": \\\"https:\\\\\\/\\\\\\/i0.hdslb.com\\\\\\/bfs\\\\\\/face\\\\\\/00776b6ddde4874af87b8bc2870da86ed39c2c80.jpg\\\", \\\"pendant\\\": { \\\"pid\\\": 0, \\\"name\\\": \\\"\\\", \\\"image\\\": \\\"\\\", \\\"expire\\\": 0 }, \\\"official_verify\\\": { \\\"type\\\": -1, \\\"desc\\\": \\\"\\\" }, \\\"nameplate\\\": { \\\"nid\\\": 0, \\\"name\\\": \\\"\\\", \\\"image\\\": \\\"\\\", \\\"image_small\\\": \\\"\\\", \\\"level\\\": \\\"\\\", \\\"condition\\\": \\\"\\\" }, \\\"vip\\\": { \\\"type\\\": 1, \\\"status\\\": 0, \\\"due_date\\\": 0, \\\"vip_pay_type\\\": 0, \\\"theme_type\\\": 0, \\\"label\\\": { \\\"path\\\": \\\"\\\", \\\"text\\\": \\\"\\\", \\\"label_theme\\\": \\\"\\\" }, \\\"avatar_subscript\\\": 0, \\\"nickname_color\\\": \\\"\\\" } }, \\\"reprint\\\": 0, \\\"image_urls\\\": [ \\\"https:\\\\\\/\\\\\\/i0.hdslb.com\\\\\\/bfs\\\\\\/article\\\\\\/e960919dc185d1d9026e8c80bf6d058edbab2e69.jpg\\\" ], \\\"publish_time\\\": 1630577632, \\\"ctime\\\": 1630577338, \\\"stats\\\": { \\\"view\\\": 14767, \\\"favorite\\\": 60, \\\"like\\\": 373, \\\"dislike\\\": 0, \\\"reply\\\": 103, \\\"share\\\": 21, \\\"coin\\\": 32, \\\"dynamic\\\": 0 }, \\\"attributes\\\": 24, \\\"words\\\": 1829, \\\"origin_image_urls\\\": [ \\\"https:\\\\\\/\\\\\\/i0.hdslb.com\\\\\\/bfs\\\\\\/article\\\\\\/5fcc573673cd6fa7204792f231d211472e28bd39.jpg\\\" ], \\\"list\\\": { \\\"id\\\": 383313, \\\"mid\\\": 8412516, \\\"name\\\": \\\"明日方舟饼学预测\\\", \\\"image_url\\\": \\\"\\\", \\\"update_time\\\": 1630577338, \\\"ctime\\\": 1614183370, \\\"publish_time\\\": 1630577632, \\\"summary\\\": \\\"\\\", \\\"words\\\": 8218, \\\"read\\\": 0, \\\"articles_count\\\": 0, \\\"state\\\": 3, \\\"reason\\\": \\\"\\\", \\\"apply_time\\\": \\\"\\\", \\\"check_time\\\": \\\"\\\" }, \\\"is_like\\\": false, \\\"media\\\": { \\\"score\\\": 0, \\\"media_id\\\": 0, \\\"title\\\": \\\"\\\", \\\"cover\\\": \\\"\\\", \\\"area\\\": \\\"\\\", \\\"type_id\\\": 0, \\\"type_name\\\": \\\"\\\", \\\"spoiler\\\": 0, \\\"season_id\\\": 0 }, \\\"apply_time\\\": \\\"\\\", \\\"check_time\\\": \\\"\\\", \\\"original\\\": 1, \\\"act_id\\\": 0, \\\"dispute\\\": null, \\\"authenMark\\\": null, \\\"cover_avid\\\": 0, \\\"top_video_info\\\": null, \\\"type\\\": 0 }\", \"origin_extend_json\": \"{\\\"like_icon\\\":{\\\"action\\\":\\\"\\\",\\\"action_url\\\":\\\"\\\",\\\"end\\\":\\\"\\\",\\\"end_url\\\":\\\"\\\",\\\"start\\\":\\\"\\\",\\\"start_url\\\":\\\"\\\"},\\\"topic\\\":{\\\"is_attach_topic\\\":1}}\", \"origin_user\": { \"info\": { \"uid\": 8412516, \"uname\": \"罗德岛蜜饼工坊\", \"face\": \"https:\\/\\/i0.hdslb.com\\/bfs\\/face\\/00776b6ddde4874af87b8bc2870da86ed39c2c80.jpg\" }, \"card\": { \"official_verify\": { \"type\": -1, \"desc\": \"\" } }, \"vip\": { \"vipType\": 1, \"vipDueDate\": 1626364800000, \"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 } } }","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}}","extra":{"is_space_top":0},"display":{"topic_info":{"topic_details":[{"topic_id":4610466,"topic_name":"明日方舟","is_activity":0,"topic_link":""},{"topic_id":16222309,"topic_name":"饼学大厦","is_activity":0,"topic_link":""}]},"origin":{"topic_info":{"topic_details":[{"topic_id":12189522,"topic_name":"感谢庆典","is_activity":1,"topic_link":"https://www.bilibili.com/blackboard/dynamic/84498"},{"topic_id":4610466,"topic_name":"明日方舟","is_activity":0,"topic_link":""},{"topic_id":21527990,"topic_name":"红松林","is_activity":0,"topic_link":""},{"topic_id":20833282,"topic_name":"风暴瞭望","is_activity":0,"topic_link":""},{"topic_id":20302865,"topic_name":"饼学预测","is_activity":0,"topic_link":""}]},"relation":{"status":1,"is_follow":0,"is_followed":0},"show_tip":{"del_tip":"要删除动态吗?"}},"relation":{"status":1,"is_follow":0,"is_followed":0},"comment_info":{"comment_ids":""},"show_tip":{"del_tip":"要删除动态吗?"}}},{"desc":{"uid":8412516,"type":1,"rid":568387154387891793,"acl":0,"view":12862,"repost":2,"comment":31,"like":181,"is_liked":0,"dynamic_id":568387154389567443,"timestamp":1631176347,"pre_dy_id":568000577272362574,"orig_dy_id":565815693047293346,"orig_type":64,"user_profile":{"info":{"uid":8412516,"uname":"罗德岛蜜饼工坊","face":"https://i0.hdslb.com/bfs/face/00776b6ddde4874af87b8bc2870da86ed39c2c80.jpg"},"card":{"official_verify":{"type":-1,"desc":""}},"vip":{"vipType":1,"vipDueDate":1626364800000,"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,"stype":0,"r_type":1,"inner_id":0,"status":1,"dynamic_id_str":"568387154389567443","pre_dy_id_str":"568000577272362574","orig_dy_id_str":"565815693047293346","rid_str":"568387154387891793","origin":{"uid":8412516,"type":64,"rid":12993752,"view":67017,"repost":17,"dynamic_id":565815693047293346,"timestamp":1630577632,"uid_type":1,"r_type":1,"status":1,"dynamic_id_str":"565815693047293346","pre_dy_id_str":"0","orig_dy_id_str":"0","rid_str":"12993752"},"previous":{"uid":8412516,"type":1,"rid":568000577273505783,"acl":0,"view":12337,"repost":1,"like":0,"dynamic_id":568000577272362574,"timestamp":1631086340,"pre_dy_id":567622607260398211,"orig_dy_id":565815693047293346,"uid_type":1,"stype":0,"r_type":1,"inner_id":0,"status":1,"dynamic_id_str":"568000577272362574","pre_dy_id_str":"567622607260398211","orig_dy_id_str":"565815693047293346","rid_str":"568000577273505783"}},"card":"{ \"user\": { \"uid\": 8412516, \"uname\": \"罗德岛蜜饼工坊\", \"face\": \"https:\\/\\/i0.hdslb.com\\/bfs\\/face\\/00776b6ddde4874af87b8bc2870da86ed39c2c80.jpg\" }, \"item\": { \"rp_id\": 568387154387891793, \"uid\": 8412516, \"content\": \"#明日方舟##饼学大厦#\\n饼组主线饼学预测——9.09版\\n①今日结果\\n9.09 五星医疗(行医)干员-桑葚(✓)\\n②后续预测\\n9.10 五星服饰\\n9.11 PV(周六,可能包含复刻)\\n9.12 #罗德岛相簿#+#可露希尔的秘密档案#11话+六星干员\\n9.13 六星服饰\\n9.14 六星服饰+家具\\n9.15 轮换池+停机更新公告\\n9.16 新六星EP+EP09·风暴瞭望开启\\n9.17 #罗德岛闲逛部#\\n9.19 #罗德岛相簿#\", \"ctrl\": \"\", \"orig_dy_id\": 565815693047293346, \"pre_dy_id\": 568000577272362574, \"timestamp\": 1631176347, \"reply\": 31, \"orig_type\": 64 }, \"origin\": \"{ \\\"id\\\": 12993752, \\\"category\\\": { \\\"id\\\": 8, \\\"parent_id\\\": 1, \\\"name\\\": \\\"手机游戏\\\" }, \\\"categories\\\": [ { \\\"id\\\": 1, \\\"parent_id\\\": 0, \\\"name\\\": \\\"游戏\\\" }, { \\\"id\\\": 8, \\\"parent_id\\\": 1, \\\"name\\\": \\\"手机游戏\\\" } ], \\\"title\\\": \\\"【明日方舟】饼学大厦#12~14(风暴瞭望&玛莉娅·临光&红松林&感谢庆典)9.11更新\\\", \\\"summary\\\": \\\"更新记录09.11更新:覆盖09.10更新;以及排期更新,猜测周一周五开活动09.10更新:以周五开活动为底,PV\\\\\\/公告调整位置,整体结构更新09.08更新:饼学大厦#12更新,新增一件六星商店服饰(周日发饼)09.06更新:饼学大厦整栋整栋翻新,改为9.16开主线(四日无饼!)09.05凌晨更新:10.13后的排期(两日无饼,鹰角背刺,心狠手辣)前言感谢楪筱祈ぺ的动态-哔哩哔哩 (bilibili.com) 对饼学的贡献!后续排期:9.17【风暴瞭望】、10.01【玛莉娅·临光】复刻、10.1\\\", \\\"banner_url\\\": \\\"\\\", \\\"template_id\\\": 4, \\\"state\\\": 0, \\\"author\\\": { \\\"mid\\\": 8412516, \\\"name\\\": \\\"罗德岛蜜饼工坊\\\", \\\"face\\\": \\\"https:\\\\\\/\\\\\\/i0.hdslb.com\\\\\\/bfs\\\\\\/face\\\\\\/00776b6ddde4874af87b8bc2870da86ed39c2c80.jpg\\\", \\\"pendant\\\": { \\\"pid\\\": 0, \\\"name\\\": \\\"\\\", \\\"image\\\": \\\"\\\", \\\"expire\\\": 0 }, \\\"official_verify\\\": { \\\"type\\\": -1, \\\"desc\\\": \\\"\\\" }, \\\"nameplate\\\": { \\\"nid\\\": 0, \\\"name\\\": \\\"\\\", \\\"image\\\": \\\"\\\", \\\"image_small\\\": \\\"\\\", \\\"level\\\": \\\"\\\", \\\"condition\\\": \\\"\\\" }, \\\"vip\\\": { \\\"type\\\": 1, \\\"status\\\": 0, \\\"due_date\\\": 0, \\\"vip_pay_type\\\": 0, \\\"theme_type\\\": 0, \\\"label\\\": { \\\"path\\\": \\\"\\\", \\\"text\\\": \\\"\\\", \\\"label_theme\\\": \\\"\\\" }, \\\"avatar_subscript\\\": 0, \\\"nickname_color\\\": \\\"\\\" } }, \\\"reprint\\\": 0, \\\"image_urls\\\": [ \\\"https:\\\\\\/\\\\\\/i0.hdslb.com\\\\\\/bfs\\\\\\/article\\\\\\/e960919dc185d1d9026e8c80bf6d058edbab2e69.jpg\\\" ], \\\"publish_time\\\": 1630577632, \\\"ctime\\\": 1630577338, \\\"stats\\\": { \\\"view\\\": 14767, \\\"favorite\\\": 60, \\\"like\\\": 373, \\\"dislike\\\": 0, \\\"reply\\\": 103, \\\"share\\\": 21, \\\"coin\\\": 32, \\\"dynamic\\\": 0 }, \\\"attributes\\\": 24, \\\"words\\\": 1829, \\\"origin_image_urls\\\": [ \\\"https:\\\\\\/\\\\\\/i0.hdslb.com\\\\\\/bfs\\\\\\/article\\\\\\/5fcc573673cd6fa7204792f231d211472e28bd39.jpg\\\" ], \\\"list\\\": { \\\"id\\\": 383313, \\\"mid\\\": 8412516, \\\"name\\\": \\\"明日方舟饼学预测\\\", \\\"image_url\\\": \\\"\\\", \\\"update_time\\\": 1630577338, \\\"ctime\\\": 1614183370, \\\"publish_time\\\": 1630577632, \\\"summary\\\": \\\"\\\", \\\"words\\\": 8218, \\\"read\\\": 0, \\\"articles_count\\\": 0, \\\"state\\\": 3, \\\"reason\\\": \\\"\\\", \\\"apply_time\\\": \\\"\\\", \\\"check_time\\\": \\\"\\\" }, \\\"is_like\\\": false, \\\"media\\\": { \\\"score\\\": 0, \\\"media_id\\\": 0, \\\"title\\\": \\\"\\\", \\\"cover\\\": \\\"\\\", \\\"area\\\": \\\"\\\", \\\"type_id\\\": 0, \\\"type_name\\\": \\\"\\\", \\\"spoiler\\\": 0, \\\"season_id\\\": 0 }, \\\"apply_time\\\": \\\"\\\", \\\"check_time\\\": \\\"\\\", \\\"original\\\": 1, \\\"act_id\\\": 0, \\\"dispute\\\": null, \\\"authenMark\\\": null, \\\"cover_avid\\\": 0, \\\"top_video_info\\\": null, \\\"type\\\": 0 }\", \"origin_extend_json\": \"{\\\"like_icon\\\":{\\\"action\\\":\\\"\\\",\\\"action_url\\\":\\\"\\\",\\\"end\\\":\\\"\\\",\\\"end_url\\\":\\\"\\\",\\\"start\\\":\\\"\\\",\\\"start_url\\\":\\\"\\\"},\\\"topic\\\":{\\\"is_attach_topic\\\":1}}\", \"origin_user\": { \"info\": { \"uid\": 8412516, \"uname\": \"罗德岛蜜饼工坊\", \"face\": \"https:\\/\\/i0.hdslb.com\\/bfs\\/face\\/00776b6ddde4874af87b8bc2870da86ed39c2c80.jpg\" }, \"card\": { \"official_verify\": { \"type\": -1, \"desc\": \"\" } }, \"vip\": { \"vipType\": 1, \"vipDueDate\": 1626364800000, \"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 } } }","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}}","extra":{"is_space_top":0},"display":{"topic_info":{"topic_details":[{"topic_id":4610466,"topic_name":"明日方舟","is_activity":0,"topic_link":""},{"topic_id":16222309,"topic_name":"饼学大厦","is_activity":0,"topic_link":""},{"topic_id":19505960,"topic_name":"罗德岛相簿","is_activity":0,"topic_link":""},{"topic_id":19501473,"topic_name":"可露希尔的秘密档案","is_activity":1,"topic_link":"https://www.bilibili.com/blackboard/dynamic/132290"},{"topic_id":19504680,"topic_name":"罗德岛闲逛部","is_activity":0,"topic_link":""}]},"origin":{"topic_info":{"topic_details":[{"topic_id":12189522,"topic_name":"感谢庆典","is_activity":1,"topic_link":"https://www.bilibili.com/blackboard/dynamic/84498"},{"topic_id":4610466,"topic_name":"明日方舟","is_activity":0,"topic_link":""},{"topic_id":21527990,"topic_name":"红松林","is_activity":0,"topic_link":""},{"topic_id":20833282,"topic_name":"风暴瞭望","is_activity":0,"topic_link":""},{"topic_id":20302865,"topic_name":"饼学预测","is_activity":0,"topic_link":""}]},"relation":{"status":1,"is_follow":0,"is_followed":0},"show_tip":{"del_tip":"要删除动态吗?"}},"relation":{"status":1,"is_follow":0,"is_followed":0},"comment_info":{"comment_ids":""},"show_tip":{"del_tip":"要删除动态吗?"}}}],"next_offset":568387154389567443,"_gt_":0}} \ No newline at end of file +{ + "code": 0, + "msg": "", + "message": "", + "data": { + "has_more": 1, + "cards": [ + { + "desc": { + "uid": 8412516, + "type": 2, + "rid": 165322654, + "acl": 0, + "view": 8149, + "repost": 1, + "comment": 25, + "like": 251, + "is_liked": 0, + "dynamic_id": 569475202750529681, + "timestamp": 1631429678, + "pre_dy_id": 0, + "orig_dy_id": 0, + "orig_type": 0, + "user_profile": { + "info": { + "uid": 8412516, + "uname": "罗德岛蜜饼工坊", + "face": "https://i0.hdslb.com/bfs/face/00776b6ddde4874af87b8bc2870da86ed39c2c80.jpg" + }, + "card": { + "official_verify": { + "type": -1, + "desc": "" + } + }, + "vip": { + "vipType": 1, + "vipDueDate": 1626364800000, + "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, + "stype": 0, + "r_type": 0, + "inner_id": 0, + "status": 1, + "dynamic_id_str": "569475202750529681", + "pre_dy_id_str": "0", + "orig_dy_id_str": "0", + "rid_str": "165322654" + }, + "card": "{\"item\":{\"at_control\":\"\",\"category\":\"daily\",\"description\":\"最新的9.16轮换池预测图来啦[打call][打call]\\n顺便捞一捞本期轮换池预测视频[doge][doge]视频最后有彩蛋性质预测哦[脱单doge][脱单doge]本次轮换池预测图也有彩蛋(诶 就喜欢 one more thing 就是玩诶[墨镜][墨镜])\",\"id\":165322654,\"is_fav\":0,\"pictures\":[{\"img_height\":1080,\"img_size\":1074.380004882812,\"img_src\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/album\\/676ec47adae184ad6ad2193d2f92c5c2b9f82336.jpg\",\"img_tags\":null,\"img_width\":2160}],\"pictures_count\":1,\"reply\":25,\"role\":[],\"settings\":{\"copy_forbidden\":\"0\"},\"source\":[],\"title\":\"\",\"upload_time\":1631429678},\"user\":{\"head_url\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/face\\/00776b6ddde4874af87b8bc2870da86ed39c2c80.jpg\",\"name\":\"罗德岛蜜饼工坊\",\"uid\":8412516,\"vip\":{\"avatar_subscript\":0,\"due_date\":1626364800000,\"label\":{\"label_theme\":\"\",\"path\":\"\",\"text\":\"\"},\"nickname_color\":\"\",\"status\":0,\"theme_type\":0,\"type\":1,\"vip_pay_type\":0}}}", + "extend_json": "{\"\":{\"ugc\":{\"ugc_id\":335464825}},\"from\":{\"emoji_type\":1,\"verify\":{\"asw\":{},\"cc\":{},\"csw\":{},\"dc\":{},\"gc\":{},\"ra\":{},\"sp\":{},\"sw\":{},\"ur\":{}}},\"like_icon\":{\"action\":\"\",\"action_url\":\"\",\"end\":\"\",\"end_url\":\"\",\"start\":\"\",\"start_url\":\"\"}}", + "extra": { + "is_space_top": 0 + }, + "display": { + "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 + }, + { + "emoji_name": "[墨镜]", + "id": 1953, + "package_id": 1, + "state": 0, + "type": 1, + "attr": 0, + "text": "[墨镜]", + "url": "https://i0.hdslb.com/bfs/emote/3a03aebfc06339d86a68c2d893303b46f4b85771.png", + "meta": { + "size": 1 + }, + "mtime": 1597738918 + }, + { + "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 + }, + { + "emoji_name": "[脱单doge]", + "id": 3301, + "package_id": 1, + "state": 0, + "type": 1, + "attr": 0, + "text": "[脱单doge]", + "url": "https://i0.hdslb.com/bfs/emote/bf7e00ecab02171f8461ee8cf439c73db9797748.png", + "meta": { + "size": 1 + }, + "mtime": 1613231074 + } + ] + }, + "relation": { + "status": 1, + "is_follow": 0, + "is_followed": 0 + }, + "comment_info": { + "comment_ids": "" + }, + "add_on_card_info": [ + { + "add_on_card_show_type": 5, + "ugc_attach_card": { + "type": "ugc", + "head_text": "", + "title": "【明日方舟】伊芙利特的轮换池作业#04:9.16轮换池预测", + "image_url": "https://i2.hdslb.com/bfs/archive/4558d4098ef67d826de99d864ed35af64abf54eb.jpg", + "desc_second": "1.5万观看 87弹幕", + "play_url": "https://www.bilibili.com/video/BV1tA411F73r", + "duration": "10:44", + "multi_line": true, + "oid_str": "335464825" + } + } + ] + } + }, + { + "desc": { + "uid": 8412516, + "type": 1, + "rid": 569448354911038740, + "view": 10002, + "repost": 1, + "comment": 9, + "like": 155, + "is_liked": 0, + "dynamic_id": 569448354910819194, + "timestamp": 1631423427, + "pre_dy_id": 569445713500670069, + "orig_dy_id": 569445713500670069, + "orig_type": 8, + "user_profile": { + "info": { + "uid": 8412516, + "uname": "罗德岛蜜饼工坊", + "face": "https://i0.hdslb.com/bfs/face/00776b6ddde4874af87b8bc2870da86ed39c2c80.jpg" + }, + "card": { + "official_verify": { + "type": -1, + "desc": "" + } + }, + "vip": { + "vipType": 1, + "vipDueDate": 1626364800000, + "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, + "r_type": 1, + "status": 1, + "dynamic_id_str": "569448354910819194", + "pre_dy_id_str": "569445713500670069", + "orig_dy_id_str": "569445713500670069", + "rid_str": "569448354911038740", + "origin": { + "uid": 161775300, + "type": 8, + "rid": 420408148, + "acl": 0, + "view": 911594, + "repost": 156, + "like": 0, + "dynamic_id": 569445713500670069, + "timestamp": 1631422812, + "pre_dy_id": 0, + "orig_dy_id": 0, + "uid_type": 1, + "stype": 0, + "r_type": 1, + "inner_id": 0, + "status": 1, + "dynamic_id_str": "569445713500670069", + "pre_dy_id_str": "0", + "orig_dy_id_str": "0", + "rid_str": "420408148", + "bvid": "BV1E3411q7nU" + } + }, + "card": "{ \"user\": { \"uid\": 8412516, \"uname\": \"罗德岛蜜饼工坊\", \"face\": \"https:\\/\\/i0.hdslb.com\\/bfs\\/face\\/00776b6ddde4874af87b8bc2870da86ed39c2c80.jpg\" }, \"item\": { \"rp_id\": 569448354911038740, \"uid\": 8412516, \"content\": \"答案揭晓:宿舍!来看看投票结果\\nhttps:\\/\\/t.bilibili.com\\/568093580488553786\", \"ctrl\": \"\", \"orig_dy_id\": 569445713500670069, \"pre_dy_id\": 569445713500670069, \"timestamp\": 1631423427, \"reply\": 9, \"orig_type\": 8 }, \"origin\": \"{\\\"aid\\\":420408148,\\\"attribute\\\":0,\\\"cid\\\":405963622,\\\"copyright\\\":1,\\\"ctime\\\":1631422804,\\\"desc\\\":\\\"《可露希尔的秘密档案》\\\\n11:来宿舍休息一下吧 \\\\n档案来源:lambda:\\\\\\\\罗德岛内务\\\\\\\\秘密档案 \\\\n发布时间:9\\\\\\/12 1:00 P.M. \\\\n档案类型:可见 \\\\n档案描述:今天请了病假在宿舍休息。很舒适。 \\\\n提供者:赫默\\\",\\\"dimension\\\":{\\\"height\\\":1080,\\\"rotate\\\":0,\\\"width\\\":1920},\\\"duration\\\":123,\\\"dynamic\\\":\\\"#可露希尔的秘密档案# \\\\n11:来宿舍休息一下吧 \\\\n档案来源:lambda:\\\\\\\\罗德岛内务\\\\\\\\秘密档案 \\\\n发布时间:9\\\\\\/12 1:00 P.M. \\\\n档案类型:可见 \\\\n档案描述:今天请了病假在宿舍休息。很舒适。 \\\\n提供者:赫默\\\",\\\"first_frame\\\":\\\"https:\\\\\\/\\\\\\/i1.hdslb.com\\\\\\/bfs\\\\\\/storyff\\\\\\/n210910a23nkzbjqpmaxi33e6m6eln5g_firsti.jpg\\\",\\\"jump_url\\\":\\\"bilibili:\\\\\\/\\\\\\/video\\\\\\/420408148\\\\\\/?page=1&player_preload=null&player_width=1920&player_height=1080&player_rotate=0\\\",\\\"owner\\\":{\\\"face\\\":\\\"https:\\\\\\/\\\\\\/i0.hdslb.com\\\\\\/bfs\\\\\\/face\\\\\\/89154378c06a5ed332c40c2ca56f50cd641c0c90.jpg\\\",\\\"mid\\\":161775300,\\\"name\\\":\\\"明日方舟\\\"},\\\"pic\\\":\\\"https:\\\\\\/\\\\\\/i2.hdslb.com\\\\\\/bfs\\\\\\/archive\\\\\\/21a6c7ce0baf767d99e81a450590f4ddfdc585ea.jpg\\\",\\\"player_info\\\":null,\\\"pubdate\\\":1631422802,\\\"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},\\\"share_subtitle\\\":\\\"已观看31.0万次\\\",\\\"short_link\\\":\\\"https:\\\\\\/\\\\\\/b23.tv\\\\\\/BV1E3411q7nU\\\",\\\"short_link_v2\\\":\\\"https:\\\\\\/\\\\\\/b23.tv\\\\\\/BV1E3411q7nU\\\",\\\"stat\\\":{\\\"aid\\\":420408148,\\\"coin\\\":6848,\\\"danmaku\\\":1187,\\\"dislike\\\":0,\\\"favorite\\\":4776,\\\"his_rank\\\":0,\\\"like\\\":43653,\\\"now_rank\\\":0,\\\"reply\\\":3469,\\\"share\\\":910,\\\"view\\\":313791},\\\"state\\\":0,\\\"tid\\\":27,\\\"title\\\":\\\"《可露希尔的秘密档案》11话:来宿舍休息一下吧\\\",\\\"tname\\\":\\\"综合\\\",\\\"videos\\\":1}\", \"origin_extend_json\": \"{\\\"\\\":{\\\"game\\\":{\\\"game_id\\\":101772,\\\"platform\\\":\\\"1,2\\\"},\\\"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}}\", \"origin_user\": { \"info\": { \"uid\": 161775300, \"uname\": \"明日方舟\", \"face\": \"https:\\/\\/i1.hdslb.com\\/bfs\\/face\\/89154378c06a5ed332c40c2ca56f50cd641c0c90.jpg\" }, \"card\": { \"official_verify\": { \"type\": 1, \"desc\": \"明日方舟官方账号\" } }, \"vip\": { \"vipType\": 2, \"vipDueDate\": 1646150400000, \"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\": 5305, \"name\": \"明日方舟音律系列\", \"image\": \"https:\\/\\/i0.hdslb.com\\/bfs\\/garb\\/item\\/615a1653281141ddf64cbb98c792ddaee78f7f40.png\", \"expire\": 0, \"image_enhance\": \"https:\\/\\/i0.hdslb.com\\/bfs\\/garb\\/item\\/516ecdf2d495a62f1bac31497c831b711823140c.webp\", \"image_enhance_frame\": \"https:\\/\\/i0.hdslb.com\\/bfs\\/garb\\/item\\/c0751afbf950373c260254d02768eabf30ff3906.png\" }, \"rank\": \"10000\", \"sign\": \"重铸未来 方舟启航\", \"level_info\": { \"current_level\": 6 } }, \"activity_infos\": { \"details\": [ { \"type\": 2, \"detail\": \"{\\\"icon\\\":\\\"https:\\\\\\/\\\\\\/i0.hdslb.com\\\\\\/bfs\\\\\\/album\\\\\\/4afb1d524cbd1aa8d4ac97f61e599d067169d646.png\\\",\\\"link\\\":\\\"bilibili:\\\\\\/\\\\\\/pegasus\\\\\\/hotpage\\\",\\\"text\\\":\\\"热门\\\"}\" } ] } }", + "extend_json": "{\"from\":{\"emoji_type\":1,\"up_close_comment\":0},\"like_icon\":{\"action\":\"\",\"action_url\":\"\",\"end\":\"\",\"end_url\":\"\",\"start\":\"\",\"start_url\":\"\"}}", + "extra": { + "is_space_top": 0 + }, + "display": { + "origin": { + "topic_info": { + "topic_details": [ + { + "topic_id": 19501473, + "topic_name": "可露希尔的秘密档案", + "is_activity": 1, + "topic_link": "https://www.bilibili.com/blackboard/dynamic/132290" + }, + { + "topic_id": 4610466, + "topic_name": "明日方舟", + "is_activity": 0, + "topic_link": "" + } + ] + }, + "usr_action_txt": "投稿了视频", + "relation": { + "status": 1, + "is_follow": 0, + "is_followed": 0 + }, + "attach_card": { + "type": "game", + "head_text": "相关游戏", + "cover_url": "https://i0.hdslb.com/bfs/game/debad5150aa1aeb27dd3bcbac4588c54dc7b5d10.png", + "cover_type": 1, + "title": "明日方舟", + "desc_first": "策略/二次元/美少女", + "desc_second": "主线【风暴瞭望】即将开放,限时纪念活动即将开启", + "jump_url": "https://www.biligame.com/detail?id=101772&sourceFrom=1005", + "button": { + "type": 1, + "jump_style": { + "text": "进入" + }, + "jump_url": "https://www.biligame.com/detail?id=101772&sourceFrom=1005" + }, + "oid_str": "101772" + }, + "tags": [ + { + "tag_type": 4, + "sub_type": 2, + "icon": "https://i0.hdslb.com/bfs/album/4afb1d524cbd1aa8d4ac97f61e599d067169d646.png", + "text": "热门", + "link": "bilibili://pegasus/hotpage?topic_from=topic-card&name=%E7%83%AD%E9%97%A8", + "sub_module": "hot" + } + ], + "add_on_card_info": [ + { + "add_on_card_show_type": 2, + "attach_card": { + "type": "game", + "head_text": "相关游戏", + "cover_url": "https://i0.hdslb.com/bfs/game/debad5150aa1aeb27dd3bcbac4588c54dc7b5d10.png", + "cover_type": 1, + "title": "明日方舟", + "desc_first": "策略/二次元/美少女", + "desc_second": "主线【风暴瞭望】即将开放,限时纪念活动即将开启", + "jump_url": "https://www.biligame.com/detail?id=101772&sourceFrom=1005", + "button": { + "type": 1, + "jump_style": { + "text": "进入" + }, + "jump_url": "https://www.biligame.com/detail?id=101772&sourceFrom=1005" + }, + "oid_str": "101772" + } + } + ], + "show_tip": { + "del_tip": "要删除动态吗?" + }, + "cover_play_icon_url": "https://i0.hdslb.com/bfs/album/2269afa7897830b397797ebe5f032b899b405c67.png" + }, + "relation": { + "status": 1, + "is_follow": 0, + "is_followed": 0 + }, + "comment_info": { + "comment_ids": "" + } + } + }, + { + "desc": { + "uid": 8412516, + "type": 8, + "rid": 975400699, + "acl": 0, + "view": 14173, + "repost": 2, + "like": 495, + "is_liked": 0, + "dynamic_id": 569384016297146454, + "timestamp": 1631408447, + "pre_dy_id": 0, + "orig_dy_id": 0, + "orig_type": 0, + "user_profile": { + "info": { + "uid": 8412516, + "uname": "罗德岛蜜饼工坊", + "face": "https://i0.hdslb.com/bfs/face/00776b6ddde4874af87b8bc2870da86ed39c2c80.jpg" + }, + "card": { + "official_verify": { + "type": -1, + "desc": "" + } + }, + "vip": { + "vipType": 1, + "vipDueDate": 1626364800000, + "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, + "stype": 0, + "r_type": 1, + "inner_id": 0, + "status": 1, + "dynamic_id_str": "569384016297146454", + "pre_dy_id_str": "0", + "orig_dy_id_str": "0", + "rid_str": "975400699", + "bvid": "BV1K44y1h7Xg" + }, + "card": "{\"aid\":975400699,\"attribute\":0,\"cid\":406644689,\"copyright\":1,\"ctime\":1631408447,\"desc\":\"本系列视频为饼组成员的有趣直播录播,主要内容为方舟相关,未来可能系列其他视频会包含部分饼组团建日常等。仅为娱乐性视频,内容与常规饼学预测无关。视频仅为当期主播主观观点,不代表饼组观点。仅供娱乐。\\n\\n直播主播:@寒蝉慕夏 \\n后期剪辑:@Melodiesviel \\n\\n本群视频为9.11组员慕夏直播录播,包含慕夏对新PV的个人解读,风笛厨力疯狂放出,CP言论输出,9.16轮换池预测视频分析和理智规划杂谈内容。\\n注意:内含大量个人性质对风笛的厨力观点,与多CP混乱发言,不适者请及时点击退出或跳到下一片段。\",\"dimension\":{\"height\":1080,\"rotate\":0,\"width\":1920},\"duration\":4318,\"dynamic\":\"昨天慕夏直播的录播剪辑版,关于新PV,慕夏对风笛的看法,新一期轮换池预测视频的分析以及理智规划。错过直播且有兴趣的朋友可以看啦。\",\"first_frame\":\"https:\\/\\/i1.hdslb.com\\/bfs\\/storyff\\/n210911a297vzlaeyhb8g26etg86gci5_firsti.jpg\",\"jump_url\":\"bilibili:\\/\\/video\\/975400699\\/?page=1&player_preload=null&player_width=1920&player_height=1080&player_rotate=0\",\"owner\":{\"face\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/face\\/00776b6ddde4874af87b8bc2870da86ed39c2c80.jpg\",\"mid\":8412516,\"name\":\"罗德岛蜜饼工坊\"},\"pic\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/archive\\/c8cb0073819a0c8171db5009002eec19a80c85f6.jpg\",\"player_info\":null,\"pubdate\":1631408446,\"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\\/BV1K44y1h7Xg\",\"short_link_v2\":\"https:\\/\\/b23.tv\\/BV1K44y1h7Xg\",\"stat\":{\"aid\":975400699,\"coin\":46,\"danmaku\":156,\"dislike\":0,\"favorite\":45,\"his_rank\":0,\"like\":495,\"now_rank\":0,\"reply\":45,\"share\":6,\"view\":3293},\"state\":0,\"tid\":172,\"title\":\"阿消的罗德岛闲谈直播#01:《女人最喜欢的女人,就是在战场上熠熠生辉的女人》\",\"tname\":\"手机游戏\",\"up_from_v2\":35,\"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}}", + "extra": { + "is_space_top": 0 + }, + "activity_infos": { + "details": [ + { + "type": 1, + "detail": "{\"is_show\":1,\"topic_id\":10511051,\"topic_link\":\"\",\"topic_name\":\"打卡挑战\"}" + } + ] + }, + "display": { + "topic_info": { + "topic_details": [ + { + "topic_id": 4610466, + "topic_name": "明日方舟", + "is_activity": 0, + "topic_link": "" + }, + { + "topic_id": 133748, + "topic_name": "风笛", + "is_activity": 0, + "topic_link": "" + }, + { + "topic_id": 21641728, + "topic_name": "琴柳", + "is_activity": 0, + "topic_link": "" + }, + { + "topic_id": 20833282, + "topic_name": "风暴瞭望", + "is_activity": 0, + "topic_link": "" + }, + { + "topic_id": 15127509, + "topic_name": "轮换池", + "is_activity": 0, + "topic_link": "" + }, + { + "topic_id": 10511051, + "topic_name": "打卡挑战", + "is_activity": 1, + "topic_link": "" + } + ] + }, + "usr_action_txt": "投稿了视频", + "relation": { + "status": 1, + "is_follow": 0, + "is_followed": 0 + }, + "comment_info": { + "comment_ids": "" + }, + "tags": [ + { + "tag_type": 3, + "sub_type": 1, + "icon": "https://i0.hdslb.com/bfs/album/4c1880a3e9d5fd2c72b339929a73a4b83d2bab93.png", + "text": "打卡挑战", + "link": "", + "rid": 10511051, + "sub_module": "topic" + } + ], + "show_tip": { + "del_tip": "要删除动态吗?" + }, + "cover_play_icon_url": "https://i0.hdslb.com/bfs/album/2269afa7897830b397797ebe5f032b899b405c67.png" + } + }, + { + "desc": { + "uid": 8412516, + "type": 2, + "rid": 165204278, + "view": 13591, + "repost": 0, + "comment": 5, + "like": 322, + "is_liked": 0, + "dynamic_id": 569221082416208390, + "timestamp": 1631370511, + "orig_type": 0, + "user_profile": { + "info": { + "uid": 8412516, + "uname": "罗德岛蜜饼工坊", + "face": "https://i0.hdslb.com/bfs/face/00776b6ddde4874af87b8bc2870da86ed39c2c80.jpg" + }, + "card": { + "official_verify": { + "type": -1, + "desc": "" + } + }, + "vip": { + "vipType": 1, + "vipDueDate": 1626364800000, + "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, + "r_type": 1, + "status": 1, + "dynamic_id_str": "569221082416208390", + "pre_dy_id_str": "0", + "orig_dy_id_str": "0", + "rid_str": "165204278" + }, + "card": "{\"item\":{\"at_control\":\"\",\"category\":\"daily\",\"description\":\"视频更新预告\",\"id\":165204278,\"is_fav\":0,\"pictures\":[{\"img_height\":607,\"img_size\":75,\"img_src\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/archive\\/c8cb0073819a0c8171db5009002eec19a80c85f6.jpg\",\"img_tags\":null,\"img_width\":972}],\"pictures_count\":1,\"reply\":5,\"role\":[],\"settings\":{\"copy_forbidden\":\"0\"},\"source\":[],\"title\":\"\",\"upload_time\":1631370511},\"user\":{\"head_url\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/face\\/00776b6ddde4874af87b8bc2870da86ed39c2c80.jpg\",\"name\":\"罗德岛蜜饼工坊\",\"uid\":8412516,\"vip\":{\"avatar_subscript\":0,\"due_date\":1626364800000,\"label\":{\"label_theme\":\"\",\"path\":\"\",\"text\":\"\"},\"nickname_color\":\"\",\"status\":0,\"theme_type\":0,\"type\":1,\"vip_pay_type\":0}}}", + "extend_json": "{\"\":{\"reserve\":{\"reserve_id\":146857}},\"from\":{\"audit_level\":100,\"from\":\"draft_video.reserve.svr\",\"up_close_comment\":0},\"like_icon\":{\"action\":\"\",\"action_url\":\"\",\"end\":\"\",\"end_url\":\"\",\"start\":\"\",\"start_url\":\"\"}}", + "extra": { + "is_space_top": 0 + }, + "display": { + "relation": { + "status": 1, + "is_follow": 0, + "is_followed": 0 + }, + "comment_info": { + "comment_ids": "" + }, + "add_on_card_info": [ + { + "add_on_card_show_type": 6, + "reserve_attach_card": { + "type": "reserve", + "title": "预告:阿消的罗德岛闲谈直播#01:《女人最喜欢的女人,就是在战场上熠熠生辉的女人》", + "state": 0, + "reserve_total": 197, + "desc_first": { + "text": "预计今天 09:00发布", + "style": 0 + }, + "desc_second": "3293观看", + "jump_url": "https://www.bilibili.com/video/BV1K44y1h7Xg", + "oid_str": "146857", + "reserve_button": { + "type": 1, + "jump_style": { + "text": "去观看" + }, + "jump_url": "https://www.bilibili.com/video/BV1K44y1h7Xg", + "status": 1 + }, + "origin_state": 150, + "stype": 1, + "livePlanStartTime": 1631408418, + "up_mid": 8412516, + "show_desc_second": true + } + } + ] + } + }, + { + "desc": { + "uid": 8412516, + "type": 1, + "rid": 569189870891453975, + "acl": 0, + "view": 13474, + "repost": 0, + "comment": 23, + "like": 167, + "is_liked": 0, + "dynamic_id": 569189870889648693, + "timestamp": 1631363244, + "pre_dy_id": 568484078920438420, + "orig_dy_id": 565815693047293346, + "orig_type": 64, + "user_profile": { + "info": { + "uid": 8412516, + "uname": "罗德岛蜜饼工坊", + "face": "https://i0.hdslb.com/bfs/face/00776b6ddde4874af87b8bc2870da86ed39c2c80.jpg" + }, + "card": { + "official_verify": { + "type": -1, + "desc": "" + } + }, + "vip": { + "vipType": 1, + "vipDueDate": 1626364800000, + "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, + "stype": 0, + "r_type": 1, + "inner_id": 0, + "status": 1, + "dynamic_id_str": "569189870889648693", + "pre_dy_id_str": "568484078920438420", + "orig_dy_id_str": "565815693047293346", + "rid_str": "569189870891453975", + "origin": { + "uid": 8412516, + "type": 64, + "rid": 12993752, + "view": 67017, + "repost": 17, + "dynamic_id": 565815693047293346, + "timestamp": 1630577632, + "uid_type": 1, + "r_type": 1, + "status": 1, + "dynamic_id_str": "565815693047293346", + "pre_dy_id_str": "0", + "orig_dy_id_str": "0", + "rid_str": "12993752" + }, + "previous": { + "uid": 8412516, + "type": 1, + "rid": 568484078913235403, + "view": 17673, + "repost": 2, + "dynamic_id": 568484078920438420, + "timestamp": 1631198914, + "pre_dy_id": 568387154389567443, + "orig_dy_id": 565815693047293346, + "uid_type": 1, + "r_type": 1, + "status": 1, + "dynamic_id_str": "568484078920438420", + "pre_dy_id_str": "568387154389567443", + "orig_dy_id_str": "565815693047293346", + "rid_str": "568484078913235403", + "origin": { + "uid": 8412516, + "type": 64, + "rid": 12993752, + "dynamic_id": 565815693047293346, + "timestamp": 1630577632, + "uid_type": 1, + "r_type": 1, + "status": 1, + "dynamic_id_str": "565815693047293346", + "pre_dy_id_str": "0", + "orig_dy_id_str": "0", + "rid_str": "12993752" + }, + "previous": { + "uid": 8412516, + "type": 1, + "rid": 568387154387891793, + "acl": 0, + "view": 0, + "repost": 0, + "like": 0, + "dynamic_id": 568387154389567443, + "timestamp": 1631176347, + "pre_dy_id": 568000577272362574, + "orig_dy_id": 565815693047293346, + "uid_type": 1, + "stype": 0, + "r_type": 1, + "inner_id": 0, + "status": 1, + "dynamic_id_str": "568387154389567443", + "pre_dy_id_str": "568000577272362574", + "orig_dy_id_str": "565815693047293346", + "rid_str": "568387154387891793" + } + } + }, + "card": "{ \"user\": { \"uid\": 8412516, \"uname\": \"罗德岛蜜饼工坊\", \"face\": \"https:\\/\\/i0.hdslb.com\\/bfs\\/face\\/00776b6ddde4874af87b8bc2870da86ed39c2c80.jpg\" }, \"item\": { \"rp_id\": 569189870891453975, \"uid\": 8412516, \"content\": \"#明日方舟##饼学大厦#\\n9.11专栏更新完毕,这还塌了实属没跟新运营对上\\n后边除了周日发饼和PV没提及的中文语音,稳了\\n别忘了来参加#可露希尔的秘密档案#的主题投票\\nhttps:\\/\\/t.bilibili.com\\/568093580488553786?tab=2\", \"ctrl\": \"\", \"orig_dy_id\": 565815693047293346, \"pre_dy_id\": 568484078920438420, \"timestamp\": 1631363244, \"reply\": 23, \"orig_type\": 64 }, \"origin\": \"{ \\\"id\\\": 12993752, \\\"category\\\": { \\\"id\\\": 8, \\\"parent_id\\\": 1, \\\"name\\\": \\\"手机游戏\\\" }, \\\"categories\\\": [ { \\\"id\\\": 1, \\\"parent_id\\\": 0, \\\"name\\\": \\\"游戏\\\" }, { \\\"id\\\": 8, \\\"parent_id\\\": 1, \\\"name\\\": \\\"手机游戏\\\" } ], \\\"title\\\": \\\"【明日方舟】饼学大厦#12~14(风暴瞭望&玛莉娅·临光&红松林&感谢庆典)9.11更新\\\", \\\"summary\\\": \\\"更新记录09.11更新:覆盖09.10更新;以及排期更新,猜测周一周五开活动09.10更新:以周五开活动为底,PV\\\\\\/公告调整位置,整体结构更新09.08更新:饼学大厦#12更新,新增一件六星商店服饰(周日发饼)09.06更新:饼学大厦整栋整栋翻新,改为9.16开主线(四日无饼!)09.05凌晨更新:10.13后的排期(两日无饼,鹰角背刺,心狠手辣)前言感谢楪筱祈ぺ的动态-哔哩哔哩 (bilibili.com) 对饼学的贡献!后续排期:9.17【风暴瞭望】、10.01【玛莉娅·临光】复刻、10.1\\\", \\\"banner_url\\\": \\\"\\\", \\\"template_id\\\": 4, \\\"state\\\": 0, \\\"author\\\": { \\\"mid\\\": 8412516, \\\"name\\\": \\\"罗德岛蜜饼工坊\\\", \\\"face\\\": \\\"https:\\\\\\/\\\\\\/i0.hdslb.com\\\\\\/bfs\\\\\\/face\\\\\\/00776b6ddde4874af87b8bc2870da86ed39c2c80.jpg\\\", \\\"pendant\\\": { \\\"pid\\\": 0, \\\"name\\\": \\\"\\\", \\\"image\\\": \\\"\\\", \\\"expire\\\": 0 }, \\\"official_verify\\\": { \\\"type\\\": -1, \\\"desc\\\": \\\"\\\" }, \\\"nameplate\\\": { \\\"nid\\\": 0, \\\"name\\\": \\\"\\\", \\\"image\\\": \\\"\\\", \\\"image_small\\\": \\\"\\\", \\\"level\\\": \\\"\\\", \\\"condition\\\": \\\"\\\" }, \\\"vip\\\": { \\\"type\\\": 1, \\\"status\\\": 0, \\\"due_date\\\": 0, \\\"vip_pay_type\\\": 0, \\\"theme_type\\\": 0, \\\"label\\\": { \\\"path\\\": \\\"\\\", \\\"text\\\": \\\"\\\", \\\"label_theme\\\": \\\"\\\" }, \\\"avatar_subscript\\\": 0, \\\"nickname_color\\\": \\\"\\\" } }, \\\"reprint\\\": 0, \\\"image_urls\\\": [ \\\"https:\\\\\\/\\\\\\/i0.hdslb.com\\\\\\/bfs\\\\\\/article\\\\\\/e960919dc185d1d9026e8c80bf6d058edbab2e69.jpg\\\" ], \\\"publish_time\\\": 1630577632, \\\"ctime\\\": 1630577338, \\\"stats\\\": { \\\"view\\\": 14767, \\\"favorite\\\": 60, \\\"like\\\": 373, \\\"dislike\\\": 0, \\\"reply\\\": 103, \\\"share\\\": 21, \\\"coin\\\": 32, \\\"dynamic\\\": 0 }, \\\"attributes\\\": 24, \\\"words\\\": 1829, \\\"origin_image_urls\\\": [ \\\"https:\\\\\\/\\\\\\/i0.hdslb.com\\\\\\/bfs\\\\\\/article\\\\\\/5fcc573673cd6fa7204792f231d211472e28bd39.jpg\\\" ], \\\"list\\\": { \\\"id\\\": 383313, \\\"mid\\\": 8412516, \\\"name\\\": \\\"明日方舟饼学预测\\\", \\\"image_url\\\": \\\"\\\", \\\"update_time\\\": 1630577338, \\\"ctime\\\": 1614183370, \\\"publish_time\\\": 1630577632, \\\"summary\\\": \\\"\\\", \\\"words\\\": 8218, \\\"read\\\": 0, \\\"articles_count\\\": 0, \\\"state\\\": 3, \\\"reason\\\": \\\"\\\", \\\"apply_time\\\": \\\"\\\", \\\"check_time\\\": \\\"\\\" }, \\\"is_like\\\": false, \\\"media\\\": { \\\"score\\\": 0, \\\"media_id\\\": 0, \\\"title\\\": \\\"\\\", \\\"cover\\\": \\\"\\\", \\\"area\\\": \\\"\\\", \\\"type_id\\\": 0, \\\"type_name\\\": \\\"\\\", \\\"spoiler\\\": 0, \\\"season_id\\\": 0 }, \\\"apply_time\\\": \\\"\\\", \\\"check_time\\\": \\\"\\\", \\\"original\\\": 1, \\\"act_id\\\": 0, \\\"dispute\\\": null, \\\"authenMark\\\": null, \\\"cover_avid\\\": 0, \\\"top_video_info\\\": null, \\\"type\\\": 0 }\", \"origin_extend_json\": \"{\\\"like_icon\\\":{\\\"action\\\":\\\"\\\",\\\"action_url\\\":\\\"\\\",\\\"end\\\":\\\"\\\",\\\"end_url\\\":\\\"\\\",\\\"start\\\":\\\"\\\",\\\"start_url\\\":\\\"\\\"},\\\"topic\\\":{\\\"is_attach_topic\\\":1}}\", \"origin_user\": { \"info\": { \"uid\": 8412516, \"uname\": \"罗德岛蜜饼工坊\", \"face\": \"https:\\/\\/i0.hdslb.com\\/bfs\\/face\\/00776b6ddde4874af87b8bc2870da86ed39c2c80.jpg\" }, \"card\": { \"official_verify\": { \"type\": -1, \"desc\": \"\" } }, \"vip\": { \"vipType\": 1, \"vipDueDate\": 1626364800000, \"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 } } }", + "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}}", + "extra": { + "is_space_top": 0 + }, + "display": { + "topic_info": { + "topic_details": [ + { + "topic_id": 4610466, + "topic_name": "明日方舟", + "is_activity": 0, + "topic_link": "" + }, + { + "topic_id": 16222309, + "topic_name": "饼学大厦", + "is_activity": 0, + "topic_link": "" + }, + { + "topic_id": 19501473, + "topic_name": "可露希尔的秘密档案", + "is_activity": 1, + "topic_link": "https://www.bilibili.com/blackboard/dynamic/132290" + } + ] + }, + "origin": { + "topic_info": { + "topic_details": [ + { + "topic_id": 12189522, + "topic_name": "感谢庆典", + "is_activity": 1, + "topic_link": "https://www.bilibili.com/blackboard/dynamic/84498" + }, + { + "topic_id": 4610466, + "topic_name": "明日方舟", + "is_activity": 0, + "topic_link": "" + }, + { + "topic_id": 21527990, + "topic_name": "红松林", + "is_activity": 0, + "topic_link": "" + }, + { + "topic_id": 20833282, + "topic_name": "风暴瞭望", + "is_activity": 0, + "topic_link": "" + }, + { + "topic_id": 20302865, + "topic_name": "饼学预测", + "is_activity": 0, + "topic_link": "" + } + ] + }, + "relation": { + "status": 1, + "is_follow": 0, + "is_followed": 0 + }, + "show_tip": { + "del_tip": "要删除动态吗?" + } + }, + "relation": { + "status": 1, + "is_follow": 0, + "is_followed": 0 + }, + "comment_info": { + "comment_ids": "" + }, + "show_tip": { + "del_tip": "要删除动态吗?" + } + } + }, + { + "desc": { + "uid": 8412516, + "type": 1, + "rid": 569107343094504142, + "view": 15650, + "repost": 0, + "comment": 33, + "like": 215, + "is_liked": 0, + "dynamic_id": 569107343093484983, + "timestamp": 1631344029, + "pre_dy_id": 569105539209306328, + "orig_dy_id": 569105539209306328, + "orig_type": 2, + "user_profile": { + "info": { + "uid": 8412516, + "uname": "罗德岛蜜饼工坊", + "face": "https://i0.hdslb.com/bfs/face/00776b6ddde4874af87b8bc2870da86ed39c2c80.jpg" + }, + "card": { + "official_verify": { + "type": -1, + "desc": "" + } + }, + "vip": { + "vipType": 1, + "vipDueDate": 1626364800000, + "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, + "r_type": 1, + "status": 1, + "dynamic_id_str": "569107343093484983", + "pre_dy_id_str": "569105539209306328", + "orig_dy_id_str": "569105539209306328", + "rid_str": "569107343094504142", + "origin": { + "uid": 161775300, + "type": 2, + "rid": 165109731, + "view": 1414748, + "repost": 631, + "dynamic_id": 569105539209306328, + "timestamp": 1631343609, + "uid_type": 1, + "r_type": 1, + "status": 1, + "dynamic_id_str": "569105539209306328", + "pre_dy_id_str": "0", + "orig_dy_id_str": "0", + "rid_str": "165109731" + } + }, + "card": "{ \"user\": { \"uid\": 8412516, \"uname\": \"罗德岛蜜饼工坊\", \"face\": \"https:\\/\\/i0.hdslb.com\\/bfs\\/face\\/00776b6ddde4874af87b8bc2870da86ed39c2c80.jpg\" }, \"item\": { \"rp_id\": 569107343094504142, \"uid\": 8412516, \"content\": \"饼组主线饼学预测——9.11版\\n①今日结果\\n9.11 殿堂上的游禽-星极(x,新运营实锤了)\\n②后续预测\\n9.12 #罗德岛相簿#+#可露希尔的秘密档案#11话\\n9.13 六星先锋(执旗手)干员-琴柳\\n9.14 宣传策略-空弦+家具\\n9.15 轮换池(+中文语音前瞻)\\n9.16 停机\\n9.17 #罗德岛闲逛部#+新六星EP+EP09·风暴瞭望开启\\n9.19 #罗德岛相簿#\", \"ctrl\": \"\", \"orig_dy_id\": 569105539209306328, \"pre_dy_id\": 569105539209306328, \"timestamp\": 1631344029, \"reply\": 33, \"orig_type\": 2 }, \"origin\": \"{\\\"item\\\":{\\\"at_control\\\":\\\"\\\",\\\"category\\\":\\\"daily\\\",\\\"description\\\":\\\"#明日方舟#\\\\n【新增服饰】\\\\n\\\\\\/\\\\\\/殿堂上的游禽 - 星极\\\\n塞壬唱片偶像企划《闪耀阶梯》特供服饰\\\\\\/殿堂上的游禽。星极自费参加了这项企划,尝试着用大众能接受的方式演绎天空之上的故事。\\\\n\\\\n_____________\\\\n谦逊留给观众,骄傲发自歌喉,此夜,唯我璀璨。 \\\",\\\"id\\\":165109731,\\\"is_fav\\\":0,\\\"pictures\\\":[{\\\"img_height\\\":1080,\\\"img_size\\\":2472.5859375,\\\"img_src\\\":\\\"https:\\\\\\/\\\\\\/i0.hdslb.com\\\\\\/bfs\\\\\\/album\\\\\\/1cdd2bf828f56350b90881c4cbe83845bdb76d75.png\\\",\\\"img_tags\\\":null,\\\"img_width\\\":1920},{\\\"img_height\\\":816,\\\"img_size\\\":5333.072265625,\\\"img_src\\\":\\\"https:\\\\\\/\\\\\\/i0.hdslb.com\\\\\\/bfs\\\\\\/album\\\\\\/50735bb4dce5ec875b9f5aa6dd49e4b89baa0bad.gif\\\",\\\"img_tags\\\":null,\\\"img_width\\\":499},{\\\"img_height\\\":816,\\\"img_size\\\":8158.134765625,\\\"img_src\\\":\\\"https:\\\\\\/\\\\\\/i0.hdslb.com\\\\\\/bfs\\\\\\/album\\\\\\/de08b9a0eecd884bc1f45fd22bc239f6bb0d4a8b.gif\\\",\\\"img_tags\\\":null,\\\"img_width\\\":499},{\\\"img_height\\\":816,\\\"img_size\\\":3409.19921875,\\\"img_src\\\":\\\"https:\\\\\\/\\\\\\/i0.hdslb.com\\\\\\/bfs\\\\\\/album\\\\\\/5759352a4a9f83358817ff22744b991816d73382.gif\\\",\\\"img_tags\\\":null,\\\"img_width\\\":499}],\\\"pictures_count\\\":4,\\\"reply\\\":5844,\\\"role\\\":[],\\\"settings\\\":{\\\"copy_forbidden\\\":\\\"0\\\"},\\\"source\\\":[],\\\"title\\\":\\\"\\\",\\\"upload_time\\\":1631343609},\\\"user\\\":{\\\"head_url\\\":\\\"https:\\\\\\/\\\\\\/i1.hdslb.com\\\\\\/bfs\\\\\\/face\\\\\\/89154378c06a5ed332c40c2ca56f50cd641c0c90.jpg\\\",\\\"name\\\":\\\"明日方舟\\\",\\\"uid\\\":161775300,\\\"vip\\\":{\\\"avatar_subscript\\\":1,\\\"due_date\\\":1646150400000,\\\"label\\\":{\\\"label_theme\\\":\\\"annual_vip\\\",\\\"path\\\":\\\"\\\",\\\"text\\\":\\\"年度大会员\\\"},\\\"nickname_color\\\":\\\"#FB7299\\\",\\\"status\\\":1,\\\"theme_type\\\":0,\\\"type\\\":2,\\\"vip_pay_type\\\":0}}}\", \"origin_extend_json\": \"{\\\"\\\":{\\\"game\\\":{\\\"game_id\\\":101772,\\\"platform\\\":\\\"1,2\\\"}},\\\"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}}\", \"origin_user\": { \"info\": { \"uid\": 161775300, \"uname\": \"明日方舟\", \"face\": \"https:\\/\\/i1.hdslb.com\\/bfs\\/face\\/89154378c06a5ed332c40c2ca56f50cd641c0c90.jpg\" }, \"card\": { \"official_verify\": { \"type\": 1, \"desc\": \"明日方舟官方账号\" } }, \"vip\": { \"vipType\": 2, \"vipDueDate\": 1646150400000, \"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\": 5305, \"name\": \"明日方舟音律系列\", \"image\": \"https:\\/\\/i0.hdslb.com\\/bfs\\/garb\\/item\\/615a1653281141ddf64cbb98c792ddaee78f7f40.png\", \"expire\": 0, \"image_enhance\": \"https:\\/\\/i0.hdslb.com\\/bfs\\/garb\\/item\\/516ecdf2d495a62f1bac31497c831b711823140c.webp\", \"image_enhance_frame\": \"https:\\/\\/i0.hdslb.com\\/bfs\\/garb\\/item\\/c0751afbf950373c260254d02768eabf30ff3906.png\" }, \"rank\": \"10000\", \"sign\": \"重铸未来 方舟启航\", \"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}}", + "extra": { + "is_space_top": 0 + }, + "display": { + "topic_info": { + "topic_details": [ + { + "topic_id": 19505960, + "topic_name": "罗德岛相簿", + "is_activity": 0, + "topic_link": "" + }, + { + "topic_id": 19501473, + "topic_name": "可露希尔的秘密档案", + "is_activity": 1, + "topic_link": "https://www.bilibili.com/blackboard/dynamic/132290" + }, + { + "topic_id": 19504680, + "topic_name": "罗德岛闲逛部", + "is_activity": 0, + "topic_link": "" + } + ] + }, + "origin": { + "topic_info": { + "topic_details": [ + { + "topic_id": 4610466, + "topic_name": "明日方舟", + "is_activity": 0, + "topic_link": "" + } + ] + }, + "relation": { + "status": 1, + "is_follow": 0, + "is_followed": 0 + }, + "attach_card": { + "type": "game", + "head_text": "相关游戏", + "cover_url": "https://i0.hdslb.com/bfs/game/debad5150aa1aeb27dd3bcbac4588c54dc7b5d10.png", + "cover_type": 1, + "title": "明日方舟", + "desc_first": "策略/二次元/美少女", + "desc_second": "主线【风暴瞭望】即将开放,限时纪念活动即将开启", + "jump_url": "https://www.biligame.com/detail?id=101772&sourceFrom=1005", + "button": { + "type": 1, + "jump_style": { + "text": "进入" + }, + "jump_url": "https://www.biligame.com/detail?id=101772&sourceFrom=1005" + }, + "oid_str": "101772" + }, + "add_on_card_info": [ + { + "add_on_card_show_type": 2, + "attach_card": { + "type": "game", + "head_text": "相关游戏", + "cover_url": "https://i0.hdslb.com/bfs/game/debad5150aa1aeb27dd3bcbac4588c54dc7b5d10.png", + "cover_type": 1, + "title": "明日方舟", + "desc_first": "策略/二次元/美少女", + "desc_second": "主线【风暴瞭望】即将开放,限时纪念活动即将开启", + "jump_url": "https://www.biligame.com/detail?id=101772&sourceFrom=1005", + "button": { + "type": 1, + "jump_style": { + "text": "进入" + }, + "jump_url": "https://www.biligame.com/detail?id=101772&sourceFrom=1005" + }, + "oid_str": "101772" + } + } + ], + "show_tip": { + "del_tip": "要删除动态吗?" + } + }, + "relation": { + "status": 1, + "is_follow": 0, + "is_followed": 0 + }, + "comment_info": { + "comment_ids": "" + }, + "show_tip": { + "del_tip": "要删除动态吗?" + } + } + }, + { + "desc": { + "uid": 8412516, + "type": 8, + "rid": 335464825, + "view": 17627, + "repost": 5, + "like": 1572, + "is_liked": 0, + "dynamic_id": 569028375831520374, + "timestamp": 1631325643, + "orig_type": 0, + "user_profile": { + "info": { + "uid": 8412516, + "uname": "罗德岛蜜饼工坊", + "face": "https://i0.hdslb.com/bfs/face/00776b6ddde4874af87b8bc2870da86ed39c2c80.jpg" + }, + "card": { + "official_verify": { + "type": -1, + "desc": "" + } + }, + "vip": { + "vipType": 1, + "vipDueDate": 1626364800000, + "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, + "r_type": 1, + "status": 1, + "dynamic_id_str": "569028375831520374", + "pre_dy_id_str": "0", + "orig_dy_id_str": "0", + "rid_str": "335464825", + "bvid": "BV1tA411F73r" + }, + "card": "{\"aid\":335464825,\"attribute\":0,\"cid\":406175333,\"copyright\":1,\"ctime\":1631301491,\"desc\":\"简介:9.16轮换池预测它来了,久违的进店概率百分百预测!究竟是为什么皮肤轮换学要大失败了!皮肤学真的会败北吗?\\n\\n\\n出品:罗德岛蜜饼工坊\\n视频录制:@寒蝉慕夏 \\n文案:@寒蝉慕夏 、@柳陌轩Endivie 、@博尔吉亚7211 \\n后期:@Melodiesviel 、@让你爱上学习 、@とがた \\n校对:@とがた \\n封面:@外星蚂蚁 \\n系列往期:\\n【明日方舟】伊芙利特的轮换池作业#01:8.19轮换池前瞻 BV18L411J74U\\n【明日方舟】伊芙利特的轮换池作业#02:鹰角的自由,异\",\"dimension\":{\"height\":1080,\"rotate\":0,\"width\":1920},\"duration\":644,\"dynamic\":\"是谁要击碎皮肤轮换学!是谁这次百分百进店!One More Thing......\",\"first_frame\":\"https:\\/\\/i2.hdslb.com\\/bfs\\/storyff\\/n210911a27xbp8dv50nx71vk8u8dj0uv_firsti.jpg\",\"jump_url\":\"bilibili:\\/\\/video\\/335464825\\/?page=1&player_preload=null&player_width=1920&player_height=1080&player_rotate=0\",\"owner\":{\"face\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/face\\/00776b6ddde4874af87b8bc2870da86ed39c2c80.jpg\",\"mid\":8412516,\"name\":\"罗德岛蜜饼工坊\"},\"pic\":\"https:\\/\\/i2.hdslb.com\\/bfs\\/archive\\/4558d4098ef67d826de99d864ed35af64abf54eb.jpg\",\"player_info\":null,\"pubdate\":1631325606,\"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\\/BV1tA411F73r\",\"short_link_v2\":\"https:\\/\\/b23.tv\\/BV1tA411F73r\",\"stat\":{\"aid\":335464825,\"coin\":221,\"danmaku\":87,\"dislike\":0,\"favorite\":108,\"his_rank\":0,\"like\":1572,\"now_rank\":0,\"reply\":135,\"share\":43,\"view\":15989},\"state\":0,\"tid\":172,\"title\":\"【明日方舟】伊芙利特的轮换池作业#04:9.16轮换池预测\",\"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}}", + "extra": { + "is_space_top": 0 + }, + "display": { + "topic_info": { + "topic_details": [ + { + "topic_id": 4610466, + "topic_name": "明日方舟", + "is_activity": 0, + "topic_link": "" + }, + { + "topic_id": 20955936, + "topic_name": "轮换学", + "is_activity": 0, + "topic_link": "" + }, + { + "topic_id": 18032856, + "topic_name": "常驻标准寻访", + "is_activity": 0, + "topic_link": "" + }, + { + "topic_id": 15127509, + "topic_name": "轮换池", + "is_activity": 0, + "topic_link": "" + }, + { + "topic_id": 10511051, + "topic_name": "打卡挑战", + "is_activity": 1, + "topic_link": "" + }, + { + "topic_id": 9608827, + "topic_name": "舟游", + "is_activity": 0, + "topic_link": "" + } + ] + }, + "usr_action_txt": "投稿了视频", + "relation": { + "status": 1, + "is_follow": 0, + "is_followed": 0 + }, + "comment_info": { + "comments": [ + { + "uid": 456873626, + "name": "维沐辰", + "content": "早期慕夏自信预测后发现失误为防止背刺连夜肝视频珍贵影像[藏狐]" + } + ], + "emojis": [ + { + "emoji_name": "[藏狐]", + "url": "https://i0.hdslb.com/bfs/emote/ba0937ef6f3ccca85e2e0047e6263f3b4da37201.png", + "meta": { + "size": 1 + } + } + ], + "comment_ids": "5375314021" + }, + "show_tip": { + "del_tip": "要删除动态吗?" + }, + "cover_play_icon_url": "https://i0.hdslb.com/bfs/album/2269afa7897830b397797ebe5f032b899b405c67.png" + } + }, + { + "desc": { + "uid": 8412516, + "type": 2, + "rid": 165045045, + "view": 16721, + "repost": 0, + "comment": 10, + "like": 214, + "is_liked": 0, + "dynamic_id": 569006690537333142, + "timestamp": 1631320594, + "orig_type": 0, + "user_profile": { + "info": { + "uid": 8412516, + "uname": "罗德岛蜜饼工坊", + "face": "https://i0.hdslb.com/bfs/face/00776b6ddde4874af87b8bc2870da86ed39c2c80.jpg" + }, + "card": { + "official_verify": { + "type": -1, + "desc": "" + } + }, + "vip": { + "vipType": 1, + "vipDueDate": 1626364800000, + "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, + "r_type": 1, + "status": 1, + "dynamic_id_str": "569006690537333142", + "pre_dy_id_str": "0", + "orig_dy_id_str": "0", + "rid_str": "165045045" + }, + "card": "{\"item\":{\"at_control\":\"\",\"category\":\"daily\",\"description\":\"#明日方舟##饼学大厦#\\ncv12993752\\n9.10专栏更新完毕——继PV背刺后,连审核也(悲)\\n以周五开活动为底,PV\\/公告调整位置,整体结构更新\",\"id\":165045045,\"is_fav\":0,\"pictures\":[{\"img_height\":112,\"img_size\":36.4140625,\"img_src\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/album\\/54a09fea5a1b3240d9af288ffe705574ad6a5915.png\",\"img_tags\":null,\"img_width\":1540}],\"pictures_count\":1,\"reply\":10,\"role\":[],\"settings\":{\"copy_forbidden\":\"0\"},\"source\":[],\"title\":\"\",\"upload_time\":1631320594},\"user\":{\"head_url\":\"https:\\/\\/i0.hdslb.com\\/bfs\\/face\\/00776b6ddde4874af87b8bc2870da86ed39c2c80.jpg\",\"name\":\"罗德岛蜜饼工坊\",\"uid\":8412516,\"vip\":{\"avatar_subscript\":0,\"due_date\":1626364800000,\"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\":\"create.dynamic.web\",\"up_close_comment\":0,\"verify\":{}},\"like_icon\":{\"action\":\"\",\"action_url\":\"\",\"end\":\"\",\"end_url\":\"\",\"start\":\"\",\"start_url\":\"\"},\"topic\":{\"is_attach_topic\":1}}", + "extra": { + "is_space_top": 0 + }, + "display": { + "topic_info": { + "topic_details": [ + { + "topic_id": 4610466, + "topic_name": "明日方舟", + "is_activity": 0, + "topic_link": "" + }, + { + "topic_id": 16222309, + "topic_name": "饼学大厦", + "is_activity": 0, + "topic_link": "" + } + ] + }, + "relation": { + "status": 1, + "is_follow": 0, + "is_followed": 0 + }, + "comment_info": { + "comment_ids": "" + }, + "show_tip": { + "del_tip": "要删除动态吗?" + }, + "rich_text": { + "rich_details": [ + { + "jump_uri": "https://www.bilibili.com/read/cv12993752", + "icon_type": 2, + "text": "【明日方舟】饼学大厦#12~14(风暴瞭...", + "orig_text": "cv12993752" + } + ] + } + } + }, + { + "desc": { + "uid": 8412516, + "type": 4, + "rid": 568887466536025305, + "acl": 0, + "view": 18179, + "repost": 1, + "comment": 20, + "like": 294, + "is_liked": 0, + "dynamic_id": 568887466540903340, + "timestamp": 1631292835, + "pre_dy_id": 0, + "orig_dy_id": 0, + "orig_type": 0, + "user_profile": { + "info": { + "uid": 8412516, + "uname": "罗德岛蜜饼工坊", + "face": "https://i0.hdslb.com/bfs/face/00776b6ddde4874af87b8bc2870da86ed39c2c80.jpg" + }, + "card": { + "official_verify": { + "type": -1, + "desc": "" + } + }, + "vip": { + "vipType": 1, + "vipDueDate": 1626364800000, + "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, + "stype": 0, + "r_type": 0, + "inner_id": 0, + "status": 1, + "dynamic_id_str": "568887466540903340", + "pre_dy_id_str": "0", + "orig_dy_id_str": "0", + "rid_str": "568887466536025305" + }, + "card": "{ \"user\": { \"uid\": 8412516, \"uname\": \"罗德岛蜜饼工坊\", \"face\": \"https:\\/\\/i0.hdslb.com\\/bfs\\/face\\/00776b6ddde4874af87b8bc2870da86ed39c2c80.jpg\" }, \"item\": { \"rp_id\": 568887466536025305, \"uid\": 8412516, \"content\": \"[热词系列_知识增加]是谁要击碎皮肤轮换学!是谁这次百分百进店\\n[热词系列_三连]十点见\", \"ctrl\": \"\", \"orig_dy_id\": 0, \"pre_dy_id\": 0, \"timestamp\": 1631292835, \"reply\": 20 } }", + "extend_json": "{\"\":{\"reserve\":{\"reserve_id\":145512}},\"from\":{\"emoji_type\":1,\"verify\":{\"asw\":{},\"cc\":{},\"csw\":{},\"dc\":{},\"gc\":{},\"ra\":{},\"sp\":{},\"sw\":{},\"ur\":{}}},\"like_icon\":{\"action\":\"\",\"action_url\":\"\",\"end\":\"\",\"end_url\":\"\",\"start\":\"\",\"start_url\":\"\"}}", + "extra": { + "is_space_top": 0 + }, + "display": { + "emoji_info": { + "emoji_details": [ + { + "emoji_name": "[热词系列_三连]", + "id": 1483, + "package_id": 53, + "state": 0, + "type": 1, + "attr": 2, + "text": "[热词系列_三连]", + "url": "https://i0.hdslb.com/bfs/emote/21f15fe11b7a84d2f2121c16dec50a4e4556f865.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 + }, + "comment_info": { + "comment_ids": "" + }, + "add_on_card_info": [ + { + "add_on_card_show_type": 6, + "reserve_attach_card": { + "type": "reserve", + "title": "预告:伊芙利特的轮换池作业#04期", + "state": 0, + "reserve_total": 186, + "desc_first": { + "text": "视频预约", + "style": 0 + }, + "desc_second": "1.5万观看", + "jump_url": "https://www.bilibili.com/video/BV1tA411F73r", + "oid_str": "145512", + "reserve_button": { + "type": 1, + "jump_style": { + "text": "去观看" + }, + "jump_url": "https://www.bilibili.com/video/BV1tA411F73r", + "status": 1 + }, + "origin_state": 150, + "stype": 1, + "livePlanStartTime": 0, + "up_mid": 8412516, + "show_desc_second": true + } + } + ] + } + }, + { + "desc": { + "uid": 8412516, + "type": 1, + "rid": 568678499200295660, + "acl": 0, + "view": 16572, + "repost": 4, + "comment": 57, + "like": 219, + "is_liked": 0, + "dynamic_id": 568678499202493661, + "timestamp": 1631244181, + "pre_dy_id": 568672623683005903, + "orig_dy_id": 568672623683005903, + "orig_type": 8, + "user_profile": { + "info": { + "uid": 8412516, + "uname": "罗德岛蜜饼工坊", + "face": "https://i0.hdslb.com/bfs/face/00776b6ddde4874af87b8bc2870da86ed39c2c80.jpg" + }, + "card": { + "official_verify": { + "type": -1, + "desc": "" + } + }, + "vip": { + "vipType": 1, + "vipDueDate": 1626364800000, + "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, + "stype": 0, + "r_type": 1, + "inner_id": 0, + "status": 1, + "dynamic_id_str": "568678499202493661", + "pre_dy_id_str": "568672623683005903", + "orig_dy_id_str": "568672623683005903", + "rid_str": "568678499200295660", + "origin": { + "uid": 161775300, + "type": 8, + "rid": 335406585, + "view": 1898496, + "repost": 2123, + "dynamic_id": 568672623683005903, + "timestamp": 1631242813, + "uid_type": 1, + "r_type": 1, + "status": 1, + "dynamic_id_str": "568672623683005903", + "pre_dy_id_str": "0", + "orig_dy_id_str": "0", + "rid_str": "335406585", + "bvid": "BV1gA411F7s4" + } + }, + "card": "{ \"user\": { \"uid\": 8412516, \"uname\": \"罗德岛蜜饼工坊\", \"face\": \"https:\\/\\/i0.hdslb.com\\/bfs\\/face\\/00776b6ddde4874af87b8bc2870da86ed39c2c80.jpg\" }, \"item\": { \"rp_id\": 568678499200295660, \"uid\": 8412516, \"content\": \"#明日方舟##饼学大厦#\\n饼组主线饼学预测——9.10版\\n①今日结果\\n9.10 PV(x周五没想到吧)\\n②后续预测\\n9.11 六星先锋(执旗手)干员-琴柳\\n9.12 #罗德岛相簿#+#可露希尔的秘密档案#11话\\n9.13 殿堂上的游禽-星极\\n9.14 宣传策略-空弦+家具\\n9.15 轮换池(+中文语音前瞻)\\n9.16 停机更新公告\\n9.17 #罗德岛闲逛部#+新六星EP+EP09·风暴瞭望开启\\n(后边3个活动都是周五开,yj,你好温柔)\\n9.19 #罗德岛相簿#\", \"ctrl\": \"\", \"orig_dy_id\": 568672623683005903, \"pre_dy_id\": 568672623683005903, \"timestamp\": 1631244181, \"reply\": 57, \"orig_type\": 8 }, \"origin\": \"{\\\"aid\\\":335406585,\\\"attribute\\\":0,\\\"cid\\\":405923565,\\\"copyright\\\":1,\\\"ctime\\\":1631242806,\\\"desc\\\":\\\"--重铸未来 方舟启航--\\\\n《明日方舟》主线【风暴瞭望】开放 限时纪念活动宣传pv\\\\n\\\\n↓↓《明日方舟》bilibili服下载↓↓\\\\nhttps:\\\\\\/\\\\\\/www.biligame.com\\\\\\/detail\\\\\\/?id=101772\\\\n\\\\n\\\\n一、主线EP09【风暴瞭望】开放\\\\n二、【小丘上的眠柳】限时寻访开启\\\\n三、新干员登场,【标准寻访】常驻\\\\n四、【怀望桑梓】登录活动开启\\\\n五、【风暴瞭望】开放,限时掉落活动开启\\\\n六、【闪耀阶梯】系列,新装限时上架\\\\n七、【生命之地】系列,限时复刻上架\\\\n八、新增【维多利亚近卫学院宿舍】主题家具,限时\\\",\\\"dimension\\\":{\\\"height\\\":1080,\\\"rotate\\\":0,\\\"width\\\":1920},\\\"duration\\\":147,\\\"dynamic\\\":\\\"--重铸未来 方舟启航--\\\\n《明日方舟》主线【风暴瞭望】开放 限时纪念活动宣传pv\\\\n\\\\n↓↓《明日方舟》bilibili服下载↓↓\\\\nhttps:\\\\\\/\\\\\\/www.biligame.com\\\\\\/detail\\\\\\/?id=101772\\\\n\\\\n\\\\n关于限时纪念活动的具体内容,请持续关注《明日方舟》游戏内公告、官网及官方自媒体账号。\\\",\\\"first_frame\\\":\\\"https:\\\\\\/\\\\\\/i0.hdslb.com\\\\\\/bfs\\\\\\/storyff\\\\\\/n210910a23h7upat6wvgfl3i80ue9aua_firsti.jpg\\\",\\\"jump_url\\\":\\\"bilibili:\\\\\\/\\\\\\/video\\\\\\/335406585\\\\\\/?page=1&player_preload=null&player_width=1920&player_height=1080&player_rotate=0\\\",\\\"owner\\\":{\\\"face\\\":\\\"https:\\\\\\/\\\\\\/i0.hdslb.com\\\\\\/bfs\\\\\\/face\\\\\\/89154378c06a5ed332c40c2ca56f50cd641c0c90.jpg\\\",\\\"mid\\\":161775300,\\\"name\\\":\\\"明日方舟\\\"},\\\"pic\\\":\\\"https:\\\\\\/\\\\\\/i1.hdslb.com\\\\\\/bfs\\\\\\/archive\\\\\\/d194cc26c034cb9fc0a5a55e25f98c0d357dedeb.jpg\\\",\\\"player_info\\\":null,\\\"pubdate\\\":1631242802,\\\"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},\\\"share_subtitle\\\":\\\"已观看176.0万次\\\",\\\"short_link\\\":\\\"https:\\\\\\/\\\\\\/b23.tv\\\\\\/BV1gA411F7s4\\\",\\\"short_link_v2\\\":\\\"https:\\\\\\/\\\\\\/b23.tv\\\\\\/BV1gA411F7s4\\\",\\\"stat\\\":{\\\"aid\\\":335406585,\\\"coin\\\":44601,\\\"danmaku\\\":14670,\\\"dislike\\\":0,\\\"favorite\\\":20251,\\\"his_rank\\\":9,\\\"like\\\":133118,\\\"now_rank\\\":0,\\\"reply\\\":25181,\\\"share\\\":27783,\\\"view\\\":1766087},\\\"state\\\":0,\\\"tid\\\":172,\\\"title\\\":\\\"《明日方舟》主线【风暴瞭望】开放 限时纪念活动宣传pv\\\",\\\"tname\\\":\\\"手机游戏\\\",\\\"videos\\\":1}\", \"origin_extend_json\": \"{\\\"\\\":{\\\"game\\\":{\\\"game_id\\\":101772,\\\"platform\\\":\\\"1,2\\\"},\\\"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}}\", \"origin_user\": { \"info\": { \"uid\": 161775300, \"uname\": \"明日方舟\", \"face\": \"https:\\/\\/i1.hdslb.com\\/bfs\\/face\\/89154378c06a5ed332c40c2ca56f50cd641c0c90.jpg\" }, \"card\": { \"official_verify\": { \"type\": 1, \"desc\": \"明日方舟官方账号\" } }, \"vip\": { \"vipType\": 2, \"vipDueDate\": 1646150400000, \"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\": 5305, \"name\": \"明日方舟音律系列\", \"image\": \"https:\\/\\/i0.hdslb.com\\/bfs\\/garb\\/item\\/615a1653281141ddf64cbb98c792ddaee78f7f40.png\", \"expire\": 0, \"image_enhance\": \"https:\\/\\/i0.hdslb.com\\/bfs\\/garb\\/item\\/516ecdf2d495a62f1bac31497c831b711823140c.webp\", \"image_enhance_frame\": \"https:\\/\\/i0.hdslb.com\\/bfs\\/garb\\/item\\/c0751afbf950373c260254d02768eabf30ff3906.png\" }, \"rank\": \"10000\", \"sign\": \"重铸未来 方舟启航\", \"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}}", + "extra": { + "is_space_top": 0 + }, + "display": { + "topic_info": { + "topic_details": [ + { + "topic_id": 4610466, + "topic_name": "明日方舟", + "is_activity": 0, + "topic_link": "" + }, + { + "topic_id": 16222309, + "topic_name": "饼学大厦", + "is_activity": 0, + "topic_link": "" + }, + { + "topic_id": 19505960, + "topic_name": "罗德岛相簿", + "is_activity": 0, + "topic_link": "" + }, + { + "topic_id": 19501473, + "topic_name": "可露希尔的秘密档案", + "is_activity": 1, + "topic_link": "https://www.bilibili.com/blackboard/dynamic/132290" + }, + { + "topic_id": 19504680, + "topic_name": "罗德岛闲逛部", + "is_activity": 0, + "topic_link": "" + } + ] + }, + "origin": { + "topic_info": { + "topic_details": [ + { + "topic_id": 4610466, + "topic_name": "明日方舟", + "is_activity": 0, + "topic_link": "" + }, + { + "topic_id": 3007, + "topic_name": "手机游戏", + "is_activity": 0, + "topic_link": "" + } + ] + }, + "usr_action_txt": "投稿了视频", + "relation": { + "status": 1, + "is_follow": 0, + "is_followed": 0 + }, + "attach_card": { + "type": "game", + "head_text": "相关游戏", + "cover_url": "https://i0.hdslb.com/bfs/game/debad5150aa1aeb27dd3bcbac4588c54dc7b5d10.png", + "cover_type": 1, + "title": "明日方舟", + "desc_first": "策略/二次元/美少女", + "desc_second": "主线【风暴瞭望】即将开放,限时纪念活动即将开启", + "jump_url": "https://www.biligame.com/detail?id=101772&sourceFrom=1005", + "button": { + "type": 1, + "jump_style": { + "text": "进入" + }, + "jump_url": "https://www.biligame.com/detail?id=101772&sourceFrom=1005" + }, + "oid_str": "101772" + }, + "add_on_card_info": [ + { + "add_on_card_show_type": 2, + "attach_card": { + "type": "game", + "head_text": "相关游戏", + "cover_url": "https://i0.hdslb.com/bfs/game/debad5150aa1aeb27dd3bcbac4588c54dc7b5d10.png", + "cover_type": 1, + "title": "明日方舟", + "desc_first": "策略/二次元/美少女", + "desc_second": "主线【风暴瞭望】即将开放,限时纪念活动即将开启", + "jump_url": "https://www.biligame.com/detail?id=101772&sourceFrom=1005", + "button": { + "type": 1, + "jump_style": { + "text": "进入" + }, + "jump_url": "https://www.biligame.com/detail?id=101772&sourceFrom=1005" + }, + "oid_str": "101772" + } + } + ], + "show_tip": { + "del_tip": "要删除动态吗?" + }, + "cover_play_icon_url": "https://i0.hdslb.com/bfs/album/2269afa7897830b397797ebe5f032b899b405c67.png" + }, + "relation": { + "status": 1, + "is_follow": 0, + "is_followed": 0 + }, + "comment_info": { + "comment_ids": "" + }, + "show_tip": { + "del_tip": "要删除动态吗?" + } + } + }, + { + "desc": { + "uid": 8412516, + "type": 1, + "rid": 568484078913235403, + "view": 17673, + "repost": 2, + "comment": 21, + "like": 199, + "is_liked": 0, + "dynamic_id": 568484078920438420, + "timestamp": 1631198914, + "pre_dy_id": 568387154389567443, + "orig_dy_id": 565815693047293346, + "orig_type": 64, + "user_profile": { + "info": { + "uid": 8412516, + "uname": "罗德岛蜜饼工坊", + "face": "https://i0.hdslb.com/bfs/face/00776b6ddde4874af87b8bc2870da86ed39c2c80.jpg" + }, + "card": { + "official_verify": { + "type": -1, + "desc": "" + } + }, + "vip": { + "vipType": 1, + "vipDueDate": 1626364800000, + "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, + "r_type": 1, + "status": 1, + "dynamic_id_str": "568484078920438420", + "pre_dy_id_str": "568387154389567443", + "orig_dy_id_str": "565815693047293346", + "rid_str": "568484078913235403", + "origin": { + "uid": 8412516, + "type": 64, + "rid": 12993752, + "view": 67017, + "repost": 17, + "dynamic_id": 565815693047293346, + "timestamp": 1630577632, + "uid_type": 1, + "r_type": 1, + "status": 1, + "dynamic_id_str": "565815693047293346", + "pre_dy_id_str": "0", + "orig_dy_id_str": "0", + "rid_str": "12993752" + }, + "previous": { + "uid": 8412516, + "type": 1, + "rid": 568387154387891793, + "acl": 0, + "view": 12862, + "repost": 2, + "like": 0, + "dynamic_id": 568387154389567443, + "timestamp": 1631176347, + "pre_dy_id": 568000577272362574, + "orig_dy_id": 565815693047293346, + "uid_type": 1, + "stype": 0, + "r_type": 1, + "inner_id": 0, + "status": 1, + "dynamic_id_str": "568387154389567443", + "pre_dy_id_str": "568000577272362574", + "orig_dy_id_str": "565815693047293346", + "rid_str": "568387154387891793", + "origin": { + "uid": 8412516, + "type": 64, + "rid": 12993752, + "dynamic_id": 565815693047293346, + "timestamp": 1630577632, + "uid_type": 1, + "r_type": 1, + "status": 1, + "dynamic_id_str": "565815693047293346", + "pre_dy_id_str": "0", + "orig_dy_id_str": "0", + "rid_str": "12993752" + }, + "previous": { + "uid": 8412516, + "type": 1, + "rid": 568000577273505783, + "acl": 0, + "view": 0, + "repost": 0, + "like": 0, + "dynamic_id": 568000577272362574, + "timestamp": 1631086340, + "pre_dy_id": 567622607260398211, + "orig_dy_id": 565815693047293346, + "uid_type": 1, + "stype": 0, + "r_type": 1, + "inner_id": 0, + "status": 1, + "dynamic_id_str": "568000577272362574", + "pre_dy_id_str": "567622607260398211", + "orig_dy_id_str": "565815693047293346", + "rid_str": "568000577273505783" + } + } + }, + "card": "{ \"user\": { \"uid\": 8412516, \"uname\": \"罗德岛蜜饼工坊\", \"face\": \"https:\\/\\/i0.hdslb.com\\/bfs\\/face\\/00776b6ddde4874af87b8bc2870da86ed39c2c80.jpg\" }, \"item\": { \"rp_id\": 568484078913235403, \"uid\": 8412516, \"content\": \"#明日方舟##饼学大厦#\\n9.09专栏更新完毕,有惊无险(时间诡异)\\n考虑到近来发饼,b站与微博时间差距不大\\n以后大厦等b站动态出了,直接转官方动态\\n制图更新、专栏替换完毕,再另行转专栏\", \"ctrl\": \"\", \"orig_dy_id\": 565815693047293346, \"pre_dy_id\": 568387154389567443, \"timestamp\": 1631198914, \"reply\": 21, \"orig_type\": 64 }, \"origin\": \"{ \\\"id\\\": 12993752, \\\"category\\\": { \\\"id\\\": 8, \\\"parent_id\\\": 1, \\\"name\\\": \\\"手机游戏\\\" }, \\\"categories\\\": [ { \\\"id\\\": 1, \\\"parent_id\\\": 0, \\\"name\\\": \\\"游戏\\\" }, { \\\"id\\\": 8, \\\"parent_id\\\": 1, \\\"name\\\": \\\"手机游戏\\\" } ], \\\"title\\\": \\\"【明日方舟】饼学大厦#12~14(风暴瞭望&玛莉娅·临光&红松林&感谢庆典)9.11更新\\\", \\\"summary\\\": \\\"更新记录09.11更新:覆盖09.10更新;以及排期更新,猜测周一周五开活动09.10更新:以周五开活动为底,PV\\\\\\/公告调整位置,整体结构更新09.08更新:饼学大厦#12更新,新增一件六星商店服饰(周日发饼)09.06更新:饼学大厦整栋整栋翻新,改为9.16开主线(四日无饼!)09.05凌晨更新:10.13后的排期(两日无饼,鹰角背刺,心狠手辣)前言感谢楪筱祈ぺ的动态-哔哩哔哩 (bilibili.com) 对饼学的贡献!后续排期:9.17【风暴瞭望】、10.01【玛莉娅·临光】复刻、10.1\\\", \\\"banner_url\\\": \\\"\\\", \\\"template_id\\\": 4, \\\"state\\\": 0, \\\"author\\\": { \\\"mid\\\": 8412516, \\\"name\\\": \\\"罗德岛蜜饼工坊\\\", \\\"face\\\": \\\"https:\\\\\\/\\\\\\/i0.hdslb.com\\\\\\/bfs\\\\\\/face\\\\\\/00776b6ddde4874af87b8bc2870da86ed39c2c80.jpg\\\", \\\"pendant\\\": { \\\"pid\\\": 0, \\\"name\\\": \\\"\\\", \\\"image\\\": \\\"\\\", \\\"expire\\\": 0 }, \\\"official_verify\\\": { \\\"type\\\": -1, \\\"desc\\\": \\\"\\\" }, \\\"nameplate\\\": { \\\"nid\\\": 0, \\\"name\\\": \\\"\\\", \\\"image\\\": \\\"\\\", \\\"image_small\\\": \\\"\\\", \\\"level\\\": \\\"\\\", \\\"condition\\\": \\\"\\\" }, \\\"vip\\\": { \\\"type\\\": 1, \\\"status\\\": 0, \\\"due_date\\\": 0, \\\"vip_pay_type\\\": 0, \\\"theme_type\\\": 0, \\\"label\\\": { \\\"path\\\": \\\"\\\", \\\"text\\\": \\\"\\\", \\\"label_theme\\\": \\\"\\\" }, \\\"avatar_subscript\\\": 0, \\\"nickname_color\\\": \\\"\\\" } }, \\\"reprint\\\": 0, \\\"image_urls\\\": [ \\\"https:\\\\\\/\\\\\\/i0.hdslb.com\\\\\\/bfs\\\\\\/article\\\\\\/e960919dc185d1d9026e8c80bf6d058edbab2e69.jpg\\\" ], \\\"publish_time\\\": 1630577632, \\\"ctime\\\": 1630577338, \\\"stats\\\": { \\\"view\\\": 14767, \\\"favorite\\\": 60, \\\"like\\\": 373, \\\"dislike\\\": 0, \\\"reply\\\": 103, \\\"share\\\": 21, \\\"coin\\\": 32, \\\"dynamic\\\": 0 }, \\\"attributes\\\": 24, \\\"words\\\": 1829, \\\"origin_image_urls\\\": [ \\\"https:\\\\\\/\\\\\\/i0.hdslb.com\\\\\\/bfs\\\\\\/article\\\\\\/5fcc573673cd6fa7204792f231d211472e28bd39.jpg\\\" ], \\\"list\\\": { \\\"id\\\": 383313, \\\"mid\\\": 8412516, \\\"name\\\": \\\"明日方舟饼学预测\\\", \\\"image_url\\\": \\\"\\\", \\\"update_time\\\": 1630577338, \\\"ctime\\\": 1614183370, \\\"publish_time\\\": 1630577632, \\\"summary\\\": \\\"\\\", \\\"words\\\": 8218, \\\"read\\\": 0, \\\"articles_count\\\": 0, \\\"state\\\": 3, \\\"reason\\\": \\\"\\\", \\\"apply_time\\\": \\\"\\\", \\\"check_time\\\": \\\"\\\" }, \\\"is_like\\\": false, \\\"media\\\": { \\\"score\\\": 0, \\\"media_id\\\": 0, \\\"title\\\": \\\"\\\", \\\"cover\\\": \\\"\\\", \\\"area\\\": \\\"\\\", \\\"type_id\\\": 0, \\\"type_name\\\": \\\"\\\", \\\"spoiler\\\": 0, \\\"season_id\\\": 0 }, \\\"apply_time\\\": \\\"\\\", \\\"check_time\\\": \\\"\\\", \\\"original\\\": 1, \\\"act_id\\\": 0, \\\"dispute\\\": null, \\\"authenMark\\\": null, \\\"cover_avid\\\": 0, \\\"top_video_info\\\": null, \\\"type\\\": 0 }\", \"origin_extend_json\": \"{\\\"like_icon\\\":{\\\"action\\\":\\\"\\\",\\\"action_url\\\":\\\"\\\",\\\"end\\\":\\\"\\\",\\\"end_url\\\":\\\"\\\",\\\"start\\\":\\\"\\\",\\\"start_url\\\":\\\"\\\"},\\\"topic\\\":{\\\"is_attach_topic\\\":1}}\", \"origin_user\": { \"info\": { \"uid\": 8412516, \"uname\": \"罗德岛蜜饼工坊\", \"face\": \"https:\\/\\/i0.hdslb.com\\/bfs\\/face\\/00776b6ddde4874af87b8bc2870da86ed39c2c80.jpg\" }, \"card\": { \"official_verify\": { \"type\": -1, \"desc\": \"\" } }, \"vip\": { \"vipType\": 1, \"vipDueDate\": 1626364800000, \"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 } } }", + "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}}", + "extra": { + "is_space_top": 0 + }, + "display": { + "topic_info": { + "topic_details": [ + { + "topic_id": 4610466, + "topic_name": "明日方舟", + "is_activity": 0, + "topic_link": "" + }, + { + "topic_id": 16222309, + "topic_name": "饼学大厦", + "is_activity": 0, + "topic_link": "" + } + ] + }, + "origin": { + "topic_info": { + "topic_details": [ + { + "topic_id": 12189522, + "topic_name": "感谢庆典", + "is_activity": 1, + "topic_link": "https://www.bilibili.com/blackboard/dynamic/84498" + }, + { + "topic_id": 4610466, + "topic_name": "明日方舟", + "is_activity": 0, + "topic_link": "" + }, + { + "topic_id": 21527990, + "topic_name": "红松林", + "is_activity": 0, + "topic_link": "" + }, + { + "topic_id": 20833282, + "topic_name": "风暴瞭望", + "is_activity": 0, + "topic_link": "" + }, + { + "topic_id": 20302865, + "topic_name": "饼学预测", + "is_activity": 0, + "topic_link": "" + } + ] + }, + "relation": { + "status": 1, + "is_follow": 0, + "is_followed": 0 + }, + "show_tip": { + "del_tip": "要删除动态吗?" + } + }, + "relation": { + "status": 1, + "is_follow": 0, + "is_followed": 0 + }, + "comment_info": { + "comment_ids": "" + }, + "show_tip": { + "del_tip": "要删除动态吗?" + } + } + }, + { + "desc": { + "uid": 8412516, + "type": 1, + "rid": 568387154387891793, + "acl": 0, + "view": 12862, + "repost": 2, + "comment": 31, + "like": 181, + "is_liked": 0, + "dynamic_id": 568387154389567443, + "timestamp": 1631176347, + "pre_dy_id": 568000577272362574, + "orig_dy_id": 565815693047293346, + "orig_type": 64, + "user_profile": { + "info": { + "uid": 8412516, + "uname": "罗德岛蜜饼工坊", + "face": "https://i0.hdslb.com/bfs/face/00776b6ddde4874af87b8bc2870da86ed39c2c80.jpg" + }, + "card": { + "official_verify": { + "type": -1, + "desc": "" + } + }, + "vip": { + "vipType": 1, + "vipDueDate": 1626364800000, + "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, + "stype": 0, + "r_type": 1, + "inner_id": 0, + "status": 1, + "dynamic_id_str": "568387154389567443", + "pre_dy_id_str": "568000577272362574", + "orig_dy_id_str": "565815693047293346", + "rid_str": "568387154387891793", + "origin": { + "uid": 8412516, + "type": 64, + "rid": 12993752, + "view": 67017, + "repost": 17, + "dynamic_id": 565815693047293346, + "timestamp": 1630577632, + "uid_type": 1, + "r_type": 1, + "status": 1, + "dynamic_id_str": "565815693047293346", + "pre_dy_id_str": "0", + "orig_dy_id_str": "0", + "rid_str": "12993752" + }, + "previous": { + "uid": 8412516, + "type": 1, + "rid": 568000577273505783, + "acl": 0, + "view": 12337, + "repost": 1, + "like": 0, + "dynamic_id": 568000577272362574, + "timestamp": 1631086340, + "pre_dy_id": 567622607260398211, + "orig_dy_id": 565815693047293346, + "uid_type": 1, + "stype": 0, + "r_type": 1, + "inner_id": 0, + "status": 1, + "dynamic_id_str": "568000577272362574", + "pre_dy_id_str": "567622607260398211", + "orig_dy_id_str": "565815693047293346", + "rid_str": "568000577273505783" + } + }, + "card": "{ \"user\": { \"uid\": 8412516, \"uname\": \"罗德岛蜜饼工坊\", \"face\": \"https:\\/\\/i0.hdslb.com\\/bfs\\/face\\/00776b6ddde4874af87b8bc2870da86ed39c2c80.jpg\" }, \"item\": { \"rp_id\": 568387154387891793, \"uid\": 8412516, \"content\": \"#明日方舟##饼学大厦#\\n饼组主线饼学预测——9.09版\\n①今日结果\\n9.09 五星医疗(行医)干员-桑葚(✓)\\n②后续预测\\n9.10 五星服饰\\n9.11 PV(周六,可能包含复刻)\\n9.12 #罗德岛相簿#+#可露希尔的秘密档案#11话+六星干员\\n9.13 六星服饰\\n9.14 六星服饰+家具\\n9.15 轮换池+停机更新公告\\n9.16 新六星EP+EP09·风暴瞭望开启\\n9.17 #罗德岛闲逛部#\\n9.19 #罗德岛相簿#\", \"ctrl\": \"\", \"orig_dy_id\": 565815693047293346, \"pre_dy_id\": 568000577272362574, \"timestamp\": 1631176347, \"reply\": 31, \"orig_type\": 64 }, \"origin\": \"{ \\\"id\\\": 12993752, \\\"category\\\": { \\\"id\\\": 8, \\\"parent_id\\\": 1, \\\"name\\\": \\\"手机游戏\\\" }, \\\"categories\\\": [ { \\\"id\\\": 1, \\\"parent_id\\\": 0, \\\"name\\\": \\\"游戏\\\" }, { \\\"id\\\": 8, \\\"parent_id\\\": 1, \\\"name\\\": \\\"手机游戏\\\" } ], \\\"title\\\": \\\"【明日方舟】饼学大厦#12~14(风暴瞭望&玛莉娅·临光&红松林&感谢庆典)9.11更新\\\", \\\"summary\\\": \\\"更新记录09.11更新:覆盖09.10更新;以及排期更新,猜测周一周五开活动09.10更新:以周五开活动为底,PV\\\\\\/公告调整位置,整体结构更新09.08更新:饼学大厦#12更新,新增一件六星商店服饰(周日发饼)09.06更新:饼学大厦整栋整栋翻新,改为9.16开主线(四日无饼!)09.05凌晨更新:10.13后的排期(两日无饼,鹰角背刺,心狠手辣)前言感谢楪筱祈ぺ的动态-哔哩哔哩 (bilibili.com) 对饼学的贡献!后续排期:9.17【风暴瞭望】、10.01【玛莉娅·临光】复刻、10.1\\\", \\\"banner_url\\\": \\\"\\\", \\\"template_id\\\": 4, \\\"state\\\": 0, \\\"author\\\": { \\\"mid\\\": 8412516, \\\"name\\\": \\\"罗德岛蜜饼工坊\\\", \\\"face\\\": \\\"https:\\\\\\/\\\\\\/i0.hdslb.com\\\\\\/bfs\\\\\\/face\\\\\\/00776b6ddde4874af87b8bc2870da86ed39c2c80.jpg\\\", \\\"pendant\\\": { \\\"pid\\\": 0, \\\"name\\\": \\\"\\\", \\\"image\\\": \\\"\\\", \\\"expire\\\": 0 }, \\\"official_verify\\\": { \\\"type\\\": -1, \\\"desc\\\": \\\"\\\" }, \\\"nameplate\\\": { \\\"nid\\\": 0, \\\"name\\\": \\\"\\\", \\\"image\\\": \\\"\\\", \\\"image_small\\\": \\\"\\\", \\\"level\\\": \\\"\\\", \\\"condition\\\": \\\"\\\" }, \\\"vip\\\": { \\\"type\\\": 1, \\\"status\\\": 0, \\\"due_date\\\": 0, \\\"vip_pay_type\\\": 0, \\\"theme_type\\\": 0, \\\"label\\\": { \\\"path\\\": \\\"\\\", \\\"text\\\": \\\"\\\", \\\"label_theme\\\": \\\"\\\" }, \\\"avatar_subscript\\\": 0, \\\"nickname_color\\\": \\\"\\\" } }, \\\"reprint\\\": 0, \\\"image_urls\\\": [ \\\"https:\\\\\\/\\\\\\/i0.hdslb.com\\\\\\/bfs\\\\\\/article\\\\\\/e960919dc185d1d9026e8c80bf6d058edbab2e69.jpg\\\" ], \\\"publish_time\\\": 1630577632, \\\"ctime\\\": 1630577338, \\\"stats\\\": { \\\"view\\\": 14767, \\\"favorite\\\": 60, \\\"like\\\": 373, \\\"dislike\\\": 0, \\\"reply\\\": 103, \\\"share\\\": 21, \\\"coin\\\": 32, \\\"dynamic\\\": 0 }, \\\"attributes\\\": 24, \\\"words\\\": 1829, \\\"origin_image_urls\\\": [ \\\"https:\\\\\\/\\\\\\/i0.hdslb.com\\\\\\/bfs\\\\\\/article\\\\\\/5fcc573673cd6fa7204792f231d211472e28bd39.jpg\\\" ], \\\"list\\\": { \\\"id\\\": 383313, \\\"mid\\\": 8412516, \\\"name\\\": \\\"明日方舟饼学预测\\\", \\\"image_url\\\": \\\"\\\", \\\"update_time\\\": 1630577338, \\\"ctime\\\": 1614183370, \\\"publish_time\\\": 1630577632, \\\"summary\\\": \\\"\\\", \\\"words\\\": 8218, \\\"read\\\": 0, \\\"articles_count\\\": 0, \\\"state\\\": 3, \\\"reason\\\": \\\"\\\", \\\"apply_time\\\": \\\"\\\", \\\"check_time\\\": \\\"\\\" }, \\\"is_like\\\": false, \\\"media\\\": { \\\"score\\\": 0, \\\"media_id\\\": 0, \\\"title\\\": \\\"\\\", \\\"cover\\\": \\\"\\\", \\\"area\\\": \\\"\\\", \\\"type_id\\\": 0, \\\"type_name\\\": \\\"\\\", \\\"spoiler\\\": 0, \\\"season_id\\\": 0 }, \\\"apply_time\\\": \\\"\\\", \\\"check_time\\\": \\\"\\\", \\\"original\\\": 1, \\\"act_id\\\": 0, \\\"dispute\\\": null, \\\"authenMark\\\": null, \\\"cover_avid\\\": 0, \\\"top_video_info\\\": null, \\\"type\\\": 0 }\", \"origin_extend_json\": \"{\\\"like_icon\\\":{\\\"action\\\":\\\"\\\",\\\"action_url\\\":\\\"\\\",\\\"end\\\":\\\"\\\",\\\"end_url\\\":\\\"\\\",\\\"start\\\":\\\"\\\",\\\"start_url\\\":\\\"\\\"},\\\"topic\\\":{\\\"is_attach_topic\\\":1}}\", \"origin_user\": { \"info\": { \"uid\": 8412516, \"uname\": \"罗德岛蜜饼工坊\", \"face\": \"https:\\/\\/i0.hdslb.com\\/bfs\\/face\\/00776b6ddde4874af87b8bc2870da86ed39c2c80.jpg\" }, \"card\": { \"official_verify\": { \"type\": -1, \"desc\": \"\" } }, \"vip\": { \"vipType\": 1, \"vipDueDate\": 1626364800000, \"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 } } }", + "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}}", + "extra": { + "is_space_top": 0 + }, + "display": { + "topic_info": { + "topic_details": [ + { + "topic_id": 4610466, + "topic_name": "明日方舟", + "is_activity": 0, + "topic_link": "" + }, + { + "topic_id": 16222309, + "topic_name": "饼学大厦", + "is_activity": 0, + "topic_link": "" + }, + { + "topic_id": 19505960, + "topic_name": "罗德岛相簿", + "is_activity": 0, + "topic_link": "" + }, + { + "topic_id": 19501473, + "topic_name": "可露希尔的秘密档案", + "is_activity": 1, + "topic_link": "https://www.bilibili.com/blackboard/dynamic/132290" + }, + { + "topic_id": 19504680, + "topic_name": "罗德岛闲逛部", + "is_activity": 0, + "topic_link": "" + } + ] + }, + "origin": { + "topic_info": { + "topic_details": [ + { + "topic_id": 12189522, + "topic_name": "感谢庆典", + "is_activity": 1, + "topic_link": "https://www.bilibili.com/blackboard/dynamic/84498" + }, + { + "topic_id": 4610466, + "topic_name": "明日方舟", + "is_activity": 0, + "topic_link": "" + }, + { + "topic_id": 21527990, + "topic_name": "红松林", + "is_activity": 0, + "topic_link": "" + }, + { + "topic_id": 20833282, + "topic_name": "风暴瞭望", + "is_activity": 0, + "topic_link": "" + }, + { + "topic_id": 20302865, + "topic_name": "饼学预测", + "is_activity": 0, + "topic_link": "" + } + ] + }, + "relation": { + "status": 1, + "is_follow": 0, + "is_followed": 0 + }, + "show_tip": { + "del_tip": "要删除动态吗?" + } + }, + "relation": { + "status": 1, + "is_follow": 0, + "is_followed": 0 + }, + "comment_info": { + "comment_ids": "" + }, + "show_tip": { + "del_tip": "要删除动态吗?" + } + } + } + ], + "next_offset": 568387154389567443, + "_gt_": 0 + } +} \ No newline at end of file diff --git a/tests/platforms/static/bilibili_fake_dy_list.json b/tests/platforms/static/bilibili_fake_dy_list.json new file mode 100644 index 0000000..1890764 --- /dev/null +++ b/tests/platforms/static/bilibili_fake_dy_list.json @@ -0,0 +1,246 @@ +{ + "data": { + "cards": [ + { + "desc": { + "type": 2 + }, + "display": { + "topic_info": { + "topic_details": [ + { + "topic_name": "" + } + ] + } + } + }, + { + "desc": { + "type": 1 + }, + "display": { + "topic_info": { + "topic_details": [ + { + "topic_name": "" + } + ] + } + } + }, + { + "desc": { + "type": 8 + }, + "display": { + "topic_info": { + "topic_details": [ + { + "topic_name": "明日方舟" + }, + { + "topic_name": "风笛" + }, + { + "topic_name": "琴柳" + }, + { + "topic_name": "风暴瞭望" + }, + { + "topic_name": "轮换池" + }, + { + "topic_name": "打卡挑战" + } + ] + } + } + }, + { + "desc": { + "type": 2 + }, + "display": { + "topic_info": { + "topic_details": [ + { + "topic_name": "" + } + ] + } + } + }, + { + "desc": { + "type": 1 + }, + "display": { + "topic_info": { + "topic_details": [ + { + "topic_name": "明日方舟" + }, + { + "topic_name": "饼学大厦" + }, + { + "topic_name": "可露希尔的秘密档案" + } + ] + } + } + }, + { + "desc": { + "type": 1 + }, + "display": { + "topic_info": { + "topic_details": [ + { + "topic_name": "罗德岛相簿" + }, + { + "topic_name": "可露希尔的秘密档案" + }, + { + "topic_name": "罗德岛闲逛部" + } + ] + } + } + }, + { + "desc": { + "type": 8 + }, + "display": { + "topic_info": { + "topic_details": [ + { + "topic_name": "明日方舟" + }, + { + "topic_name": "轮换学" + }, + { + "topic_name": "常驻标准寻访" + }, + { + "topic_name": "轮换池" + }, + { + "topic_name": "打卡挑战" + }, + { + "topic_name": "舟游" + } + ] + } + } + }, + { + "desc": { + "type": 2 + }, + "display": { + "topic_info": { + "topic_details": [ + { + "topic_name": "明日方舟" + }, + { + "topic_name": "饼学大厦" + } + ] + } + } + }, + { + "desc": { + "type": 4 + }, + "display": { + "topic_info": { + "topic_details": [ + { + "topic_name": "" + } + ] + } + } + }, + { + "desc": { + "type": 1 + }, + "display": { + "topic_info": { + "topic_details": [ + { + "topic_name": "明日方舟" + }, + { + "topic_name": "饼学大厦" + }, + { + "topic_name": "罗德岛相簿" + }, + { + "topic_name": "可露希尔的秘密档案" + }, + { + "topic_name": "罗德岛闲逛部" + } + ] + } + } + }, + { + "desc": { + "type": 1 + }, + "display": { + "topic_info": { + "topic_details": [ + { + "topic_name": "明日方舟" + }, + { + "topic_name": "饼学大厦" + } + ] + } + } + }, + { + "desc": { + "type": 1 + }, + "display": { + "topic_info": { + "topic_details": [ + { + "topic_name": "明日方舟" + }, + { + "topic_name": "饼学大厦" + }, + { + "topic_name": "罗德岛相簿" + }, + { + "topic_name": "可露希尔的秘密档案" + }, + { + "topic_name": "罗德岛闲逛部" + } + ] + } + } + } + ] + } +} \ No newline at end of file diff --git a/tests/platforms/test_bilibili.py b/tests/platforms/test_bilibili.py index afcd426..402afb5 100644 --- a/tests/platforms/test_bilibili.py +++ b/tests/platforms/test_bilibili.py @@ -69,3 +69,33 @@ async def test_parse_target(bilibili: "Bilibili"): await bilibili.parse_target( "https://www.bilibili.com/video/BV1qP4y1g738?spm_id_from=333.999.0.0" ) + + +@pytest.fixture(scope="module") +def post_list(): + return get_json("bilibili_fake_dy_list.json")["data"]["cards"] + + +# 测试新tag机制的平台推送情况 +@pytest.mark.asyncio +async def test_filter_user_custom(bilibili, post_list): + + only_banned_tags = ["~可露希尔的秘密档案"] + res0 = await bilibili.filter_user_custom(post_list, [], only_banned_tags) + assert len(res0) == 8 + + only_subscribed_tags = ["可露希尔的秘密档案"] + res1 = await bilibili.filter_user_custom(post_list, [], only_subscribed_tags) + assert len(res1) == 4 + + multi_subs_tags_1 = ["可露希尔的秘密档案", "罗德岛相簿"] + res2 = await bilibili.filter_user_custom(post_list, [], multi_subs_tags_1) + assert len(res2) == 4 + + multi_subs_tags_2 = ["罗德岛相簿", "风暴瞭望"] + res3 = await bilibili.filter_user_custom(post_list, [], multi_subs_tags_2) + assert len(res3) == 4 + + multi_subs_tags_3 = ["明日方舟", "~饼学大厦"] + res4 = await bilibili.filter_user_custom(post_list, [], multi_subs_tags_3) + assert len(res4) == 2 diff --git a/tests/platforms/test_platform_tag_filter.py b/tests/platforms/test_platform_tag_filter.py index c644b05..c9d399a 100644 --- a/tests/platforms/test_platform_tag_filter.py +++ b/tests/platforms/test_platform_tag_filter.py @@ -9,6 +9,7 @@ def test_cases(): return get_json("tag_cases.json") +# 测试正反tag的判断情况 @pytest.mark.asyncio async def test_filter_user_custom_tag(app: App, test_cases): from nonebot_bison.platform import platform_manager @@ -17,3 +18,15 @@ async def test_filter_user_custom_tag(app: App, test_cases): for case in test_cases: res = bilibili.is_banned_post(**case["case"]) assert res == case["result"] + + +# 测试正反tag的分离情况 +@pytest.mark.asyncio +async def test_tag_separator(app: App): + from nonebot_bison.platform import platform_manager + + bilibili = platform_manager["bilibili"] + tags = ["~111", "222", "333", "~444", "555"] + res = bilibili.tag_separator(tags) + assert res[0] == ["222", "333", "555"] + assert res[1] == ["111", "444"] From 34986c1d4e0e34f798bbcb274211fc1c2f1c4a7b Mon Sep 17 00:00:00 2001 From: Azide Date: Mon, 12 Sep 2022 00:27:33 +0800 Subject: [PATCH 5/8] =?UTF-8?q?fix:=E9=80=BB=E8=BE=91=E4=BC=98=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/plugins/nonebot_bison/platform/platform.py | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/src/plugins/nonebot_bison/platform/platform.py b/src/plugins/nonebot_bison/platform/platform.py index 5218058..12c4c9e 100644 --- a/src/plugins/nonebot_bison/platform/platform.py +++ b/src/plugins/nonebot_bison/platform/platform.py @@ -111,7 +111,7 @@ class Platform(metaclass=RegistryABCMeta, base=True): def set_stored_data(self, target: Target, data: Any): self.store[target] = data - def tag_separator(self, stored_tags: list[Tag]): + def tag_separator(self, stored_tags: list[Tag]) -> tuple[list[Tag], list[Tag]]: """返回分离好的正反tag元组""" subscribed_tags = [] banned_tags = [] @@ -137,17 +137,16 @@ class Platform(metaclass=RegistryABCMeta, base=True): for tag in post_tags or []: if tag in banned_tags: return True - # 检测屏蔽tag后检测订阅tag + # 检测屏蔽tag后,再检测订阅tag # 存在任意需要订阅的tag则为假 - ban_it = True if subscribed_tags: + ban_it = True for tag in post_tags or []: if tag in subscribed_tags: ban_it = False + return ban_it else: - ban_it = False - - return ban_it + return False async def filter_user_custom( self, raw_post_list: list[RawPost], cats: list[Category], tags: list[Tag] From 964db0790876e87bdf16f1636d81034fab61124d Mon Sep 17 00:00:00 2001 From: Azide Date: Mon, 12 Sep 2022 01:22:36 +0800 Subject: [PATCH 6/8] =?UTF-8?q?docs:=E5=AE=8C=E5=96=84Tag=E8=AE=A2?= =?UTF-8?q?=E9=98=85=E7=9A=84=E4=BB=8B=E7=BB=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/usage/README.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/docs/usage/README.md b/docs/usage/README.md index 39bf8e6..af6585f 100644 --- a/docs/usage/README.md +++ b/docs/usage/README.md @@ -215,3 +215,20 @@ RSS 链接即为 uid 在网易云网页上电台的链接一般为`https://music.163.com/#/djradio?id=793745436`,`id=` 后面的数字即为 uid + +### 平台订阅标签(Tag) + +社交平台中的 Tag 一般指使用井号(`#`)作为前缀,将关键词进行标记,方便用户进行搜索的功能。 +例子:`#明日方舟# #每日打卡#(weibo、bilibili) #baracamp(Twitter)` + +在 Bison 中,用户在添加平台账号订阅时(如果该平台提供有 hashtag 功能), +会进行`输入需要订阅/屏蔽tag`的步骤。 + +如果需要订阅某些 tag,需要直接向 bison 发送需要订阅的一系列 tag,并使用空格进行分隔。 +例:`A1行动预备组 罗德厨房——回甘` + +如果需要屏蔽某些 tag,需要在需要屏蔽的 tag 前加上前缀`~`,对于复数的 tag,使用空格进行分隔。 +例:`~123罗德岛 ~莱茵生命漫画` + +可以综合运用以上规则进行同时订阅/屏蔽。 +例:`A1行动预备组 ~123罗德岛 罗德厨房——回甘 ~莱茵生命漫画` From 2d4887c1d7a1a2f9ee56999c6fe0013b8cec647b Mon Sep 17 00:00:00 2001 From: Azide Date: Mon, 12 Sep 2022 01:38:18 +0800 Subject: [PATCH 7/8] =?UTF-8?q?docs:=E5=AE=8C=E5=96=84Tag=E7=AD=9B?= =?UTF-8?q?=E9=80=89=E8=A7=84=E5=88=99=E7=9A=84=E4=BB=8B=E7=BB=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/usage/README.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/docs/usage/README.md b/docs/usage/README.md index af6585f..b922589 100644 --- a/docs/usage/README.md +++ b/docs/usage/README.md @@ -232,3 +232,12 @@ RSS 链接即为 uid 可以综合运用以上规则进行同时订阅/屏蔽。 例:`A1行动预备组 ~123罗德岛 罗德厨房——回甘 ~莱茵生命漫画` + +#### Tag 的推送规则 + +每当 Bison 抓取到一条推送,推送中的 Tag 会经过一下检查: + +- Bison 会对**需屏蔽 Tag**进行最优先检查,只要检测到本次推送中存在**任一**已记录的**需屏蔽 tag**,Bison 便会将该推送丢弃。 +- 上一个检查通过后,Bison 会对**需订阅 tag**进行检查,如果本次推送中存在**任一**已记录的**需订阅 tag**,Bison 便会将该推送发送到群中。 +- 当已记录的**需订阅 tag**为空时,只要通过了*第一条规则*的检查,Bison 就会将该推送发送到群中。 +- 当已记录的**需订阅 tag**不为空时,即使通过了*第一条规则*的检查,若本次推送不含**任何**已记录的**需订阅 tag**,Bison 也会将该推送丢弃。 From 8e315d53d38a65fb6f326794cfaf066df9b24907 Mon Sep 17 00:00:00 2001 From: Azide Date: Mon, 12 Sep 2022 02:33:49 +0800 Subject: [PATCH 8/8] =?UTF-8?q?fix=20test:=E4=BF=AE=E6=94=B9=E4=BA=86?= =?UTF-8?q?=E8=AE=A2=E9=98=85=E8=BF=87=E7=A8=8B=E4=B8=ADbot=E7=9A=84?= =?UTF-8?q?=E5=9B=9E=E5=A4=8D=E5=86=85=E5=AE=B9=E5=B9=B6=E8=B0=83=E6=95=B4?= =?UTF-8?q?=E5=8D=95=E5=85=83=E6=B5=8B=E8=AF=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/plugins/nonebot_bison/config_manager.py | 8 ++++++-- tests/test_config_manager_add.py | 16 +++++++++++++--- tests/utils.py | 5 +++-- 3 files changed, 22 insertions(+), 7 deletions(-) diff --git a/src/plugins/nonebot_bison/config_manager.py b/src/plugins/nonebot_bison/config_manager.py index ab81812..7703845 100644 --- a/src/plugins/nonebot_bison/config_manager.py +++ b/src/plugins/nonebot_bison/config_manager.py @@ -138,7 +138,7 @@ def do_add_sub(add_sub: Type[Matcher]): state["id"] = target state["name"] = name except (LookupError): - url = "https://nonebot-bison.vercel.app/usage/#%E6%89%80%E6%94%AF%E6%8C%81%E5%B9%B3%E5%8F%B0%E7%9A%84-uid" + url = "https://nonebot-bison.netlify.app/usage/#%E6%89%80%E6%94%AF%E6%8C%81%E5%B9%B3%E5%8F%B0%E7%9A%84-uid" title = "Bison所支持的平台UID" content = "查询相关平台的uid格式或获取方式" image = "https://s3.bmp.ovh/imgs/2022/03/ab3cc45d83bd3dd3.jpg" @@ -183,13 +183,17 @@ def do_add_sub(add_sub: Type[Matcher]): if not platform_manager[state["platform"]].enable_tag: state["tags"] = [] return - state["_prompt"] = '请输入要订阅的tag,订阅所有tag输入"全部标签"' + state["_prompt"] = '请输入要订阅/屏蔽的tag(不含#号)\n多个tag请使用空格隔开\n具体规则回复"详情"' async def parser_tags(event: MessageEvent, state: T_State): if not isinstance(state["tags"], Message): return if str(event.get_message()).strip() == "取消": # 一般不会有叫 取消 的tag吧 await add_sub.finish("已中止订阅") + if str(event.get_message()).strip() == "详情": + await add_sub.reject( + '订阅tag直接输入tag内容\n订阅所有tag输入"全部标签"\n屏蔽tag请在tag名称前添加~号\n详见https://nonebot-bison.netlify.app/usage/#平台订阅标签-tag' + ) if str(event.get_message()).strip() == "全部标签": state["tags"] = [] else: diff --git a/tests/test_config_manager_add.py b/tests/test_config_manager_add.py index 8064f0d..dcf63e5 100644 --- a/tests/test_config_manager_add.py +++ b/tests/test_config_manager_add.py @@ -1,3 +1,5 @@ +from email import message + import pytest import respx from httpx import Response @@ -154,12 +156,20 @@ async def test_add_with_target(app: App): ) ctx.receive_event(bot, event_5_ok) ctx.should_call_send(event_5_ok, Message(BotReply.add_reply_on_tags), True) - event_6 = fake_group_message_event( + event_6_more_info = fake_group_message_event( + message=Message("详情"), sender=fake_admin_user + ) + ctx.receive_event(bot, event_6_more_info) + ctx.should_call_send( + event_6_more_info, BotReply.add_reply_on_tags_need_more_info, True + ) + ctx.should_rejected() + event_6_ok = fake_group_message_event( message=Message("全部标签"), sender=fake_admin_user ) - ctx.receive_event(bot, event_6) + ctx.receive_event(bot, event_6_ok) ctx.should_call_send( - event_6, BotReply.add_reply_subscribe_success("明日方舟Arknights"), True + event_6_ok, BotReply.add_reply_subscribe_success("明日方舟Arknights"), True ) ctx.should_finished() subs = config.list_subscribe(10000, "group") diff --git a/tests/utils.py b/tests/utils.py index 08bdbe2..003ed07 100644 --- a/tests/utils.py +++ b/tests/utils.py @@ -99,7 +99,7 @@ class BotReply: @staticmethod def add_reply_on_id_input_search(): - search_url = "https://nonebot-bison.vercel.app/usage/#%E6%89%80%E6%94%AF%E6%8C%81%E5%B9%B3%E5%8F%B0%E7%9A%84-uid" + search_url = "https://nonebot-bison.netlify.app/usage/#%E6%89%80%E6%94%AF%E6%8C%81%E5%B9%B3%E5%8F%B0%E7%9A%84-uid" search_title = "Bison所支持的平台UID" search_content = "查询相关平台的uid格式或获取方式" search_image = "https://s3.bmp.ovh/imgs/2022/03/ab3cc45d83bd3dd3.jpg" @@ -144,5 +144,6 @@ class BotReply: add_reply_on_id_input_error = "id输入错误" add_reply_on_target_parse_input_error = "不能从你的输入中提取出id,请检查你输入的内容是否符合预期" add_reply_on_platform_input_error = "平台输入错误" - add_reply_on_tags = '请输入要订阅的tag,订阅所有tag输入"全部标签"' + add_reply_on_tags = '请输入要订阅/屏蔽的tag(不含#号)\n多个tag请使用空格隔开\n具体规则回复"详情"' + add_reply_on_tags_need_more_info = '订阅tag直接输入tag内容\n订阅所有tag输入"全部标签"\n屏蔽tag请在tag名称前添加~号\n详见https://nonebot-bison.netlify.app/usage/#平台订阅标签-tag' add_reply_abort = "已中止订阅"