python请求中默认情况下的请求标头是什么

时间:2018-09-29 17:40:07

标签: python python-requests

我正在使用requests将数据发布到URL。我需要知道我的请求发送的标头是什么?

import requests
conf_json = {"key_1": "value_1", "key_2": "value_2"}                    
r = requests.post(API-URL, json=conf_json)

我可以通过r.headers获取响应标头,但是我需要请求标头,但我不知道应该如何获取它。你能指导我吗?

1 个答案:

答案 0 :(得分:2)

import requests
conf_json = {"key_1": "value_1", "key_2": "value_2"}                    
r = requests.post(API-URL, json=conf_json)

# get request headers
print(r.request.headers)