mirror of
https://gitlab.com/Binaryify/neteasecloudmusicapi.git
synced 2025-07-08 13:12:07 +08:00
update: 播客声音排序接口更新,新增删除播客
This commit is contained in:
@ -1,12 +1,14 @@
|
||||
module.exports = (query, request) => {
|
||||
const data = {
|
||||
position: query.position,
|
||||
programId: query.programId,
|
||||
radioId: query.radioId,
|
||||
limit: query.limit || '200', // 每页数量
|
||||
offset: query.offset || '0', // 偏移量
|
||||
radioId: query.radioId || null, // 电台id
|
||||
programId: query.programId || '0', // 节目id
|
||||
position: query.position || '1', // 排序编号
|
||||
}
|
||||
return request(
|
||||
'POST',
|
||||
`https://interface.music.163.com/weapi/voice/workbench/radio/program/trans`,
|
||||
`https://interface.music.163.com/api/voice/workbench/radio/program/trans`,
|
||||
data,
|
||||
{
|
||||
crypto: 'weapi',
|
||||
|
Reference in New Issue
Block a user