1、通过视频id修改视频的授权方式,支持批量修改
2、接口URL中的{userid}为点播账号userid,具体参考菜单【使用须知】->【获取密钥】
3、接口支持https协议
http://api.polyv.net/v2/config/{userid}/hlslevel
http://api.polyv.net/v2/config/1b448be323/hlslevel
vids=1b448be323b68b2999802799a98dba54_1,1b448be323ae991b1dfc5136597618d1_1&encrypt=1&sign=C0850325DE85D49CD0AFF2DD69B799ED45DB2D55&userid=1b448be323&ptime=1617762078215&hlslevel=app
强烈建议您使用点播Java SDK完成API的功能对接,点播Java SDK 对API调用逻辑、异常处理、数据签名、HTTP请求线程池进行了统一封装和优化。
private static final Logger log = LoggerFactory.getLogger(VodVideoEncryptionTest.class);
/**
* 修改视频的授权方式
*/
@Test
public void testUpdateAuthLevel() throws Exception, NoSuchAlgorithmException {
//公共参数,填写自己的实际参数
String secretKey = super.secretKey;
String userId = super.userId;
String ptime = String.valueOf(System.currentTimeMillis());
//业务参数
String url = String.format("http://api.polyv.net/v2/config/%s/hlslevel", userId);
String vids = "1b448be323b68b2999802799a98dba54_1,1b448be323ae991b1dfc5136597618d1_1";
String hlslevel = "app";
Map<String, String> requestMap = new HashMap<>();
requestMap.put("userid", userId);
requestMap.put("ptime", ptime);
requestMap.put("vids", vids);
requestMap.put("hlslevel", hlslevel);
requestMap.put("sign", VodSignUtil.getSign(requestMap, secretKey));
String response = HttpUtil.postFormBody(url, requestMap);
log.debug("测试修改视频的授权方式,{}", response);
//do somethings
}
{
"code": 200,
"status": "success",
"message": "success",
"data": 2
}
{
"code": 400,
"status": "error",
"message": "ptime is too old.",
"data": ""
}