python3 - 从requests.post获取POST请求文本?

时间:2017-09-13 15:04:42

标签: python-3.x post request

我正在使用python3。出于调试目的,我希望通过requests.post命令获取发送到远程服务器的确切文本。 requests.post对象似乎包含响应文本,但我正在查找请求文本。

例如......

import requests
import json
headers = {'User-Agent': 'Mozilla/5.0'}
payload = json.dumps({'abc':'def','ghi':'jkl'})
url = 'http://example.com/site.php'
r = requests.post(url, headers=headers, data=payload)

如何通过此POST命令获取发送到url的确切请求的文本?

0 个答案:

没有答案