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