mirror of
https://gitlab.com/Binaryify/neteasecloudmusicapi.git
synced 2025-05-23 22:37:41 +08:00
support inital index for artist list
This commit is contained in:
parent
0b5e4ce77e
commit
adf9ae21d1
@ -22,11 +22,14 @@ module.exports = (req, res, createWebAPIRequest, request) => {
|
|||||||
// 其他女歌手 4002
|
// 其他女歌手 4002
|
||||||
// 其他组合/乐队 4003
|
// 其他组合/乐队 4003
|
||||||
|
|
||||||
|
// initial 取值A为65,B为66...以此类推
|
||||||
|
|
||||||
const data = {
|
const data = {
|
||||||
categoryCode: req.query.cat || "1001",
|
categoryCode: req.query.cat || "1001",
|
||||||
offset: req.query.offset || 0,
|
offset: req.query.offset || 0,
|
||||||
total: req.query.total ? "true" : "false",
|
total: req.query.total ? "true" : "false",
|
||||||
limit: req.query.limit || 30
|
limit: req.query.limit || 30,
|
||||||
|
initial: req.query.initial || ""
|
||||||
};
|
};
|
||||||
createWebAPIRequest(
|
createWebAPIRequest(
|
||||||
"music.163.com",
|
"music.163.com",
|
||||||
|
Loading…
x
Reference in New Issue
Block a user