新增歌手详情接口 #1035

This commit is contained in:
binaryify
2020-11-22 21:06:33 +08:00
parent 6e1a5b9aae
commit 4c5a1109fc
6 changed files with 40 additions and 1 deletions

15
module/artist_detail.js Normal file
View File

@ -0,0 +1,15 @@
module.exports = (query, request) => {
return request(
'POST',
`https://music.163.com/api/artist/head/info/get`,
{
id: query.id,
},
{
crypto: 'weapi',
cookie: query.cookie,
proxy: query.proxy,
realIP: query.realIP,
},
)
}