就我而言,我使用该requests
库通过 HTTPS 调用 PayPal 的 API。不幸的是,我收到了来自 PayPal 的错误,而 PayPal 支持人员无法确定错误是什么或导致它的原因。他们希望我“请提供整个请求,包括标题”。
我怎样才能做到这一点?
就我而言,我使用该requests
库通过 HTTPS 调用 PayPal 的 API。不幸的是,我收到了来自 PayPal 的错误,而 PayPal 支持人员无法确定错误是什么或导致它的原因。他们希望我“请提供整个请求,包括标题”。
我怎样才能做到这一点?
一个简单的方法:在最新版本的 Requests(1.x 和更高版本)中启用日志记录。
Requests 使用http.client
andlogging
模块配置来控制日志记录的详细程度,如此处所述。
从链接文档中摘录的代码:
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
是回应。它有一个 request 属性,其中包含您需要的信息。
r.request.allow_redirects r.request.headers r.request.register_hook
r.request.auth r.request.hooks r.request.response
r.request.cert r.request.method r.request.send
r.request.config r.request.params r.request.sent
r.request.cookies r.request.path_url r.request.session
r.request.data r.request.prefetch r.request.timeout
r.request.deregister_hook r.request.proxies r.request.url
r.request.files r.request.redirect r.request.verify
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)
根据响应的类型,.data
-attribute 可能会丢失,而.body
会出现 -attribute。
您可以使用HTTP Toolkit来做到这一点。
如果您需要快速执行此操作而无需更改代码,它特别有用:您可以从 HTTP Toolkit 打开终端,从那里正常运行任何 Python 代码,您将能够看到每个 HTTP/HTTPS 的完整内容立即请求。
有一个免费版本可以满足您的所有需求,而且它是 100% 开源的。
我是 HTTP Toolkit 的创建者;实际上,我自己构建它是为了解决我前一段时间完全相同的问题!我也在尝试调试支付集成,但他们的 SDK 不起作用,我不知道为什么,我需要知道实际发生了什么才能正确修复它。这非常令人沮丧,但能够看到原始流量确实很有帮助。
如果您使用的是 Python 2.x,请尝试安装urllib2开启程序。这应该会打印出您的标头,尽管您可能必须将其与您用来访问 HTTPS 的其他开启程序结合使用。
import urllib2
urllib2.install_opener(urllib2.build_opener(urllib2.HTTPHandler(debuglevel=1)))
urllib2.urlopen(url)
调试 HTTP 本地请求的一个更简单的方法是使用 netcat。如果你跑
nc -l 1234
您将开始在端口上侦听1234
HTTP 连接。您可以通过 访问它http://localhost:1234/foo/foo/...
。
在终端上,您将看到您发送到端点的任何原始数据。例如:
POST /foo/foo HTTP/1.1
Accept: application/json
Connection: keep-alive
Host: example.com
Accept-Language: en-en
Authorization: Bearer ay...
Content-Length: 15
Content-Type: application/json
{"test": false}
verbose
配置选项可能允许您查看您想要的内容。文档中有一个示例。
注意:阅读下面的评论:详细的配置选项似乎不再可用。
没有日志系统完全工作,(无论如何,从请求 2.26 开始,非常旧的版本可能有另一种行为)
好的解决方案是使用“钩子”并在发生时打印详细信息。
这在这里得到了很好的解释:https ://findwork.dev/blog/advanced-usage-python-requests-timeouts-retries-hooks/
在“打印所有内容”下,
但万一链接在这里死了是重要的部分
import requests
from requests_toolbelt.utils import dump
def logging_hook(response, *args, **kwargs):
data = dump.dump_all(response)
print(data.decode('utf-8'))
http = requests.Session()
http.hooks["response"] = [logging_hook]
http.get("https://api.openaq.org/v1/cities", params={"country": "BA"})
这次的结果将是发送查询和接收响应的完整跟踪。
我已经用 POST 和很多标题成功地尝试过它:它有效。不要忘记 pip install requests_toolbelt。
# Output
< GET /v1/cities?country=BA HTTP/1.1
< Host: api.openaq.org
> HTTP/1.1 200 OK
> Content-Type: application/json; charset=utf-8
> Transfer-Encoding: chunked
> Connection: keep-alive
>
{
"meta":{
"name":"openaq-api",
"license":"CC BY 4.0",
"website":"https://docs.openaq.org/",
"page":1,
"limit":100,
"found":1
},
"results":[
{
"country":"BA",
"name":"Goražde",
"city":"Goražde",
"count":70797,
"locations":1
}
]
}
先前的答案似乎被否决了,因为它以“没有什么完全有效”开始,然后提供了这个完美的解决方案:
requests_toolbelt
_pip install requests-toolbelt
import requests
from requests_toolbelt.utils import dump
response = requests.get("https://v2.jokeapi.dev/joke/Any?safe-mode")
print(dump.dump_all(response).decode("utf-8"))