功能说明:此接口根据获取歌单标签列表。
GET
HFSheetTagRequest request = new HFSheetTagRequest();
sheetTagRequest.setMethod(HFRequest.METHOD_POST);
sheetDetailRequest.setClientId("hf2y7jk19a56qetq05");
try {
HFSheetTagResponse 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:SheetTag' -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": {
"tag": [{
"tagId": 1455,
"tagName": "动漫游戏",
"child": []
"coverUrl": ""
}],
"taskId": "b43bf6b50b324f498395d78f089d7ef5"
}
}