python3 requests请求时headers的Content-Type类型修改:“Content-Type“: “application/json“
python3 requests请求时headers的Content-Type类型修改:"Content-Type": "application/json"
·
如图,发起的请求报错,是因为headers的Content-Type类型一直是默认的,修改不了
requests中,设置headers参数{‘Content-Type’: ‘application/json’ }的作用是,将请求数据以json的格式发送,而headers中默认请求方式是表单提交:{‘Content-Type’: ‘application/x-www-form-urlencoded’ };
于是 查找多番资料,这样改,可以解决该问题:
更多推荐
已为社区贡献1条内容
所有评论(0)