mirror of
https://gitlab.com/Binaryify/neteasecloudmusicapi.git
synced 2025-05-23 22:37:41 +08:00
13 lines
260 B
JavaScript
13 lines
260 B
JavaScript
// 云盘歌曲删除
|
|
|
|
module.exports = (query, request) => {
|
|
const data = {
|
|
songIds: [query.id]
|
|
};
|
|
return request('POST', `http://music.163.com/weapi/cloud/del`, data, {
|
|
crypto: 'weapi',
|
|
cookie: query.cookie,
|
|
proxy: query.proxy
|
|
});
|
|
};
|