在做豆瓣電影數(shù)據(jù)采集的時候發(fā)現(xiàn)原始的api:https://api.douban.com/v2/movie/in_theaters,
微信小程序 wx.request訪問 403,
換了地址后,可以獲取到數(shù)據(jù):
wx.request({
url: 'https://douban.uieee.com/v2/movie/top250',
method: 'GET', // OPTIONS, GET, HEAD, POST, PUT, DELETE, TRACE, CONNECT
// header: {}, // 設(shè)置請求的 header
header: {
'content-type': 'application/xml'
},
success: function(res) {
console.log(res.data);
},
fail: function() {
wx.showToast({
title: "網(wǎng)絡(luò)連接失敗",
duration: 3000
})
},