mirror of
https://github.com/qier222/YesPlayMusic.git
synced 2024-11-23 19:53:15 +08:00
20 lines
351 B
JavaScript
20 lines
351 B
JavaScript
|
// 编辑歌单顺序
|
||
|
|
||
|
module.exports = (query, request) => {
|
||
|
query.cookie.os = 'pc';
|
||
|
const data = {
|
||
|
ids: query.ids,
|
||
|
};
|
||
|
return request(
|
||
|
'POST',
|
||
|
`https://music.163.com/api/playlist/order/update`,
|
||
|
data,
|
||
|
{
|
||
|
crypto: 'weapi',
|
||
|
cookie: query.cookie,
|
||
|
proxy: query.proxy,
|
||
|
realIP: query.realIP,
|
||
|
},
|
||
|
);
|
||
|
};
|