mirror of
https://github.com/qier222/YesPlayMusic.git
synced 2024-11-23 04:03:04 +08:00
19 lines
321 B
JavaScript
19 lines
321 B
JavaScript
// 视频详情
|
|
|
|
module.exports = (query, request) => {
|
|
const data = {
|
|
id: query.id,
|
|
}
|
|
return request(
|
|
'POST',
|
|
`https://music.163.com/weapi/cloudvideo/v1/video/detail`,
|
|
data,
|
|
{
|
|
crypto: 'weapi',
|
|
cookie: query.cookie,
|
|
proxy: query.proxy,
|
|
realIP: query.realIP,
|
|
},
|
|
)
|
|
}
|