336

私の場合、requestsライブラリを使用して HTTPS 経由で PayPal の API を呼び出しています。残念ながら、PayPal からエラーが発生しました。PayPal サポートは、エラーの内容や原因を特定できません。彼らは私に「ヘッダーを含めてリクエスト全体を提供してください」と望んでいます。

どうやってやるの?

4

8 に答える 8

630

簡単な方法: 最近のバージョンの Requests (1.x 以降) でログを有効にします。

Requests は、ここでhttp.client説明されているように、およびloggingモジュール構成を使用してログの詳細度を制御します。

デモンストレーション

リンクされたドキュメントから抜粋したコード:

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
于 2013-05-19T02:17:31.233 に答える
177
r = requests.get('https://api.github.com', auth=('user', 'pass'))

r応答です。必要な情報を持つリクエスト属性があります。

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が存在する場合があります。

于 2012-05-14T18:10:50.047 に答える
5

Python 2.x を使用している場合は、urllib2オープナーをインストールしてみてください。これでヘッダーが出力されるはずですが、HTTPS をヒットするために使用している他のオープナーと組み合わせる必要がある場合があります。

import urllib2
urllib2.install_opener(urllib2.build_opener(urllib2.HTTPHandler(debuglevel=1)))
urllib2.urlopen(url)
于 2012-05-14T20:46:01.113 に答える