豆瓣api接口又更新了,有人知道最新的吗

来源:4-3 电影列表

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

});

}

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

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

写回答 关注

2回答

  • 谢成
    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


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

    慕设计110...

    我试过了,不行啊

    2019-09-14 18:53:23

    共 1 条回复 >

轻松入门微信小程序与云开发

深入浅出微信小程序核心基础与云开发,使你掌握小程序开发必备技能。

64548 学习 · 1742 问题

查看课程

相似问题