Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
bggRGjQaUbCoE
2025-08-30 14:50:54 +08:00
parent 80fa0240e9
commit 8d94c0405f
115 changed files with 3150 additions and 1438 deletions

View File

@@ -18,7 +18,7 @@ class DanmakuHttp {
int? fontsize, // 弹幕字号默认25
int? pool, // 弹幕池选择0普通池 1字幕池 2特殊池代码/BAS弹幕默认普通池0
//int? rnd,// 当前时间戳*1000000若无此项则发送弹幕冷却时间限制为90s若有此项则发送弹幕冷却时间限制为5s
bool? colorful, //60001专属渐变彩色需要会员
bool colorful = false, //60001专属渐变彩色需要会员
int? checkboxType, //是否带 UP 身份标识0普通4带有标识
// String? csrf,//CSRF Token位于 Cookie Cookie 方式必要
// String? access_key,// APP 登录 Token APP 方式必要
@@ -35,11 +35,11 @@ class DanmakuHttp {
//'aid': aid,
'bvid': bvid,
'progress': progress,
'color': colorful == true ? 16777215 : color,
'color': colorful ? 16777215 : color,
'fontsize': fontsize,
'pool': pool,
'rnd': DateTime.now().microsecondsSinceEpoch,
'colorful': colorful == true ? 60001 : null,
'colorful': colorful ? 60001 : null,
'checkbox_type': checkboxType,
'csrf': Accounts.main.csrf,
// 'access_key': access_key,