mirror of
https://gitlab.com/Binaryify/neteasecloudmusicapi.git
synced 2025-05-23 22:37:41 +08:00
27 lines
555 B
JavaScript
27 lines
555 B
JavaScript
// 编辑用户信息
|
|
|
|
module.exports = (query, request) => {
|
|
query.cookie.os = 'ios'
|
|
query.cookie.appver = '8.10.90'
|
|
const data = {
|
|
// avatarImgId: '0',
|
|
birthday: query.birthday,
|
|
city: query.city,
|
|
gender: query.gender,
|
|
nickname: query.nickname,
|
|
province: query.province,
|
|
signature: query.signature,
|
|
}
|
|
return request(
|
|
'POST',
|
|
`https://music.163.com/api/user/profile/update`,
|
|
data,
|
|
{
|
|
crypto: 'weapi',
|
|
cookie: query.cookie,
|
|
proxy: query.proxy,
|
|
realIP: query.realIP,
|
|
},
|
|
)
|
|
}
|