http://api.douban.com/v2/movie/in_theaters?返回值104

来源:4-3 电影列表

悲伤丶逆流成河

2019-05-16 10:47

http://api.douban.com/v2/movie/in_theaters? 这个豆瓣电影API是不是已经挂了,不能使用了???


页面返回数据:

{"msg":"invalid_apikey","code":104,"request":"GET \/v2\/movie\/in_theaters"}



写回答 关注

3回答

  • 谢成
    2019-05-16 11:42:06
    已采纳

    在请求API的url后面跟一个apikey参数:http://api.douban.com/v2/movie/in_theaters?apikey=0df993c66c0c636e29ecbb5344252a4a&start=0&count=10

    白开凉QAQ

    试了可以,感谢!

    2019-08-11 15:41:01

    共 1 条回复 >

  • 游月
    2019-08-15 21:44:46

    // 云函数入口函数

    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.err(err);
      });
    }


  • 白开凉QAQ
    2019-08-11 15:49:24

    https://douban.uieee.com/v2/movie/in_theaters使用https访问就行了

    谢成 回复游月

    apikey会标识出当前用户是否有权限来访问对应的接口,目前这个apikey是以前申请的,但现在貌似豆瓣已经不开发申请了,所以现在调用豆瓣API的时候就先使用我提供的这个apikey吧。

    2019-08-16 12:27:49

    共 4 条回复 >

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

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

64548 学习 · 1742 问题

查看课程

相似问题