mirror of
https://github.com/GiriNeko/YesPlayMusic.git
synced 2025-12-16 21:28:06 +00:00
fix: 云盘无法上传的bug
This commit is contained in:
parent
dd65c67568
commit
aa418cd0d7
34 changed files with 445 additions and 19 deletions
23
netease_api/module/mlog_music_rcmd.js
Normal file
23
netease_api/module/mlog_music_rcmd.js
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
// 歌曲相关视频
|
||||
|
||||
module.exports = (query, request) => {
|
||||
const data = {
|
||||
id: query.mvid || 0,
|
||||
type: 2,
|
||||
rcmdType: 20,
|
||||
limit: query.limit || 10,
|
||||
extInfo: JSON.stringify({ songId: query.songid }),
|
||||
}
|
||||
return request(
|
||||
'POST',
|
||||
`https://interface.music.163.com/eapi/mlog/rcmd/feed/list`,
|
||||
data,
|
||||
{
|
||||
crypto: 'eapi',
|
||||
cookie: query.cookie,
|
||||
proxy: query.proxy,
|
||||
url: '/api/mlog/rcmd/feed/list',
|
||||
realIP: query.realIP,
|
||||
},
|
||||
)
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue