mirror of
https://gitlab.com/Binaryify/neteasecloudmusicapi.git
synced 2025-05-23 22:37:41 +08:00
26 lines
568 B
JavaScript
26 lines
568 B
JavaScript
// 专辑评论
|
|
|
|
const createOption = require('../util/option.js')
|
|
module.exports = (query, request) => {
|
|
// query.cookie.os = 'pc'
|
|
// query.cookie.appver = '2.9.7'
|
|
const data = {
|
|
rid: query.id,
|
|
limit: query.limit || 20,
|
|
offset: query.offset || 0,
|
|
beforeTime: query.before || 0,
|
|
}
|
|
return request(
|
|
'POST',
|
|
`https://music.163.com/api/v1/resource/comments/R_AL_3_${query.id}`,
|
|
data,
|
|
{
|
|
crypto: 'weapi',
|
|
cookie: query.cookie,
|
|
ua: query.ua || '',
|
|
proxy: query.proxy,
|
|
realIP: query.realIP,
|
|
},
|
|
)
|
|
}
|