shell curl 与 python requests的一次对比

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)

    推荐阅读