mirror of
https://gitlab.com/Binaryify/neteasecloudmusicapi.git
synced 2025-05-23 22:37:41 +08:00
17 lines
368 B
JavaScript
17 lines
368 B
JavaScript
// 视频标签/分类下的视频
|
|
|
|
const createOption = require('../util/option.js')
|
|
module.exports = (query, request) => {
|
|
const data = {
|
|
groupId: query.id,
|
|
offset: query.offset || 0,
|
|
need_preview_url: 'true',
|
|
total: true,
|
|
}
|
|
return request(
|
|
`/api/videotimeline/videogroup/otherclient/get`,
|
|
data,
|
|
createOption(query, 'weapi'),
|
|
)
|
|
}
|