Python アプリケーションによって送信されている HTTP リクエスト全体を表示するにはどうすればよいでしょうか? 質問する

Python アプリケーションによって送信されている HTTP リクエスト全体を表示するにはどうすればよいでしょうか? 質問する

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

どうやってやるの?

ベストアンサー1

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

リクエストは、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

おすすめ記事