private static final Logger log = LoggerFactory.getLogger(PlayerTest.class);
/**
* 修改频道播放器中显示的logo
* @throws IOException
* @throws NoSuchAlgorithmException
*/
@Test
public void testUpdateLogo() throws IOException, NoSuchAlgorithmException {
//公共参数,填写自己的实际参数
String appId = super.appId;
String appSecret = super.appSecret;
String timestamp = String.valueOf(System.currentTimeMillis());
//业务参数
String url = "http://api.polyv.net/live/v2/channels/%s/update";
String channelId = "2191532";
String logoImage = "http://liveimages.videocc.net/uploadimage/20210318/chat_img_1b448be323_16160330722736.jpeg";
String logoOpacity = "0.1";
String logoPosition = "bl";
String logoHref = "https://baidu.com";
url = String.format(url, channelId);
Map<String, String> requestMap = new HashMap<>();
requestMap.put("appId", appId);
requestMap.put("timestamp", timestamp);
requestMap.put("logoImage", logoImage);
requestMap.put("logoOpacity", logoOpacity);
requestMap.put("logoPosition", logoPosition);
requestMap.put("logoHref", logoHref);
requestMap.put("sign", LiveSignUtil.getSign(requestMap, appSecret));
String response = HttpUtil.postFormBody(url, requestMap);
log.info("测试修改频道播放器中显示的logo,返回值:{}", response);
//do somethings
}