1、根据分类id和频道名称查询频道号列表
2、接口支持https协议
http://api.polyv.net/live/v3/user/channels
http://api.polyv.net/live/v3/user/channels?appId=frlr1zazn3&sign=D673B99508C8B99202D52A10FA77D091&keyword=%E8%AE%A8%E8%AE%BA&categoryId=340019&labelId=zpmz3640wkxpj267×tamp=1621841285162
强烈建议您使用直播Java SDK完成API的功能对接,直播Java SDK 对API调用逻辑、异常处理、数据签名、HTTP请求线程池进行了统一封装和优化。
private static final Logger log = LoggerFactory.getLogger(AccountTest.class);
/**
* 查询频道列表
* @throws IOException
* @throws NoSuchAlgorithmException
*/
@Test
public void testChannels() throws IOException, NoSuchAlgorithmException {
//公共参数,填写自己的实际
String appId = super.appId;
String appSecret = super.appSecret;
String userId = super.userId;
String timestamp = String.valueOf(System.currentTimeMillis());
//业务参数
String url="http://api.polyv.net/live/v3/user/channels";
String categoryId="340019";
String keyword="讨论";
String labelId = "zpmz3640wkxpj267";
//http 调用逻辑
Map<String, String> requestMap = new HashMap<>();
requestMap.put("appId", appId);
requestMap.put("timestamp", timestamp);
requestMap.put("categoryId", categoryId);
requestMap.put("labelId", labelId);
requestMap.put("keyword", keyword);
requestMap.put("sign", LiveSignUtil.getSign(requestMap, appSecret));
String response = HttpUtil.get(url, requestMap);
log.info("测试查询频道列表,返回值:{}", response);
//do somethings
}
{
"code":200,
"status":"success",
"message":"",
"data":{
"channels":[
2139283,
2139268
]
}
}
{
"code": 400,
"status": "error",
"message": "invalid signature.",
"data": ""
}