mirror of
https://gitlab.com/Binaryify/neteasecloudmusicapi.git
synced 2025-05-23 22:37:41 +08:00
11 lines
287 B
JavaScript
11 lines
287 B
JavaScript
// 24小时榜
|
|
module.exports = (query, request) => {
|
|
const data = {
|
|
limit: query.limit || 100
|
|
// 不支持 offset
|
|
}
|
|
return request(
|
|
'POST', `https://music.163.com/api/djprogram/toplist/hours`, data,
|
|
{crypto: 'weapi', cookie: query.cookie, proxy: query.proxy}
|
|
)
|
|
} |