rp(`http://api.douban.com/v2/movie/in_theaters?start=${event.start}&count=${event.count}`).then(function (res) {console.log(res);return res;}).catch(function (err) {console.log(err);});
上面同学回答的API都是正确的。如果代码中报400错误的话,就说明是客户端问题,也就是说你的调用云函数的地方有问题,不是API的问题。
同学,你解决问题了吗,我也出现了同样的问题,我的控制台显示内容也是null
老师在其它回答里解释过了,如下
由于最近API有变化,需要在请求API的url后面跟一个apikey参数:
电影列表API:http://api.douban.com/v2/movie/in_theaters?apikey=0df993c66c0c636e29ecbb5344252a4a&start=0&count=10
电影详情API:http://api.douban.com/v2/movie/subject/${event.movieid}?apikey=0df993c66c0c636e29ecbb5344252a4a