Commit a891d7e5603b38733ad857821cd9553391b3b773

Authored by 国亚奇
1 parent 79b93072

add

05.互动云/3.7 记录聊天室进入用户.md 0 → 100644
  1 +#### 请求参数说明:
  2 +| 参数名 | 参数类型 | 必选 | 参数说明 |
  3 +| :----------- | :------: | :------: | :------: |
  4 +| spId | String | true | 服务提供商 |
  5 +| token| String | true | 参数加密串 |
  6 +| ----activeId | String | true | 活动ID |
  7 +| ----sid | String | false | SSO ID |
  8 +| ----uuid | String| true | 时间戳(xxx_xxx) |
  9 +| ----plat | String| true | 客户端平台标识(a/i) |
  10 +-----
  11 +#### 返回样例:
  12 +```
  13 +{
  14 + "errorCode": "0",
  15 + "errorMessage": "success"
  16 +}
  17 +```
0 18 \ No newline at end of file
... ...
05.互动云/3.8 获取聊天室累计用户数.md 0 → 100644
  1 +#### 请求参数说明:
  2 +| 参数名 | 参数类型 | 必选 | 参数说明 |
  3 +| :----------- | :------: | :------: | :------: |
  4 +| spId | String | true | 服务提供商 |
  5 +| token| String | true | 参数加密串 |
  6 +| ----plat | String | true | 客户端平台 |
  7 +| ----activeId| String | true | 直播活动ID |
  8 +| ----hostId| String | true | 主播ID |
  9 +-----
  10 +#### 返回格式说明:
  11 +```
  12 +{
  13 + "errorCode": "0",
  14 + "errorMessage": "success",
  15 + "data": {
  16 + "viewCount": "1000", //观看人数
  17 + "loveCount": "600", //喜欢人数
  18 + "cnCoin": "170" //主播收货中国币
  19 + }
  20 +}
  21 +```
0 22 \ No newline at end of file
... ...