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.
29 lines
726 B
29 lines
726 B
4 years ago
|
// 歌曲链接
|
||
|
|
||
|
const crypto = require('crypto')
|
||
|
const { cookieToJson } = require('../util/index')
|
||
|
module.exports = (query, request) => {
|
||
|
if (typeof query.cookie === 'string') {
|
||
|
query.cookie = cookieToJson(query.cookie)
|
||
|
}
|
||
|
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',
|
||
|
},
|
||
|
)
|
||
|
}
|