feat: realIP option

This commit is contained in:
a632079
2020-08-05 02:07:37 +08:00
parent 31d7e3941e
commit 9bd30a0ffb
178 changed files with 1734 additions and 906 deletions

View File

@ -5,8 +5,8 @@ module.exports = (query, request) => {
userId: query.uid,
limit: query.limit || 30,
time: query.before || 0,
total: 'true'
};
total: 'true',
}
return request(
'POST',
`https://music.163.com/api/msg/private/history`,
@ -14,7 +14,8 @@ module.exports = (query, request) => {
{
crypto: 'weapi',
cookie: query.cookie,
proxy: query.proxy
proxy: query.proxy,
realIP: query.realIP,
}
);
};
)
}