mirror of
https://gitlab.com/Binaryify/neteasecloudmusicapi.git
synced 2025-05-23 22:37:41 +08:00
12 lines
325 B
JavaScript
12 lines
325 B
JavaScript
// 相关视频
|
|
|
|
module.exports = (query, request) => {
|
|
const data = {
|
|
id: query.id,
|
|
type: (/^\d+$/.test(query.id)) ? 0 : 1
|
|
}
|
|
return request(
|
|
'POST', `http://music.163.com/weapi/cloudvideo/v1/allvideo/rcmd`, data,
|
|
{crypto: 'weapi', cookie: query.cookie, proxy: query.proxy}
|
|
)
|
|
} |