功能说明:此接口返回歌单详情。
POST
HFSheetDetailRequest sheetDetailRequest = new HFSheetDetailRequest();
sheetDetailRequest.setMethod(HFRequest.METHOD_POST);
sheetDetailRequest.setSheetId(3818);
sheetDetailRequest.setClientId("hf2y7jk19a56qetq05");
try {
HFSheetDetailResponse response = client.execute(request);
System.out.println(JSON.toJSON(response));
} catch (ApiException e) {
e.printStackTrace();
}
curl -G https://gateway-open.haifanwu.com -H 'Authorization:HF3-HMAC-SHA1 Signature=572846305DD1001C6605D3721766AB32' -H 'X-HF-ClientId:hf2y7jk19a56qetq05' -H 'X-HF-AppId:170ae316b9b14c1b9c185988771bde16' -H 'X-HF-Action:SheetDetail' -H 'X-HF-Timestamp:1595829997599' -H 'X-HF-Version:V4.2.0' -H 'X-HF-Nonce:ylaZYiVwcGlTeMpmbbQppNNAHiyCFhus'
-X GET -d 'Language=1&RecoNum=1&Page=1&PageSize=10'
{
"code": 10200,
"msg": "操作成功",
"data": {
"sheetId": 727,
"sheetName": "动漫",
"musicTotal": 10,
"type": 0,
"describe": "",
"free": 1,
"price": 0,
"tag": [{
"tagId": 1455,
"tagName": "动漫游戏",
"child": []
}],
"cover": [{
"url": "https://hifive-web.obs.cn-north-4.myhuaweicloud.com:443/news/png/2020-6-23/3cd544f341d3a8b464b7220c8e77f0dc.png",
"size": null
}]
"taskId": "b43bf6b50b324f498395d78f089d7ef5"
}
}