python3+requests:post請求四種傳送正文方式 python接口自動化2-發送post請求詳解(二) Get,Post請求方式經典詳解

http://www.javashuo.com/article/p-qlxisijb-c.htmlhtml

前言:post請求我在python接口自動化2-發送post請求詳解(二)已經講過一部分了,主要是發送一些較長的數據,還有就是數據比較安全等,能夠參考Get,Post請求方式經典詳解進行學習一下。python

咱們要知道post請求四種傳送正文方式首先須要先了解一下常見的四種編碼方式:

  HTTP 協議規定 POST 提交的數據必須放在消息主體(entity-body)中,但協議並無規定數據必須使用什麼編碼方式。常見的四種編碼方式以下: chrome

 

  ♦一、application/x-www-form-urlencoded json

  這應該是最多見的 POST 提交數據的方式了。瀏覽器的原生 form 表單,若是不設置 enctype 屬性,那麼最終就會以 application/x-www-form-urlencoded 方式提交數據。請求相似於下面這樣(無關的請求頭在本文中都省略掉了):瀏覽器

POST http://www.example.com HTTP/1.1    Content-Type:
application/x-www-form-urlencoded;charset=utf-8
title=test&sub%5B%5D=1&sub%5B%5D=2&sub%5B%5D=3

  

  ♦二、multipart/form-data 安全

  除了傳統的application/x-www-form-urlencoded表單,咱們另外一個常常用到的是上傳文件用的表單,這種表單的類型爲multipart/form-data。
  這又是一個常見的 POST 數據提交的方式。咱們使用表單上傳文件時,必須讓 form 的 enctyped 等於這個值,下面是示例app

接下來咱們就來講一下post請求四種傳送正文方式:函數

複製代碼
POST http://www.example.com HTTP/1.1
Content-Type:multipart/form-data; boundary=----WebKitFormBoundaryrGKCBY7qhFd3TrwA
------WebKitFormBoundaryrGKCBY7qhFd3TrwA
Content-Disposition: form-data; name="text"
title
------WebKitFormBoundaryrGKCBY7qhFd3TrwA
Content-Disposition: form-data; name="file"; filename="chrome.png"
Content-Type: image/png
PNG ... content of chrome.png ...
------WebKitFormBoundaryrGKCBY7qhFd3TrwA--
複製代碼

  

  ♦三、application/json 
  application/json 這個 Content-Type 做爲響應頭你們確定不陌生。實際上,如今愈來愈多的人把它做爲請求頭,用來告訴服務端消息主體是序列化後的 JSON 字符串。因爲 JSON 規範的流行,除了低版本 IE 以外的各大瀏覽器都原生支持 JSON.stringify,服務端語言也都有處理 JSON 的函數,使用 JSON 不會趕上什麼麻煩。post

  

  ♦四、text/xml 
  它是一種使用 HTTP 做爲傳輸協議,XML 做爲編碼方式的遠程調用規範。學習

 

post請求四種傳送正文方式:

  (1)請求正文是application/x-www-form-urlencoded

  (2)請求正文是multipart/form-data

  (3)請求正文是raw

  (4)請求正文是binary

 

(1)請求正文是application/x-www-form-urlencoded

形式:

1 requests.post(url='',data={'key1':'value1','key2':'value2'},headers={'Content-Type':'application/x-www-form-urlencoded'})

  ♦Reqeusts支持以form表單形式發送post請求,只須要將請求的參數構形成一個字典,而後傳給requests.post()的data參數便可。

輸入:

url = 'http://httpbin.org/post'
d = {'key1': 'value1', 'key2': 'value2'}
r = requests.post(url, data=d)
print r.text

輸出:

複製代碼
{ 
「args」: {}, 
「data」: 「」, 
「files」: {}, 
「form」: { 
「key1」: 「value1」, 
「key2」: 「value2」 
}, 
「headers」: { 
…… 
「Content-Type」: 「application/x-www-form-urlencoded」, 
…… 
}, 
「json」: null, 
…… 
}
複製代碼

  ♦能夠看到,請求頭中的Content-Type字段已設置爲application/x-www-form-urlencoded,且d = {'key1': 'value1', 'key2': 'value2'}以form表單的形式提交到服務端,服務端返回的form字段便是提交的數據。

 

(2)請求正文是multipart/form-data

  除了傳統的application/x-www-form-urlencoded表單,咱們另外一個常常用到的是上傳文件用的表單,這種表單的類型爲multipart/form-data。

形式:

1 requests.post(url='',data={'key1':'value1','key2':'value2'},headers={'Content-Type':'multipart/form-data'})

   ♦發送文件中的數據須要(安裝requests_toolbelt)

複製代碼
from requests_toolbelt import MultipartEncoder
import requests

m = MultipartEncoder(
    fields={'field0': 'value', 'field1': 'value',
            'field2': ('filename', open('file.py', 'rb'), 'text/plain')}
    )

r = requests.post('http://httpbin.org/post', data=m,
                  headers={'Content-Type': m.content_type})
複製代碼

  ♦不須要文件

複製代碼
from requests_toolbelt import MultipartEncoder
import requests

m = MultipartEncoder(fields={'field0': 'value', 'field1': 'value'})

r = requests.post('http://httpbin.org/post', data=m,
                  headers={'Content-Type': m.content_type})
複製代碼

 

 

(3)請求正文是raw

形式:

♦傳入xml格式文本
1 requests.post(url='',data='<?xml  ?>',headers={'Content-Type':'text/xml'})
♦傳入json格式文本
1 requests.post(url='',data=json.dumps({'key1':'value1','key2':'value2'}),headers={'Content-Type':'application/json'})

或者:

1  requests.post(url='',json={{'key1':'value1','key2':'value2'}},headers={'Content-Type':'application/json'})

  ♦能夠將一json串傳給requests.post()的data參數,

輸入:

url = 'http://httpbin.org/post'
s = json.dumps({'key1': 'value1', 'key2': 'value2'})
r = requests.post(url, data=s)
print r.text

輸出:

複製代碼
{ 
「args」: {}, 
「data」: 「{\」key2\」: \」value2\」, \」key1\」: \」value1\」}」, 
「files」: {}, 
「form」: {}, 
「headers」: { 
…… 
「Content-Type」: 「application/json」, 
…… 
}, 
「json」: { 
「key1」: 「value1」, 
「key2」: 「value2」 
}, 
…… 
}
複製代碼

 

(4)請求正文是binary

形式:

1 requests.post(url='',files={'file':open('test.xls','rb')},headers={'Content-Type':'binary'})

  ♦Requests也支持以multipart形式發送post請求,只需將一文件傳給requests.post()的files參數便可。

輸入:

url = 'http://httpbin.org/post'
files = {'file': open('report.txt', 'rb')}
r = requests.post(url, files=files)
print r.text

輸出:

複製代碼
{ 
「args」: {}, 
「data」: 「」, 
「files」: { 
「file」: 「Hello world!」 
}, 
「form」: {}, 
「headers」: {…… 
「Content-Type」: 「multipart/form-data; boundary=467e443f4c3d403c8559e2ebd009bf4a」, 
…… 
}, 
「json」: null, 
…… 
}
複製代碼

   ♦文本文件report.txt的內容只有一行:Hello world!,從請求的響應結果能夠看到數據已上傳到服務端中。

 注意:必定要注意headers的類型。

 

天天一點點,感覺本身存在的意義。
相關文章
相關標籤/搜索