mirror of
https://github.com/qier222/YesPlayMusic.git
synced 2024-11-24 04:42:39 +08:00
18 lines
339 B
JavaScript
18 lines
339 B
JavaScript
module.exports = (query, request) => {
|
|
const data = {
|
|
limit: query.limit || 10,
|
|
offset: query.offset || 0,
|
|
};
|
|
return request(
|
|
'POST',
|
|
`https://music.163.com/store/api/point/receipt`,
|
|
data,
|
|
{
|
|
crypto: 'api',
|
|
cookie: query.cookie,
|
|
proxy: query.proxy,
|
|
realIP: query.realIP,
|
|
},
|
|
);
|
|
};
|