2.3 直播频道开通
2.3.1 描述
为直播频道开通加速服务。
2.3.2 请求地址
地址:https://api.bokecs.com/channel/live/open
2.3.3 请求方式
POST
2.3.4 请求参数
1) 请求入参
{
"source_self":,
"origin_protocol":"",
"pull_source":"",
"push_domain":"",
"pull_domains": [
{
"live_format":"",
"domain_name":""
},
...........
]
}
元素名称
是否必须
元素描述
source_self
是
是否自主源。取值true或者false
origin_protocol
否
回源协议。取值rtmp或者http。source_self为true时必须存在
pull_source
否
源站。source_self为true时必须存在
push_domain
否
推流域名。source_self为false时必须存在
pull_domains
是
播放域名
live_format
是
播放域名格式。取值rtmp或者flv或者hls
domain_name
是
播放域名
2) 请求出参
{
"code": "",
"message": "",
"channel_ids": []
}
code:接口响应代码。200表示成功。
message: 接口响应信息。
channel_ids: 频道唯一标识。
2.3.5 举例说明
1) 自主源
{
"source_self":true,
"origin_protocol":"rtmp",
"pull_source":"www.baidu.com",
"pull_domains": [
{
"live_format":"rtmp",
"domain_name":"xxxxxxxxxx"
},
{
"live_format":"hls",
"domain_name":"xxxxxxxxxx"
}]
}