Posted in Python onMarch 04, 2018
一.摘要
做接口自动化测试时,常常需要使用python发送一些json内容的接口报文,如果使用urlencode对内容进行编码解析并发送请求,会发现服务器返回了200,OK的状态,但响应内容不可读(像是一堆加密报文)。定位问题时发现抓包发现发送报文的内容与我们发送的json内容不符(会去掉”{“与”}“等内容),所以重新采用了json封装后,问题解决。
二.解决方法
1.先导入json模块,采用json.dumps将json内容进行封装
eg: import json str = json.dumps({'userid':'381fccbd776c4deb'})
2.调用这个内容并发送http请求
eg: import http.client,urllib.parse import json str = json.dumps({'userid':'381fccbd776c4deb'}) print(str) #下面注释部分这样做是不行的 #pararms = urllib.parse.urlencode({'userid':'381fccbd776c4deb'}).encode(encoding='UTF8') headers = {"Content-type": "application/x-www-form-urlencoded","Accept": "text/plain"} conn = http.client.HTTPConnection("10.3.93.216",8080) conn.request('POST', '/ippinte/api/scene/getall', str, headers) response = conn.getresponse() print(response.status, response.reason) data = response.read().decode('utf-8') print(data) conn.close()
附未作json封装时的结果图片与封装成功后的结果图片:
未作json封装时的结果图片
封装成功后的结果图片
python3.x上post发送json数据
- Author -
laozhang声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@