我怎样才能看到我的Python应用程序发送的整个HTTP请求?
在我的情况下,我正在使用requests
库通过HTTPS调用PayPal的API。 不幸的是,我从PayPal得到一个错误,贝宝支持不能找出错误是什么或者是什么原因造成的。 他们要我“请提供整个请求,包括标题”。
我怎样才能做到这一点?
一个简单的方法:启用日志logging在最新版本的请求(1.x和更高版本)。
请求使用http.client
和logging
模块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)
verbose
configuration选项可能会让你看到你想要的。 文档中有一个例子 。
注:请阅读下面的注释:详细configuration选项似乎不再可用。
- 哪个是最好的Linux C / C ++debugging器(或前端到gdb)来帮助教学编程?
- 错误:无法访问文件bin / Debug / …,因为它正在被另一个进程使用
- 如何在GDB中打印C ++向量的元素?
- 在Eclipse中使用Pydev的交互式控制台?
- 在开发过程中debuggingFirefox插件的最快方法
- 如果多个文件具有相同的名称,则Visual Studio断点会在错误的源文件(或多个文件同时)中断裂
- 防止Visual Studio尝试加载特定DLL的符号
- UnsatisfiedLinkError:dlopen失败:无法在API <20上find由“libsupportjni.so”引用的符号“strtof”
- 从exception对象中提取回溯信息