参考答案
In [1]: import requests
In [2]: url = 'https://china-testing.github.io/'In [3]: response = requests.get(url)
In [4]: response.request.headers
Out[4]: {'User-Agent': 'python-requests/2.18.4', 'Accept-Encoding': 'gzip, deflate', 'Accept': '**;q=0.8",
"Accept-Encoding": "gzip, deflate, br",
"Accept-Language": "zh-CN,zh;q=0.9",
"Cache-Control": "max-age=0",
"Connection": "close",
"Content-Length": "132",
"Content-Type": "application/x-www-form-urlencoded",
"Host": "httpbin.org",
"Origin": "https://httpbin.org",
"Referer": "https://httpbin.org/forms/post",
"Upgrade-Insecure-Requests": "1",
"User-Agent": "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.100 Safari/537.36"
},
"json": null,
"origin": "183.62.236.90",
"url": "https://httpbin.org/post"
作者:python作业AI毕业设计
链接:https://www.jianshu.com/p/1dd15283add9



