mirror of
https://gitlab.com/Binaryify/neteasecloudmusicapi.git
synced 2025-05-23 22:37:41 +08:00
17 lines
310 B
JavaScript
17 lines
310 B
JavaScript
module.exports = (query, request) => {
|
|
const data = {
|
|
ids: query.ids,
|
|
};
|
|
return request(
|
|
"POST",
|
|
"https://interface.music.163.com/api/content/voice/delete",
|
|
data,
|
|
{
|
|
crypto: "weapi",
|
|
cookie: query.cookie,
|
|
proxy: query.proxy,
|
|
realIP: query.realIP,
|
|
}
|
|
);
|
|
};
|