增加用户相关接口

This commit is contained in:
binaryify
2020-09-30 17:33:48 +08:00
parent 123e137581
commit 3b94c7aa63
3 changed files with 51 additions and 0 deletions

View File

@ -0,0 +1,19 @@
module.exports = (query, request) => {
const data = {
phone: query.phone,
captcha: query.captcha,
oldcaptcha: query.oldcaptcha,
countrycode: query.countrycode || '86',
}
return request(
'POST',
`https://music.163.com/api/user/replaceCellphone`,
data,
{
crypto: 'weapi',
cookie: query.cookie,
proxy: query.proxy,
realIP: query.realIP,
},
)
}