检查 Python 应用程序中的 HTTP 请求
在排除 API 错误(例如调用 PayPal 的 API 时遇到的错误)时,检查应用程序发送的整个 HTTP 请求。支持团队通常需要此信息来查明问题的原因。
利用日志记录进行请求检查
请求库的现代版本(1.x 和上面)提供了一种查看 HTTP 请求的简单方法:启用日志记录。请求利用 http.client 和日志记录模块配置来控制日志记录的详细程度。
演示:
import requests import logging # Enable debugging at HTTP level http_client.HTTPConnection.debuglevel = 1 # Initialize logging logging.basicConfig() logging.getLogger().setLevel(logging.DEBUG) requests_log = logging.getLogger("requests.packages.urllib3") requests_log.setLevel(logging.DEBUG) requests_log.propagate = True 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
此输出提供有关 HTTP 请求的详细信息,包括标头和响应的第一部分。不记录完整的响应正文。因此,在请求中启用日志记录提供了一种检查 HTTP 请求并协助调试 API 问题的简单方法。
以上是如何使用 Requests 库检查 Python 应用程序中的 HTTP 请求?的详细内容。更多信息请关注PHP中文网其他相关文章!