遇到 API 相關錯誤時,通常需要向支援團隊提供完整的 HTTP 請求以進行進一步調查。這不僅包括回應負載,還包括請求標頭。
在 Python 應用程式中,這可以使用最新版本的請求庫(1.x 及更高版本)來實現。 Requests 利用日誌記錄模組來控制 HTTP 請求的詳細程度。透過在 http.client 層級啟用偵錯模式,您可以擷取整個請求,包括標頭和資料。
以下程式碼片段範例如何啟用偵錯日誌記錄:
import requests import logging # Enable HTTP client debugging http_client.HTTPConnection.debuglevel = 1 # Configure loggers logging.basicConfig() logging.getLogger().setLevel(logging.DEBUG) requests_log = logging.getLogger("requests.packages.urllib3") requests_log.setLevel(logging.DEBUG) requests_log.propagate = True # Make an HTTP request requests.get('https://httpbin.org/headers')
當程式碼執行時,您將觀察到以下偵錯輸出:
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
此輸出提供請求的詳細日誌,包括所有標頭和回應狀態代碼。
以上是如何在Python應用程式中存取完整的HTTP請求?的詳細內容。更多資訊請關注PHP中文網其他相關文章!