mirror of
https://github.com/NeteaseCloudMusicApiEnhanced/api-enhanced.git
synced 2025-10-22 22:53:09 +00:00
16 lines
302 B
JavaScript
16 lines
302 B
JavaScript
// 电台最热主播榜
|
|
|
|
const createOption = require('../util/option.js')
|
|
module.exports = (query, request) => {
|
|
const data = {
|
|
limit: query.limit || 100,
|
|
// 不支持 offset
|
|
}
|
|
return request(
|
|
'POST',
|
|
`/api/dj/toplist/popular`,
|
|
data,
|
|
createOption(query, 'weapi'),
|
|
)
|
|
}
|