YesPlayMusic/netease_api/module/msg_forwards.js
2020-11-23 13:38:35 +08:00

16 lines
331 B
JavaScript

// @我
module.exports = (query, request) => {
const data = {
offset: query.offset || 0,
limit: query.limit || 30,
total: 'true',
};
return request('POST', `https://music.163.com/api/forwards/get`, data, {
crypto: 'weapi',
cookie: query.cookie,
proxy: query.proxy,
realIP: query.realIP,
});
};