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.
25 lines
554 B
25 lines
554 B
// 数字专辑&数字单曲-榜单
|
|
module.exports = (query, request) => {
|
|
let data = {
|
|
albumType: query.albumType || 0, //0为数字专辑,1为数字单曲
|
|
};
|
|
const type = query.type || 'daily'; // daily,week,year,total
|
|
if (type === 'year') {
|
|
data = {
|
|
...data,
|
|
year: query.year,
|
|
};
|
|
}
|
|
return request(
|
|
'POST',
|
|
`https://music.163.com/api/feealbum/songsaleboard/${type}/type`,
|
|
data,
|
|
{
|
|
crypto: 'weapi',
|
|
cookie: query.cookie,
|
|
proxy: query.proxy,
|
|
realIP: query.realIP,
|
|
},
|
|
);
|
|
};
|