我怎样才能看到我的Python应用程序发送的整个HTTP请求?

在我的情况下,我正在使用requests库通过HTTPS调用PayPal的API。 不幸的是,我从PayPal得到一个错误,贝宝支持不能找出错误是什么或者是什么原因造成的。 他们要我“请提供整个请求,包括标题”。

我怎样才能做到这一点?

一个简单的方法:启用日志logging在最新版本的请求(1.x和更高版本)。

请求使用http.clientlogging模块configuration来控制日志冗长,如下所述。

示范

摘自链接文档的代码:

 import requests import logging # These two lines enable debugging at httplib level (requests->urllib3->http.client) # You will see the REQUEST, including HEADERS and DATA, and RESPONSE with HEADERS but without DATA. # The only thing missing will be the response.body which is not logged. try: import http.client as http_client except ImportError: # Python 2 import httplib as http_client http_client.HTTPConnection.debuglevel = 1 # You must initialize logging, otherwise you'll not see debug output. 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') 

示例输出

 $ python requests-logging.py 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 
 r = requests.get('https://api.github.com', auth=('user', 'pass')) 

r是一个回应。 它有一个请求属性,它有你需要的信息。

 r.request.allow_redirects r.request.headers r.request.response r.request.auth r.request.hooks r.request.send r.request.cert r.request.method r.request.sent r.request.config r.request.params r.request.session r.request.cookies r.request.path_url r.request.timeout r.request.data r.request.prefetch r.request.url r.request.deregister_hook r.request.proxies r.request.verify r.request.files r.request.redirect r.request.full_url r.request.register_hook 

r.request.headers给出标题:

 {'Accept': '*/*', 'Accept-Encoding': 'identity, deflate, compress, gzip', 'Authorization': u'Basic dXNlcjpwYXNz', 'User-Agent': 'python-requests/0.12.1'} 

然后r.request.data将主体作为映射。 如果他们喜欢,可以使用urllib.urlencode进行转换:

 import urllib b = r.request.data encoded_body = urllib.urlencode(b) 

如果您使用Python 2.x,请尝试安装urllib2打开程序。 这应该打印出你的头,尽pipe你可能不得不把它与你用来击打HTTPS的其他开瓶器相结合。

 import urllib2 urllib2.install_opener(urllib2.build_opener(urllib2.HTTPHandler(debuglevel=1))) urllib2.urlopen(url) 

verboseconfiguration选项可能会让你看到你想要的。 文档中有一个例子 。

注:请阅读下面的注释:详细configuration选项似乎不再可用。