mirror of
https://github.com/NeteaseCloudMusicApiEnhanced/api-enhanced.git
synced 2026-08-12 17:10:37 +00:00
- 新增 module/artist_new_song_playall.js 文件实现获取所有关注歌手最近50首新歌的功能 - 在文档中添加关注歌手最近新歌播放全部接口说明和调用示例 - 在类型定义文件中添加 artist_new_song_playall 函数声明
11 lines
251 B
JavaScript
11 lines
251 B
JavaScript
// 获取所有关注歌手最近的 50 首新歌
|
|
|
|
const createOption = require('../util/option.js')
|
|
module.exports = (query, request) => {
|
|
return request(
|
|
`/api/sub/artist/new/works/song/playall`,
|
|
{},
|
|
createOption(query, 'eapi'),
|
|
)
|
|
}
|