v3.15.0 新增获取视频标签列表,网易出品,全部mv接口, 最新 mv 和 mv 排行 接口加入地区参 数,更新文档 #505
This commit is contained in:
@@ -1,13 +1,15 @@
|
||||
// MV排行榜
|
||||
|
||||
module.exports = (query, request) => {
|
||||
const data = {
|
||||
limit: query.limit || 30,
|
||||
offset: query.offset || 0,
|
||||
total: true
|
||||
}
|
||||
return request(
|
||||
'POST', `https://music.163.com/weapi/mv/toplist`, data,
|
||||
{crypto: 'weapi', cookie: query.cookie, proxy: query.proxy}
|
||||
)
|
||||
}
|
||||
const data = {
|
||||
area: query.area || "",
|
||||
limit: query.limit || 30,
|
||||
offset: query.offset || 0,
|
||||
total: true
|
||||
};
|
||||
return request("POST", `https://music.163.com/weapi/mv/toplist`, data, {
|
||||
crypto: "weapi",
|
||||
cookie: query.cookie,
|
||||
proxy: query.proxy
|
||||
});
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user