artist_fans.js 372 字节
Newer Older
1 2 3
// 歌手粉丝

module.exports = (query, request) => {
C
chen10 已提交
4 5 6 7 8 9 10 11 12 13
  const data = {
    id: query.id,
    limit: query.limit || 20,
    offset: query.offset || 20,
  }
  return request(
    'POST',
    `https://music.163.com/weapi/artist/fans/get`,
    data,
    {
14 15 16 17
      crypto: 'weapi',
      cookie: query.cookie,
      proxy: query.proxy,
      realIP: query.realIP,
C
chen10 已提交
18 19 20
    },
  )
}