mirror of
https://github.com/qier222/YesPlayMusic.git
synced 2024-11-26 18:31:08 +08:00
20 lines
376 B
JavaScript
20 lines
376 B
JavaScript
// 付费电台
|
|
|
|
module.exports = (query, request) => {
|
|
const data = {
|
|
limit: query.limit || 30,
|
|
offset: query.offset || 0,
|
|
};
|
|
return request(
|
|
'POST',
|
|
`https://music.163.com/weapi/djradio/home/paygift/list?_nmclfl=1`,
|
|
data,
|
|
{
|
|
crypto: 'weapi',
|
|
cookie: query.cookie,
|
|
proxy: query.proxy,
|
|
realIP: query.realIP,
|
|
},
|
|
);
|
|
};
|