v3.11.0 增加接口

This commit is contained in:
binaryify
2019-05-09 16:26:41 +08:00
parent d42c8b42c5
commit 46400d930f
12 changed files with 183 additions and 14 deletions

14
module/msg_forwards.js Normal file
View File

@ -0,0 +1,14 @@
// @我
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
});
};