mirror of
https://gitlab.com/Binaryify/neteasecloudmusicapi.git
synced 2025-07-06 23:52:07 +08:00
v3.11.0 增加接口
This commit is contained in:
21
module/msg_comments.js
Normal file
21
module/msg_comments.js
Normal file
@ -0,0 +1,21 @@
|
||||
// 评论
|
||||
|
||||
module.exports = (query, request) => {
|
||||
const data = {
|
||||
beforeTime: query.beforeTime || "-1",
|
||||
limit: query.limit || 30,
|
||||
total: "true",
|
||||
uid: query.uid
|
||||
};
|
||||
// 448109360
|
||||
return request(
|
||||
"POST",
|
||||
`https://music.163.com/api/v1/user/comments/${query.uid}`,
|
||||
data,
|
||||
{
|
||||
crypto: "weapi",
|
||||
cookie: query.cookie,
|
||||
proxy: query.proxy
|
||||
}
|
||||
);
|
||||
};
|
Reference in New Issue
Block a user