mirror of
https://gitlab.com/Binaryify/neteasecloudmusicapi.git
synced 2025-07-06 22:52:07 +08:00
21
module/user_bindingcellphone.js
Normal file
21
module/user_bindingcellphone.js
Normal file
@ -0,0 +1,21 @@
|
||||
module.exports = (query, request) => {
|
||||
const data = {
|
||||
phone: query.phone,
|
||||
countrycode: query.countrycode || '86',
|
||||
captcha: query.captcha,
|
||||
password: query.password
|
||||
? crypto.createHash('md5').update(query.password).digest('hex')
|
||||
: '',
|
||||
}
|
||||
return request(
|
||||
'POST',
|
||||
`https://music.163.com/api/user/bindingCellphone`,
|
||||
data,
|
||||
{
|
||||
crypto: 'weapi',
|
||||
cookie: query.cookie,
|
||||
proxy: query.proxy,
|
||||
realIP: query.realIP,
|
||||
},
|
||||
)
|
||||
}
|
Reference in New Issue
Block a user