You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
490 B
24 lines
490 B
// 歌曲相关视频
|
|
|
|
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,
|
|
},
|
|
)
|
|
}
|