mirror of
https://gitlab.com/Binaryify/neteasecloudmusicapi.git
synced 2025-05-23 22:37:41 +08:00
19 lines
361 B
JavaScript
19 lines
361 B
JavaScript
// 推荐视频
|
|
|
|
const createOption = require('../util/option.js')
|
|
module.exports = (query, request) => {
|
|
const data = {
|
|
offset: query.offset || 0,
|
|
filterLives: '[]',
|
|
withProgramInfo: 'true',
|
|
needUrl: '1',
|
|
resolution: '480',
|
|
}
|
|
return request(
|
|
'POST',
|
|
`/api/videotimeline/get`,
|
|
data,
|
|
createOption(query, 'weapi'),
|
|
)
|
|
}
|