在Python 中捕獲HTTP 請求以進行故障排除
遇到HTTP 錯誤可能會令人沮喪,特別是當外部支援需要詳細的請求資訊時。本文介紹如何使用 Requests 庫捕獲從 Python 應用程式發送的整個 HTTP 請求。透過在最新版本的 Requests 中啟用日誌記錄,您可以深入了解請求的標頭、資料和回應。
Requests 利用 Python 日誌記錄模組來設定日誌記錄詳細程度。若要啟用日誌記錄,只需如下修改您的程式碼:
import logging # Enable debugging at http.client level logging.basicConfig() logging.getLogger().setLevel(logging.DEBUG) # Set logging level for requests.packages.urllib3 requests_log = logging.getLogger("requests.packages.urllib3") requests_log.setLevel(logging.DEBUG) requests_log.propagate = True
啟用日誌記錄後,您可以向httpbin.org 等公開API 執行GET 要求:
import requests requests.get('https://httpbin.org/headers')
日誌輸出將包含有關request:
INFO:requests.packages.urllib3.connectionpool:Starting new HTTPS connection (1): httpbin.org send: 'GET /headers HTTP/1.1\r\nHost: httpbin.org\r\nAccept-Encoding: gzip, deflate, compress\r\nAccept: */*\r\nUser-Agent: python-requests/1.2.0 CPython/2.7.3 Linux/3.2.0-48-generic\r\n\r\n' reply: 'HTTP/1.1 200 OK\r\n' header: Content-Type: application/json header: Date: Sat, 29 Jun 2013 11:19:34 GMT header: Server: gunicorn/0.17.4 header: Content-Length: 226 header: Connection: keep-alive DEBUG:requests.packages.urllib3.connectionpool:"GET /headers HTTP/1.1" 200 226
輸出顯示完整的請求,包括標頭和回應正文的前 1024 位元組。這些資訊對於識別 HTTP 錯誤來源以及與外部支援團隊溝通非常寶貴。
以上是如何在Python中捕獲HTTP請求進行調試?的詳細內容。更多資訊請關注PHP中文網其他相關文章!