python寫http post請求的四種請求體

 

HTTP 協議規定 POST 提交的數據必須放在消息主體(entity-body)中,但協議並無規定數據必須使用什麼編碼方式。常見的四種編碼方式以下: 
一、application/x-www-form-urlencoded 
這應該是最多見的 POST 提交數據的方式了。瀏覽器的原生 form 表單,若是不設置 enctype 屬性,那麼最終就會以 application/x-www-form-urlencoded 方式提交數據。請求相似於下面這樣(無關的請求頭在本文中都省略掉了):python

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 
這又是一個常見的 POST 數據提交的方式。咱們使用表單上傳文件時,必須讓 form 的 enctyped 等於這個值,下面是示例chrome

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 不會趕上什麼麻煩。json

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

那麼Python在調用外部http請求時,post請求怎麼傳請求體呢?說實話樓主只實踐過【一、application/x-www-form-urlencoded】【二、multipart/form-data 】和【三、application/json】 
1、application/x-www-form-urlencodedmarkdown

import urllib

url = "http://www.example.com" body_value = {"package": "com.tencent.lian","version_code": "66" } body_value = urllib.urlencode(body_value) request = urllib2.Request(url, body_value) request.add_header(keys, headers[keys]) result = urllib2.urlopen(request ).read()

2、multipart/form-data 
須要利用python的poster模塊,安裝poster:pip install poster 
代碼:app

from poster.encode import multipart_encode from poster.streaminghttp import register_openers url = "http://www.example.com" body_value = {"package": "com.tencent.lian","version_code": "66" } register_openers() datagen, re_headers = multipart_encode(body_value) request = urllib2.Request(url, datagen, re_headers) # 若是有請求頭數據,則添加請求頭 request .add_header(keys, headers[keys]) result = urllib2.urlopen(request ).read()

2、application/json函數

import json

url = "http://www.example.com" body_value = {"package": "com.tencent.lian","version_code": "66" } register_openers() body_value = json.JSONEncoder().encode(body_value) request = urllib2.Request(url, body_value) request .add_header(keys, headers[keys]) result = urllib2.urlopen(request ).read()
相關文章
相關標籤/搜索