最近更新时间:2024-03-25 19:36:00
当主播开播、下播时,云直播会将主播相关信息实时推送给您,如您需要此功能,请联系技术支持开通
当主播开播后,云直播会把主播信息发送到您用来接收回调的地址,回调内容如下:
参数 | 类型 | 描述 | 示例 |
---|---|---|---|
Version | String | 版本号 | 1.0 |
UniqueName | String | 域名空间 | uniquename |
App | String | 频道 | live |
Pubdomain | String | 推流域名 | xxx.xxx.com |
Stream | String | 流名 | streamname |
PubStartUnixTime | Int | 推流开始时间,unix毫秒时间戳 | 1456800010000 |
NotifyType | String | 回调类型,PubStart:推流开始 | PubStart |
PubParam | String | 推流携带的参数 | {“k”:“1”,“t”:“2”} |
ClientIp | String | 推流端IP | 110.22.43.45 |
ClientPort | String | 推流端端口 | 5475 |
Node | String | cdn接受流的节点 | 112.84.53.44 |
Sequence | String | 用来唯一标识一对开关播回调 | xxxxxx |
{
"Version": "1.0",
"App": "live",
"Pubdomain": "xxx.xxx.com",
"Stream": "stream_123",
"NotifyType": "PubStart",
"ClientIp": "110.120.130.140",
"ClientPort": "17102",
"Node": "120.120.120.120",
"PubParam": "{\"k\":\"1\",\"t\":\"2\"}",
"UniqueName": "yourUniqueName",
"Sequence": "xxxx",
"PubStartUnixTime": 1670575130460
}
当主播下播后,云直播会把主播信息发送到您用来接收回调的地址,回调内容如下:
参数 | 类型 | 描述 | 示例 |
---|---|---|---|
Version | String | 版本号 | 1.0 |
UniqueName | String | 域名空间 | uniquename |
App | String | 频道 | live |
Pubdomain | String | 推流域名 | xxx.xxx.com |
Stream | String | 流名 | 123 |
PubEndUnixTime | Int | 推流结束时间,unix毫秒时间戳 | 1456800010000 |
NotifyType | String | 回调类型,PubEnd:推流结束 | PubEnd |
PubParam | String | 推流携带的参数 | {“k”:“1”,“t”:“2”} |
ClientIp | String | 推流端IP | 110.22.43.45 |
ClientPort | String | 推流端端口 | 5475 |
Node | String | cdn接受流的节点 | 112.84.53.44 |
PubEndCode | Int | 断流错误码 | 1 |
PubEndMessage | String | 断流原因,断流时发送 | rtmp_close_stream |
Sequence | String | 用来唯一标识一对开关播回调 | xxxxxxx |
PubEndCode值 | PubEndMessage值 | 错误描述 |
---|---|---|
1 | rtmp_close_stream | 主播主动下线 |
2 | rtmp_no_data | 无数据超时断开 |
3 | rtmp_auth_failed | 鉴权失败 |
0 | other error | 其他原因 |
{
"Version": "1.0",
"App": "live",
"Pubdomain": "xxx.xxx.com",
"Stream": "stream_123",
"NotifyType": "PubEnd",
"ClientIp": "110.120.130.140",
"ClientPort": "17102",
"Node": "120.120.120.120",
"PubParam": "{\"k\":\"1\",\"t\":\"2\"}",
"UniqueName": "yourUniqueName",
"Sequence": "xxxx",
"PubEndCode": 1,
"PubEndMessage": "rtmp_close_stream",
"PubEndUnixTime": 1670575168965
}
纯净模式