YesPlayMusic/netease_api/module/share_resource.js
2021-03-06 22:07:16 +08:00

21 lines
430 B
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

// 分享歌曲到动态
module.exports = (query, request) => {
const data = {
type: query.type || 'song', // song,playlist,mv,djprogramdjradio
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,
},
)
}