Python开发【模块】:Requests(二)
2018-06-18 01:59:17来源:未知 阅读 ()
Requests模块常见的4中post请求
HTTP 协议规定 POST 提交的数据必须放在消息主体(entity-body)中,但协议并没有规定数据必须使用什么编码方式。常见的四种编码方式如下:
1、application/x-www-form-urlencoded
这应该是最常见的 POST 提交数据的方式了。浏览器的原生 form 表单,如果不设置 enctype 属性,那么最终就会以 application/x-www-form-urlencoded 方式提交数据。请求类似于下面这样:
import requests import json CONFIG = { 'url': 'http://192.168.90.10:8888/', 'headers': {'Content-Type': 'application/x-www-form-urlencoded'} } data = {'content': 'hello', 'digital': '0', 'punctuate': '1', 'engModel': '2'} url = CONFIG['url'] headers = CONFIG['headers'] response = requests.post(url=url, data=data,headers=headers,timeout=1) print(response.content)
用wirshark进行抓包,分析请求的数据格式
追踪http数据流,可以看到请求的数据进行了这样的拼接content=hello&engModel=2&punctuate=1&digital=0
2、multipart/form-data
这又是一个常见的 POST 数据提交的方式。我们使用表单上传文件时,必须让 form 的 enctyped 等于这个值,下面是示例
import requests import json CONFIG = { 'url': 'http://192.168.90.10:8888/', 'headers': {'Content-Type': 'multipart/form-data '} } data = {'content': 'hello', 'digital': '0', 'punctuate': '1', 'engModel': '2'} url = CONFIG['url'] headers = CONFIG['headers'] response = requests.post(url=url, files=data,headers=headers,timeout=1) print(response.content)
用wirshark进行抓包,分析请求的数据格式
追踪http数据流,可以看到请求的数据
3、application/json
application/json 这个 Content-Type 作为响应头大家肯定不陌生。实际上,现在越来越多的人把它作为请求头,用来告诉服务端消息主体是序列化后的 JSON 字符串。由于 JSON 规范的流行,除了低版本 IE 之外的各大浏览器都原生支持 JSON.stringify,服务端语言也都有处理 JSON 的函数,使用 JSON 不会遇上什么麻烦。
import requests import json CONFIG = { 'url': 'http://192.168.90.10:8888/', 'headers': {'Content-Type': 'application/json'} } data = {'content': 'hello', 'digital': '0', 'punctuate': '1', 'engModel': '2'} url = CONFIG['url'] headers = CONFIG['headers'] response = requests.post(url=url, data=json.dumps(data),headers=headers,timeout=1) print(response.content)
用wirshark进行抓包,分析请求的数据格式
追踪http数据流,可以看到请求的数据
4、text/xml
它是一种使用 HTTP 作为传输协议,XML 作为编码方式的远程调用规范。
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
- python3基础之“术语表(2)” 2019-08-13
- python3 之 字符串编码小结(Unicode、utf-8、gbk、gb2312等 2019-08-13
- Python3安装impala 2019-08-13
- 小白如何入门 Python 爬虫? 2019-08-13
- python_字符串方法 2019-08-13
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash