精品熟女碰碰人人a久久,多姿,欧美欧美a v日韩中文字幕,日本福利片秋霞国产午夜,欧美成人禁片在线观看

Python 請求狀態代碼

Python 請求狀態代碼

在接收并解釋了請求消息后,服務器將以HTTP響應消息進行響應。響應消息具有狀態碼。它是一個三位數的整數,其中狀態碼的第一位數定義了響應的類別,而后兩位則沒有任何分類作用。第一位數字有5個值:

狀態碼

編號 狀態碼 描述
1 1xx: Informational 表示已收到請求,并且該過程正在繼續。
2 2xx: Success 表示已成功接收,理解并接受了該動作。
3 3xx: Redirection 表示采取進一步的措施才能完成請求。
4 4xx: Client Error 表示請求包含不正確的語法或無法實現。
5 5xx: Server Error 表示服務器無法滿足看似有效的請求。

成功響應

在下面的示例中,我們從URL訪問文件,并且響應成功。所以返回的狀態碼是200:

 
# Filename : example.py
# Copyright : 2020 By Codebaoku
# Author by : www.090948.com
# Date : 2020-08-25
import urllib3
 http = urllib3.PoolManager()
 resp = http.request('GET', 'https://yapf.com/robots.txt')
 print resp.data
 # get the status of the response
 print resp.status
 

執行上面代碼,得到以下結果:

 
# Filename : example.py
# Copyright : 2020 By Codebaoku
# Author by : www.090948.com
# Date : 2020-08-25
User-agent: *
 Disallow: /admin/

 

不成功響應

在下面的示例中,我們從不存在的url訪問文件。響應不成功。因此,返回的狀態碼是403。

 
# Filename : example.py
# Copyright : 2020 By Codebaoku
# Author by : www.090948.com
# Date : 2020-08-25
import urllib3
 http = urllib3.PoolManager()
 resp = http.request('GET', 'https://yapf.com/robot1.txt')
 print resp.data
 # get the status of the response
 print resp.status
 

執行上面代碼,得到以下結果:

  
 <h1>Whitelabel Error Page</h1>
 

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 25 11:39:56 CST 2020
There was an unexpected error (type=Bad Request, status=400).
Failed to convert value of type 'java.lang.String' to required type 'java.lang.Integer'; nested exception is java.lang.NumberFormatException: For input string: "robots1.txt"

下一節:Python HTTP驗證

Python 網絡編程

相關文章