You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
497 B

// 编辑用户信息
module.exports = (query, request) => {
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/weapi/user/profile/update`,
data,
{
crypto: 'weapi',
cookie: query.cookie,
proxy: query.proxy,
realIP: query.realIP,
},
);
};