在 Python 请求中打印原始 HTTP 请求
在 Python 的 requests 模块中,可以打印未经编辑的 HTTP 请求,包括请求行,标题和内容。这对于调试目的或检查正在发送的确切 HTTP 请求非常有用。
从 requests 模块的 1.2.3 版本开始,引入了PreparedRequest 对象。该对象表示完整构造的 HTTP 请求,包含所有标头和内容。在请求对象上使用prepare方法会生成一个PreparedRequest对象。
要使用PreparedRequest打印原始HTTP请求,您可以使用如下所示的pretty_print_POST函数:
<code class="python">import requests # Example request req = requests.Request('POST', 'http://stackoverflow.com', headers={'X-Custom': 'Test'}, data='a=1&b=2') # Prepare the request prepared = req.prepare() def pretty_print_POST(req): print('{}\n{}\r\n{}\r\n\r\n{}'.format( '-----------START-----------', req.method + ' ' + req.url, '\r\n'.join('{}: {}'.format(k, v) for k, v in req.headers.items()), req.body, )) # Print the raw HTTP request pretty_print_POST(prepared) # Send the request (if desired) s = requests.Session() s.send(prepared)</code>
此函数打印以格式化的方式显示请求方法、URL、标头和内容。
要在打印后发送实际请求,可以在 requests Session 对象上使用 send 方法,如示例所示。
以上是如何使用 Python 请求打印原始 HTTP 请求?的详细内容。更多信息请关注PHP中文网其他相关文章!