一、403错误出现说明
最近开始研究微信小程序,看网上大家的学习案例都是豆瓣的电影小项目,琢磨着自己也仿照写一个。
首先使用了豆瓣的电影API,访问地址为http://api.douban.com/v2/movie/in_theaters,该地址在Safari浏览器和谷歌浏览器调用时都会直接返回数据
// 小程序调用豆瓣API方法
const _this = this
wx.request({
url: 'http://api.douban.com/v2/movie/in_theaters',
header: {
'content-type': 'application/json'
},
success: function (res) {
_this.setData({
list: res.data.subjects
})
console.log(res.data.subjects)
}
})
但是在小程序的项目用调用就出现了如下图的403错误
api403错误.png
二、403错误解决方法
最后经过很长时间的搜索,知道了豆瓣在2018年1月23号的时候进行了域名迁移,将原先的http://api.douban.com域名地址替换为了http://t.yushu.im
更新说明.jpeg所以在小程序调用豆瓣api时,只需要将域名替换成最新的即可,这样就完美的解决了403错误。
// 小程序调用豆瓣API方法
const _this = this
wx.request({
url: 'http://t.yushu.im/v2/movie/in_theaters',
header: {
'content-type': 'application/json'
},
success: function (res) {
_this.setData({
list: res.data.subjects
})
console.log(res.data.subjects)
}
})
写在最后:当今社会竞争中想要脱颖而出,人必须有一技之长,而且万里挑一。 每个人都有不同的选择,有时一个正确的选择比奋斗本身更重要。 做你喜欢的事情,做你擅长的事情。 没有七十二变,岂能大闹天宫?
网友评论