shell curl 与 python requests
偶然发现了curl和requests库的一个区别。场景是这样的–
【shell curl 与 python requests的一次对比】这样使用curl去发起post请求:
curl -v -X POST http://api.xx.com/api/yy.php --data 'params={"sign":"xxxx","data":[{"uid":110,"remark":"just4test"}]}'
后端接口服务能正常解析params参数并响应结果。但是当我改用python去请求时:
import json
import requestsdata = https://www.it610.com/article/{"sign":"xxxx","data":[{"uid":110,"remark":"just4test"}]}
reqbody = ('params=%s'%json.dumps(data))
res = requests.post(
'http://api.xx.com/api/yy.php',
data=https://www.it610.com/article/reqbody)
接口无法解析params并返回错误。
后来认真对比了一下headers和body,发现有可能是header设置不同的原因。
仔细查看,curl中的header有一行是:
Content-Type: application/x-www-form-urlencoded
但在python requests中并没有对应的设置,因此加上了这一个header,其后请求能正常返回。
import json
import requestsheaders = {'Content-Type': 'application/x-www-form-urlencoded'}
data = https://www.it610.com/article/{"sign":"xxxx","data":[{"uid":110,"remark":"just4test"}]}
reqbody = ('params=%s'%json.dumps(data))
res = requests.post(
'http://api.xx.com/api/yy.php',
data=https://www.it610.com/article/reqbody,
headers=headers)
推荐阅读
- gem5|WSL 安装 gem5
- jupyter|Jupyter Notebook the sql module is not an ipython extension
- 测试|自动化测试selenium基础篇——webdriverAPI
- 聊聊 Jmeter 如何并发执行 Python 脚本
- spinning|强化学习入门项目spinning up(1)安装
- python|【Python数据科学快速入门系列 | 01】Numpy初窥——基础概念
- 语义分割|【语义分割项目实战】制作语义分割数据集,并使用U-Net进行实战检测
- python|GUI 应用(socket 网络聊天室)
- python|零配置python日志,安装即用