mirror of
https://gitlab.com/Binaryify/neteasecloudmusicapi.git
synced 2025-05-23 22:37:41 +08:00
21 lines
410 B
JavaScript
21 lines
410 B
JavaScript
// 一起听 结束房间
|
|
|
|
module.exports = (query, request) => {
|
|
const data = {
|
|
roomId: query.roomId,
|
|
}
|
|
return request(
|
|
'POST',
|
|
`http://interface.music.163.com/eapi/listen/together/end/v2`,
|
|
data,
|
|
{
|
|
crypto: 'eapi',
|
|
cookie: query.cookie,
|
|
ua: query.ua || '',
|
|
proxy: query.proxy,
|
|
realIP: query.realIP,
|
|
url: '/api/listen/together/end/v2',
|
|
},
|
|
)
|
|
}
|