代码之家  ›  专栏  ›  技术社区  ›  Reza Amya

python请求中默认的请求头是什么

  •  2
  • Reza Amya  · 技术社区  · 6 年前

    我正在使用 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 回复  |  直到 6 年前
        1
  •  5
  •   Smart Manoj AlexP    4 年前
    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)