豆瓣接口找IDE访问400
yeminliu2010 opened this issue · comments
yeminliu2010 commented
https://api.douban.com/v2/movie/in_theaters?count=50
这个接口找IDE访问400,单独在浏览器访问没有问题 啥原因?难道豆瓣的hedaer信息变了吗
VWIN commented
将"Content-Type"改为“text/html”或“application/html”即可
Dunizb commented
@yeminliu2010 有可能吧
qijingpei commented
刚试了一下,除了将"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吧" },