mirror of
https://github.com/qier222/YesPlayMusic.git
synced 2024-11-26 02:09:51 +08:00
21 lines
430 B
JavaScript
21 lines
430 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,
|
||
},
|
||
)
|
||
}
|