mirror of
https://github.com/qier222/YesPlayMusic.git
synced 2025-03-12 23:45:14 +08:00
21 lines
433 B
JavaScript
21 lines
433 B
JavaScript
![]() |
// 分享歌曲到动态
|
||
|
|
||
|
module.exports = (query, request) => {
|
||
|
const data = {
|
||
|
type: query.type || 'song', // song,playlist,mv,djprogram,djradio
|
||
|
msg: query.msg || '',
|
||
|
id: query.id || '',
|
||
|
};
|
||
|
return request(
|
||
|
'POST',
|
||
|
`https://music.163.com/weapi/share/friends/resource`,
|
||
|
data,
|
||
|
{
|
||
|
crypto: 'weapi',
|
||
|
cookie: query.cookie,
|
||
|
proxy: query.proxy,
|
||
|
realIP: query.realIP,
|
||
|
},
|
||
|
);
|
||
|
};
|