豆瓣api接口又更新了,有人知道最新的吗
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);
});
}
前面我还查询的到数据,过了半小时就查询不到了