mirror of
https://gitlab.com/Binaryify/neteasecloudmusicapi.git
synced 2025-05-23 22:37:41 +08:00
18 lines
309 B
JavaScript
18 lines
309 B
JavaScript
// 歌词
|
|
|
|
module.exports = (query, request) => {
|
|
query.cookie.os = 'pc';
|
|
const data = {
|
|
id: query.id,
|
|
lv: -1,
|
|
kv: -1,
|
|
tv: -1
|
|
}
|
|
return request(
|
|
'POST',
|
|
`https://music.163.com/api/song/lyric`,
|
|
data,
|
|
{ crypto: 'linuxapi', cookie: query.cookie, proxy: query.proxy }
|
|
)
|
|
}
|