https://mp.weixin.qq.com/s/jKJ5WJ3t3Aju-jIaSRxBjw的headers怎么获取
时间: 2023-08-24 20:04:34 浏览: 91
博客https://blog.csdn.net/weixin_49457347/article/details/1236所需文件
5星 · 资源好评率100%
要获取这个网页的 headers,可以使用 Python 中的 requests 库发送一个 HTTP GET 请求,并使用 response.headers 属性来获取 headers。具体代码如下:
```
import requests
url = 'https://mp.weixin.qq.com/s/jKJ5WJ3t3Aju-jIaSRxBjw'
response = requests.get(url)
headers = response.headers
print(headers)
```
运行这个脚本后,就可以在控制台中看到这个网页的 headers 信息了。
阅读全文