1、通过视频id添加视频到播放列表
2、接口支持https协议
http://api.polyv.net/v2/play-list/add-video
http://api.polyv.net/v2/play-list/add-video
vid=1b448be32366f55b1422ac94a4fb7932_1&sign=BCA4C97EFC471F976B1EAFF668EB82184B0E8A2E&userid=1b448be323&ptime=1620284595522&playListId=1620281719396
强烈建议您使用点播Java SDK完成API的功能对接,点播Java SDK 对API调用逻辑、异常处理、数据签名、HTTP请求线程池进行了统一封装和优化。
private static final Logger log=LoggerFactory.getLogger(VodPlaylistTest.class);
/**
* 添加视频至播放列表
* @throws Exception
* @throws NoSuchAlgorithmException
*/
@Test
public void testAddVideoToPlaylist()throws Exception,NoSuchAlgorithmException{
//公共参数,填写自己的实际参数
String secretKey=super.secretKey;
String userId=super.userId;
String ptime=String.valueOf(System.currentTimeMillis());
//业务参数
String url="http://api.polyv.net/v2/play-list/add-video";
String playListId="1620281719396";
String vid="1b448be32366f55b1422ac94a4fb7932_1";
Map<String, String> requestMap=new HashMap<>();
requestMap.put("userid",userId);
requestMap.put("ptime",ptime);
requestMap.put("playListId",playListId);
requestMap.put("vid",vid);
requestMap.put("sign",VodSignUtil.getSign(requestMap,secretKey));
String response=HttpUtil.postFormBody(url,requestMap);
log.debug("测试添加视频至播放列表,{}",response);
//do somethings
}
{
"code": 200,
"status": "success",
"message": "success"
}
{
"code": 400,
"status": "error",
"message": "the sign is not right",
"data": ""
}