mirror of
https://gitlab.com/Binaryify/neteasecloudmusicapi.git
synced 2025-05-23 22:37:41 +08:00
20 lines
467 B
JavaScript
20 lines
467 B
JavaScript
// 私人FM - 模式选择
|
|
|
|
// aidj, DEFAULT, FAMILIAR, EXPLORE, SCENE_RCMD ( EXERCISE, FOCUS, NIGHT_EMO )
|
|
// 来不及解释这几个了
|
|
|
|
const createOption = require('../util/option.js')
|
|
module.exports = (query, request) => {
|
|
const data = {
|
|
mode: query.mode,
|
|
subMode: query.submode,
|
|
limit: query.limit || 3,
|
|
}
|
|
return request(
|
|
'POST',
|
|
`https://interface3.music.163.com/eapi/v1/radio/get`,
|
|
data,
|
|
createOption(query, 'weapi'),
|
|
)
|
|
}
|