YesPlayMusic/netease_api/module/playlist_create.js
2021-03-06 22:07:16 +08:00

17 lines
425 B
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

// 创建歌单
module.exports = (query, request) => {
query.cookie.os = 'pc'
const data = {
name: query.name,
privacy: query.privacy, //0 为普通歌单10 为隐私歌单
type: query.type || 'NORMAL', // NORMAL|VIDEO
}
return request('POST', `https://music.163.com/api/playlist/create`, data, {
crypto: 'weapi',
cookie: query.cookie,
proxy: query.proxy,
realIP: query.realIP,
})
}