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.

21 lines
389 B

// 更新歌单名
module.exports = (query, request) => {
const data = {
id: query.id,
name: query.name,
}
return request(
'POST',
`https://interface3.music.163.com/eapi/playlist/update/name`,
data,
{
crypto: 'eapi',
cookie: query.cookie,
proxy: query.proxy,
url: '/api/playlist/update/name',
realIP: query.realIP,
},
)
}