获取频道hls协议拉流地址
接口描述
1、获取频道hls协议拉流地址
2、接口支持https协议接口URL
https://api.polyv.net/live/v3/channel/monitor/hls-pull-url 请求方式
GET接口约束
请求参数描述
参数名
必选
类型
说明
示例
响应参数描述
参数名
类型
说明
Java请求示例
响应示例
Last updated
1、获取频道hls协议拉流地址
2、接口支持https协议https://api.polyv.net/live/v3/channel/monitor/hls-pull-url GETLast updated
https://api.polyv.net/live/v3/channel/monitor/hls-pull-urlappId=frlr1zazn3&sign=2A861BD280299A4D7E6FF556C77C88D2&channelId=2149710×tamp=1621843071824private static final Logger log = LoggerFactory.getLogger(ChannelOperateTest.class);
/**
* 获取频道hls协议拉流地址
* @throws IOException
* @throws NoSuchAlgorithmException
*/
@Test
public void testGetHlsPullUrl() throws IOException, NoSuchAlgorithmException {
//公共参数,填写自己的实际参数
String appId = super.appId;
String appSecret = super.appSecret;
String timestamp = String.valueOf(System.currentTimeMillis());
//业务参数
String url = "http://api.polyv.net/live/v3/channel/monitor/hls-pull-url";
String channelId = "2094979";
Map<String, String> requestMap = new HashMap<>();
requestMap.put("appId", appId);
requestMap.put("timestamp", timestamp);
requestMap.put("channelId", channelId);
requestMap.put("sign", LiveSignUtil.getSign(requestMap, appSecret));
String response = HttpUtil.get(url, requestMap);
log.info("测试获取频道hls协议拉流地址接口,返回值:{}", response);
//do somethings
}{
"code":200,
"status":"success",
"message":"",
"data":"https://pull-t2.videocc.net/recordf/93837273272343dsfasdfasdfasdf.m3u8?txSecret=26d9998b71b58c8b6f14b27ccf6e285b&txTime=661d10c6"
}{
"code": 400,
"status": "error",
"message": "invalid signature.",
"data": ""
}{
"code": 400,
"status": "error",
"message": "forbidden",
"data": ""
}{
"code": 400,
"status": "error",
"message": "forbidden : not in ip list",
"data": ""
}