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 2020There 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異步之迭代器怎么使用
- Python異步之生成器怎么使用
- Python異步之如何獲取當前和正在運行任務
- python如何實現簡易的學生信息管理系統
- Python混合如何使用同步和異步函數
- Python迭代器如何創建使用
- 如何封裝Python時間處理庫創建自己的TimeUtil類
- Python DNS查找
- Python 自定義HTTP請求
- Python 請求狀態代碼
- Python 網絡接口
- Python HTTP服務器
- Python Web表單提交
- Python IMAP
- Python SFTP
- Python Web服務器
- Python 系統和內存架構
- Python 線程池
- Python 多處理器
- Python 事件驅動編程