mirror of
https://gitlab.com/Binaryify/neteasecloudmusicapi.git
synced 2025-05-23 22:37:41 +08:00
13 lines
317 B
JavaScript
13 lines
317 B
JavaScript
// 类别热门电台
|
|
|
|
module.exports = (query, request) => {
|
|
const data = {
|
|
cateId: query.cateId,
|
|
limit: query.limit || 30,
|
|
offset: query.offset || 0
|
|
}
|
|
return request(
|
|
'POST', `https://music.163.com/api/djradio/hot`, data,
|
|
{ crypto: 'weapi', cookie: query.cookie, proxy: query.proxy }
|
|
)
|
|
} |