mirror of
https://github.com/qier222/YesPlayMusic.git
synced 2024-11-24 04:42:39 +08:00
18 lines
354 B
JavaScript
18 lines
354 B
JavaScript
module.exports = (query, request) => {
|
|
const data = {
|
|
time: query.time || '-1',
|
|
limit: query.limit || '12',
|
|
};
|
|
return request(
|
|
'POST',
|
|
`https://music.163.com/api/mlog/playlist/mylike/bytime/get`,
|
|
data,
|
|
{
|
|
crypto: 'weapi',
|
|
cookie: query.cookie,
|
|
proxy: query.proxy,
|
|
realIP: query.realIP,
|
|
},
|
|
);
|
|
};
|