video_timeline_recommend.js 385 字节
Newer Older
YXL76's avatar
YXL76 已提交
1 2
// 推荐视频

B
binaryify 已提交
3 4 5 6 7 8
module.exports = (query, request) => {
  const data = {
    offset: query.offset || 0,
    filterLives: '[]',
    withProgramInfo: 'true',
    needUrl: '1',
A
a632079 已提交
9 10 11 12 13 14 15 16 17
    resolution: '480',
  }
  return request('POST', `https://music.163.com/api/videotimeline/get`, data, {
    crypto: 'weapi',
    cookie: query.cookie,
    proxy: query.proxy,
    realIP: query.realIP,
  })
}