mirror of
https://gitlab.com/Binaryify/neteasecloudmusicapi.git
synced 2025-05-23 22:37:41 +08:00
23 lines
484 B
JavaScript
23 lines
484 B
JavaScript
// 排行榜
|
|
module.exports = (query, request) => {
|
|
query.cookie.os = 'pc'
|
|
if(query.idx){
|
|
return Promise.resolve( {
|
|
status: 500,
|
|
body: {
|
|
code: 500,
|
|
msg: '不支持此方式调用,只支持id调用'
|
|
}
|
|
})
|
|
}
|
|
|
|
const data = {
|
|
id: query.id,
|
|
n: '500',
|
|
s: '0',
|
|
}
|
|
return request(
|
|
'POST', `https://interface3.music.163.com/api/playlist/v4/detail`, data,
|
|
{crypto: 'weapi', cookie: query.cookie, proxy: query.proxy}
|
|
)
|
|
} |