查看通道列表
更新时间:2021-06-16
查看通道列表
功能描述
用于查看GB28181设备的通道列表。
示例代码
Java
1DeviceChannelListResponse response = evsClient.listChannel(1020651);
请求参数
| 参数名称 | 类型 | 是否必需 | 描述 |
|---|---|---|---|
| deviceId | Long | 是 | GB28181设备ID |
响应内容
创建后的响应数据封装在DeviceChannelListResponse对象中,包含如下:
| 参数名称 | 类型 | 描述 |
|---|---|---|
| data | Array | 通道查询信息数组 |
| + channelId | Long | 通道ID |
| + channelName | String | 通道名称 |
| + channelGbId | String | 通道国标ID |
| + channelStatus | String | 通道状态,STREAMING(拉流中)/DISABLE(禁止拉流)/FREE(空闲) |
| + manufacturer | String | 设备厂商 |
| + appStream | String | 通道的app/stream名称 |
