848350
qq音乐歌单消息数据
我获取到的数据
我的代码
apiRoutes.get('/getSongList', function (req, res) {
var url = "https://c.y.qq.com/qzone/fcg-bin/fcg_ucc_getcdinfo_byids_cp.fcg"
axios.get(url, { headers: { referer: 'https://y.qq.com', host: 'c.y.qq.com' }, params: req.query }).then((response) => { res.json(response.data) }).catch((e) => { console.log(e) }) }) 我百度到有人说这个叫防盗链,我已经把referer改成和qq那边的一样可还是不行 希望大家能看看什么问题,谢谢