mirror of
https://gitlab.com/Binaryify/neteasecloudmusicapi.git
synced 2025-05-23 22:37:41 +08:00
20 lines
437 B
JavaScript
20 lines
437 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',
|
|
`/api/v1/resource/comments/R_AL_3_${query.id}`,
|
|
data,
|
|
createOption(query, 'weapi'),
|
|
)
|
|
}
|