让音乐无界
如果你苦于挑选一个全方位、多平台、简便易用的音乐爬虫库,music-api-next
是不二选择。
特性:
async/await
写法webpack
打包部署pm2
服务器部署const musicAPI = require("music-api-next");
// 搜索接口: 返回指定关键词的搜索信息
musicAPI
.searchSong({
key: "周杰伦",
page: 1,
limit: 10,
vendor: "qq"
})
.then(songs => console.log(songs))
.catch(error => console.log(error.message));
// 歌曲信息接口: 返回指定歌曲的信息
musicAPI
.getSong({
id: "003OUlho2HcRHC",
vendor: "qq"
})
.then(meta => console.log(meta))
.catch(error => console.log(error.message));
// 评论接口: 返回指定歌曲的评论
musicAPI
.getComment({
id: "003OUlho2HcRHC",
page: 1,
limit: 20,
vendor: "qq"
})
.then(comments => console.log(comments))
.catch(error => console.log(error.message));
1
ddzzhen 2018-10-06 08:56:07 +08:00 via Android
支持一下
|
2
imxieke 2018-10-06 22:47:05 +08:00
资瓷下 最近在抓 酷狗的折腾下
|
3
chungzhao 2018-10-07 16:42:30 +08:00
网络真小,godbmw 大佬又遇到你了。。。。。。
|