mirror of
https://github.com/qier222/YesPlayMusic.git
synced 2025-03-06 10:21:33 +08:00
21 lines
432 B
JavaScript
21 lines
432 B
JavaScript
// 获取客户端歌曲下载链接
|
|
|
|
module.exports = (query, request) => {
|
|
const data = {
|
|
id: query.id,
|
|
br: parseInt(query.br || 999000),
|
|
}
|
|
return request(
|
|
'POST',
|
|
`https://interface.music.163.com/eapi/song/enhance/download/url`,
|
|
data,
|
|
{
|
|
crypto: 'eapi',
|
|
cookie: query.cookie,
|
|
proxy: query.proxy,
|
|
realIP: query.realIP,
|
|
url: '/api/song/enhance/download/url',
|
|
},
|
|
)
|
|
}
|