fix: 云盘无法上传的bug

This commit is contained in:
qier222 2021-09-25 23:53:50 +08:00
parent dd65c67568
commit aa418cd0d7
No known key found for this signature in database
GPG key ID: 9C85007ED905F14D
34 changed files with 445 additions and 19 deletions

View file

@ -0,0 +1,22 @@
module.exports = (query, request) => {
query.cookie.os = 'ios'
query.cookie.appver = '8.1.20'
const data = {
compose_reminder: 'true',
compose_hot_comment: 'true',
limit: query.limit || 10,
user_id: query.uid,
time: query.time || 0,
}
return request(
'POST',
`https://music.163.com/api/comment/user/comment/history`,
data,
{
crypto: 'weapi',
cookie: query.cookie,
proxy: query.proxy,
realIP: query.realIP,
},
)
}