mirror of
https://gitlab.com/Binaryify/neteasecloudmusicapi.git
synced 2025-05-23 22:37:41 +08:00
16 lines
346 B
JavaScript
16 lines
346 B
JavaScript
// 最新MV
|
|
|
|
module.exports = (query, request) => {
|
|
const data = {
|
|
// 'offset': query.offset || 0,
|
|
area: query.area || '',
|
|
limit: query.limit || 30,
|
|
total: true
|
|
};
|
|
return request('POST', `https://interface.music.163.com/weapi/mv/first`, data, {
|
|
crypto: 'weapi',
|
|
cookie: query.cookie,
|
|
proxy: query.proxy
|
|
});
|
|
};
|