You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
554 B

// 排行榜
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,
realIP: query.realIP,
},
);
};