豆瓣API未知错误
调用豆瓣电影的API接口:
loadMovie:function(){
var page =this;
wx.request({
url: ‘https://api.douban.com/v2/movie/in_theaters’, /////豆瓣API接口地址
header: {
‘Content-Type’: ‘application/json’
},
success: function(res) {
var subjects= res.data.subjects;
page.setData({movies:subjects,hidden:true});
}
})
}
显示
{msg: "Invalid request", code: 999, request: "GET /v2/in_theaters"}
999 未知错误,有遇到过的吗 访问其他网络都是好的。