mirror of
https://github.com/qier222/YesPlayMusic.git
synced 2024-11-26 18:31:08 +08:00
20 lines
387 B
JavaScript
20 lines
387 B
JavaScript
|
// 视频点赞转发评论数数据
|
||
|
|
||
|
module.exports = (query, request) => {
|
||
|
const data = {
|
||
|
threadid: `R_VI_62_${query.vid}`,
|
||
|
composeliked: true,
|
||
|
};
|
||
|
return request(
|
||
|
'POST',
|
||
|
`https://music.163.com/api/comment/commentthread/info`,
|
||
|
data,
|
||
|
{
|
||
|
crypto: 'weapi',
|
||
|
cookie: query.cookie,
|
||
|
proxy: query.proxy,
|
||
|
realIP: query.realIP,
|
||
|
},
|
||
|
);
|
||
|
};
|