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.

16 lines
420 B

// 歌曲详情
module.exports = (query, request) => {
query.ids = query.ids.split(/\s*,\s*/);
const data = {
c: '[' + query.ids.map((id) => '{"id":' + id + '}').join(',') + ']',
ids: '[' + query.ids.join(',') + ']',
};
return request('POST', `https://music.163.com/weapi/v3/song/detail`, data, {
crypto: 'weapi',
cookie: query.cookie,
proxy: query.proxy,
realIP: query.realIP,
});
};