You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
620 B
27 lines
620 B
const { resourceTypeMap } = require('../util/config.json')
|
|
// 点赞与取消点赞评论
|
|
|
|
module.exports = (query, request) => {
|
|
query.cookie.os = 'pc'
|
|
query.t = query.t == 1 ? 'like' : 'unlike'
|
|
query.type = resourceTypeMap[query.type]
|
|
const data = {
|
|
threadId: query.type + query.id,
|
|
commentId: query.cid,
|
|
}
|
|
if (query.type == 'A_EV_2_') {
|
|
data.threadId = query.threadId
|
|
}
|
|
return request(
|
|
'POST',
|
|
`https://music.163.com/weapi/v1/comment/${query.t}`,
|
|
data,
|
|
{
|
|
crypto: 'weapi',
|
|
cookie: query.cookie,
|
|
proxy: query.proxy,
|
|
realIP: query.realIP,
|
|
},
|
|
)
|
|
}
|