1、查询根据自定义场次UUID查询直播场次
3、接口支持https协议
http://api.polyv.net/live/v3/channel/session/list-session-by-external
http://api.polyv.net/live/v3/channel/session/list-session-by-external?appId=fso8gzbxlr×tamp=1636421147000&channelId=2659445&externalSessionId=binytest2021110802&sign=56933052D433EB34E9BA0F9DA5197728
private static final Logger log = LoggerFactory.getLogger(ChannelOperateTest.class);
/**
* 查询角色信息
* @throws IOException
* @throws NoSuchAlgorithmException
*/
@Test
public void testQuerySessionListByExternalSessionId() throws IOException, NoSuchAlgorithmException {
//公共参数,填写自己的实际参数
String appId = super.appId;
String appSecret = super.appSecret;
String userId = super.userId;
String timestamp = String.valueOf(System.currentTimeMillis());
//业务参数
String url = "https://api.polyv.net/live/v3/channel/session/list-session-by-external";
String channelId="2149710";
String externalSessionId= "test";
Map<String, String> requestMap = new HashMap<>();
requestMap.put("appId", appId);
requestMap.put("timestamp", timestamp);
requestMap.put("channelId", channelId);
requestMap.put("externalSessionId", externalSessionId);
requestMap.put("sign", LiveSignUtil.getSign(requestMap, appSecret));
String response = HttpUtil.get(url, requestMap);
log.info("根据自定义场次UUID查询直播场次,返回值:{}", response);
//do somethings
}
{
"code": 200,
"status": "success",
"message": "",
"data": {
"list": [
"g41jb9hxbk",
"g41ked2ck6",
"g41k9buc96",
"g41jwdl09l"
]
}
}
{
"code": 400,
"status": "error",
"message": "invalid signature.",
"data": ""
}