dunizb / wxapp-movie

:speech_balloon:微信小程序-读你电影(豆瓣API),适合入门练手

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

豆瓣接口找IDE访问400

yeminliu2010 opened this issue · comments

https://api.douban.com/v2/movie/in_theaters?count=50
这个接口找IDE访问400,单独在浏览器访问没有问题 啥原因?难道豆瓣的hedaer信息变了吗

commented

将"Content-Type"改为“text/html”或“application/html”即可

@yeminliu2010 有可能吧

刚试了一下,除了将"Content-Type"改为“text/html”或“application/html”外,
还需要一个apikey作为参数,现在豆瓣限制了api的访问权限,代码需要改成:
url: "https://api.douban.com/v2/movie/in_theaters", // “正在上映”接口 header: { 'Content-Type': 'text/html' }, data: { count: 50, apikey: "上网上找一个apikey吧" },