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.
19 lines
580 B
19 lines
580 B
// 编辑歌单
|
|
|
|
module.exports = (query, request) => {
|
|
query.cookie.os = 'pc';
|
|
query.desc = query.desc || '';
|
|
query.tags = query.tags || '';
|
|
const data = {
|
|
'/api/playlist/desc/update': `{"id":${query.id},"desc":"${query.desc}"}`,
|
|
'/api/playlist/tags/update': `{"id":${query.id},"tags":"${query.tags}"}`,
|
|
'/api/playlist/update/name': `{"id":${query.id},"name":"${query.name}"}`,
|
|
};
|
|
return request('POST', `https://music.163.com/weapi/batch`, data, {
|
|
crypto: 'weapi',
|
|
cookie: query.cookie,
|
|
proxy: query.proxy,
|
|
realIP: query.realIP,
|
|
});
|
|
};
|