mirror of
https://gitlab.com/Binaryify/neteasecloudmusicapi.git
synced 2025-05-23 22:37:41 +08:00
18 lines
381 B
JavaScript
18 lines
381 B
JavaScript
// 粉丝数量
|
|
const crypto = require('crypto')
|
|
module.exports = (query, request) => {
|
|
const data = {}
|
|
return request(
|
|
'POST',
|
|
`https://interface.music.163.com/weapi/fanscenter/overview/get`,
|
|
data,
|
|
{
|
|
crypto: 'eapi',
|
|
cookie: query.cookie,
|
|
proxy: query.proxy,
|
|
realIP: query.realIP,
|
|
url: '/api/fanscenter/overview/get',
|
|
},
|
|
)
|
|
}
|