wind_lz
2019-08-25 19:58
exports.main = async(event, context) => {
return rp(`http://api.douban.com/v2/movie/in_theaters?apikey=0df993c66c0c636e29ecbb5344252a4a?start=${event.start}&count=${event.count}`)
.then(function(res) {
console.log(res);
return res;
})
.catch(function(err) {
console.error(err);
});
}
前面我还查询的到数据,过了半小时就查询不到了
官方的API是没有问题的!你这里提供的这个不是官方的,是否有限制或者问题这个都不能够保证,是否安全也不清楚。
建议大家使用官方提供的API:
电影列表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`
https://douban.uieee.com/v2/movie/in_theaters?start=0&count=10 |
找了半天找到了这个,亲测可用
轻松入门微信小程序与云开发
64548 学习 · 1742 问题
相似问题