Skip to content

Commit

Permalink
修正: 直播信息流心跳包回应格式和示例 (SocialSisterYi#411)
Browse files Browse the repository at this point in the history
  • Loading branch information
Mz1z authored Jul 13, 2022
1 parent 107b819 commit f15bbb3
Showing 1 changed file with 21 additions and 18 deletions.
39 changes: 21 additions & 18 deletions live/message_stream.md
Original file line number Diff line number Diff line change
Expand Up @@ -138,14 +138,14 @@ curl -G 'http://api.live.bilibili.com/xlive/web-room/v1/index/getDanmuInfo' \

json格式

| 字段 | 类型 | 内容 | 必要性 | 备注 |
| -------- | ---- | ------------ | ------ | ------------ |
| uid | num | 用户mid | 非必要 | |
| roomid | num | 加入房间的id | 必要 | 直播间真实id |
| protover | num | 协议版本 | 非必要 | 3 |
| platform | str | 平台标识 | 非必要 | "web" |
| type | num | 2 | 非必要 | |
| key | str | 认证秘钥 | 非必要 | |
| 字段 | 类型 | 内容 | 必要性 | 备注 |
| -------- | ---- | ------------ | ------ | ------------------ |
| uid | num | 用户mid | 非必要 | uid为0即为游客登录 |
| roomid | num | 加入房间的id | 必要 | 直播间真实id |
| protover | num | 协议版本 | 非必要 | 3 |
| platform | str | 平台标识 | 非必要 | "web" |
| type | num | 2 | 非必要 | |
| key | str | 认证秘钥 | 非必要 | |

示例:

Expand Down Expand Up @@ -204,8 +204,8 @@ json格式
示例:

```
00000000 00 00 00 1f 00 10 00 01 00 00 00 02 00 00 00 01 |................|
00000010 5b 6f 62 6a 65 63 74 20 4f 62 6a 65 63 74 5d |[object Object]|
00000000: 0000 001f 0010 0001 0000 0002 0000 0001 ................
00000001: 5b6f 626a 6563 7420 4f62 6a65 6374 5d [object Object]
```

### 心跳回应(人气值)
Expand All @@ -216,16 +216,19 @@ json格式

正文:

uint32整数,代表房间当前的人气值
正文分为两个部分,第一部分是人气值 [uint32整数,代表房间当前的人气值]

第二部分是对于心跳包内容的复制,心跳包正文是什么这里就会回应什么。

示例:

```
00000000 00 00 00 14 00 10 00 01 00 00 00 03 00 00 00 01 |................|
00000010 00 00 14 83 |....|
00000000: 0000 0014 0010 0001 0000 0003 0000 0000 ................
00000001: 0000 09a2 5b6f 626a 6563 7420 4f62 6a65 ....[object Obje
00000002: 6374 5d
```

可见房间内人气值为5251
可见房间内人气值为2466(0x000009a2)

### 普通包

Expand Down Expand Up @@ -331,7 +334,7 @@ json格式
}
```
</details>

#### 进场或关注消息

方式:(下行)
Expand Down Expand Up @@ -370,7 +373,7 @@ data字段

<details>
<summary>查看消息示例:</summary>

```json
{
"cmd": "INTERACT_WORD",
Expand Down Expand Up @@ -412,7 +415,7 @@ data字段
}
}
```

</detail>


Expand Down Expand Up @@ -506,7 +509,7 @@ json格式
}
```
</details>

#### 送礼


Expand Down

0 comments on commit f15bbb3

Please sign in to comment.