feat: 新增私信和通知接口

This commit is contained in:
binaryify
2023-04-07 09:39:34 +08:00
parent 5e3c84e6c3
commit 7eca25d390
6 changed files with 42 additions and 7 deletions

10
module/pl_count.js Normal file
View File

@ -0,0 +1,10 @@
// 数字专辑-新碟上架
module.exports = (query, request) => {
const data = {}
return request('POST', `https://music.163.com/weapi/pl/count`, data, {
crypto: 'weapi',
cookie: query.cookie,
proxy: query.proxy,
realIP: query.realIP,
})
}