Support anonymous connect to ws server
This commit is contained in:
8 files changed
+56
-42
No files matched your search
@@ -10,6 +10,7 @@ package cn.rtast.bldm.dto
|
||||
public object BldmConstant {
|
||||
public const val REAL_ROOM_ID_URL: String = "https://api.live.bilibili.com/room/v1/Room/room_init"
|
||||
public const val USER_NAV_URL: String = "https://api.bilibili.com/x/web-interface/nav"
|
||||
public const val BUVID_URL: String = "https://api.bilibili.com/x/web-frontend/getbuvid"
|
||||
public const val DM_SERVER_CONF_URL: String =
|
||||
"https://api.live.bilibili.com/xlive/web-room/v1/index/getDanmuInfo"
|
||||
}
|
||||
@@ -0,0 +1,16 @@
|
||||
/*
|
||||
* Copyright © 2026 RTAkland
|
||||
* Author: RTAkland
|
||||
* Date: 2026/8/31
|
||||
*/
|
||||
|
||||
|
||||
package cn.rtast.bldm.dto
|
||||
|
||||
import kotlinx.serialization.Serializable
|
||||
|
||||
@Serializable
|
||||
public data class Buvid(val data: BuvidData) {
|
||||
@Serializable
|
||||
public data class BuvidData(val buvid: String)
|
||||
}
|
||||
Reference in New Issue
Block a user