Greasy Fork is available in English.

Bilibili Download Pictures

Download pictures from bilibili timeline and 720P videos.

< Feedback on Bilibili Download Pictures

Question/comment

§
Posted: 2025-01-26

通过B站API获取的动态ID似乎有误

正常的一个动态链接为:https://www.bilibili.com/opus/{number}

但是脚本的命名不是这一串数字,而是以00结尾的一串不存在的动态ID

怀疑是bug,建议直接用document.URL获取

§
Posted: 2025-01-26

补丁:

- const dynamicId = data.card.desc.dynamic_id;
+ const dynamicId = document.URL.match(/\/(\d+)\??/)[1];

Post reply

Sign in to post a reply.