mirror of
https://gitlab.com/Binaryify/neteasecloudmusicapi.git
synced 2025-05-23 22:37:41 +08:00
11 lines
276 B
JavaScript
11 lines
276 B
JavaScript
// 视频详情
|
|
|
|
module.exports = (query, request) => {
|
|
const data = {
|
|
id: query.id
|
|
}
|
|
return request(
|
|
'POST', `http://music.163.com/weapi/cloudvideo/v1/video/detail`, data,
|
|
{crypto: 'weapi', cookie: query.cookie, proxy: query.proxy}
|
|
)
|
|
} |