mirror of
https://github.com/qier222/YesPlayMusic.git
synced 2025-02-17 20:32:45 +08:00
16 lines
420 B
JavaScript
16 lines
420 B
JavaScript
// 歌曲详情
|
|
|
|
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,
|
|
});
|
|
};
|