You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
584 B

// 歌曲链接
const crypto = require('crypto')
module.exports = (query, request) => {
if (!('MUSIC_U' in query.cookie))
query.cookie._ntes_nuid = crypto.randomBytes(16).toString('hex')
query.cookie.os = 'pc'
const data = {
ids: '[' + query.id + ']',
br: parseInt(query.br || 999000),
}
return request(
'POST',
`https://interface3.music.163.com/eapi/song/enhance/player/url`,
data,
{
crypto: 'eapi',
cookie: query.cookie,
proxy: query.proxy,
realIP: query.realIP,
url: '/api/song/enhance/player/url',
},
)
}