mirror of
https://gitlab.com/Binaryify/neteasecloudmusicapi.git
synced 2025-05-23 22:37:41 +08:00
12 lines
322 B
JavaScript
12 lines
322 B
JavaScript
// 视频链接
|
|
|
|
module.exports = (query, request) => {
|
|
const data = {
|
|
ids: '["' + query.id + '"]',
|
|
resolution: query.res || 1080
|
|
}
|
|
return request(
|
|
'POST', `http://music.163.com/weapi/cloudvideo/playurl`, data,
|
|
{crypto: 'weapi', cookie: query.cookie, proxy: query.proxy}
|
|
)
|
|
} |