private static final Logger log = LoggerFactory.getLogger(VodVideoManageManagementTest.class);
/**
*查询视频预览时长
*/
@Test
public void testGetPreviewDuration() throws Exception, NoSuchAlgorithmException {
//公共参数,填写自己的实际参数
String secretKey = super.secretKey;
String userId = super.userId;
String ptime = String.valueOf(System.currentTimeMillis());
//业务参数
String url = "http://api.polyv.net/v2/video/"+userId+"/get-preview-duration";
String vid="1b448be3239c2ef0cb3ab9fd105f7fb2_1";
//调用参数
Map<String, String> requestMap = new HashMap<>();
requestMap.put("userid", userId);
requestMap.put("ptime", ptime);
requestMap.put("vid", vid);
requestMap.put("sign", VodSignUtil.getSign(requestMap, secretKey));
String response = HttpUtil.get(url, requestMap);
log.debug("测试查询视频预览时长,{}", response);
//do somethings
}