feat: integrate api in electron app

This commit is contained in:
kunkka 2020-10-27 23:08:38 +08:00
parent bd29570e31
commit 74bf714c28
240 changed files with 21003 additions and 112 deletions

30
napi/module/top_list.js Normal file
View file

@ -0,0 +1,30 @@
// 排行榜
module.exports = (query, request) => {
query.cookie.os = 'pc';
if (query.idx) {
return Promise.resolve({
status: 500,
body: {
code: 500,
msg: '不支持此方式调用,只支持id调用',
},
});
}
const data = {
id: query.id,
n: '500',
s: '0',
};
return request(
'POST',
`https://interface3.music.163.com/api/playlist/v4/detail`,
data,
{
crypto: 'weapi',
cookie: query.cookie,
proxy: query.proxy,
realIP: query.realIP,
},
);
};