问答详情
源自:4-3 电影列表

豆瓣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);

});

}

前面我还查询的到数据,过了半小时就查询不到了

https://img4.mukewang.com/5d6277dd0001cf7906130077.jpg

提问者:wind_lz 2019-08-25 19:58

个回答

  • 谢成
    2019-08-26 09:15:31
    已采纳

    官方的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`

  • wind_lz
    2019-08-25 20:51:24

    https://douban.uieee.com/v2/movie/in_theaters?start=0&count=10


    找了半天找到了这个,亲测可用