这是我的代码:
import requests
headers = {
'Upgrade-Insecure-Requests': '1',
'Connection': 'keep-alive',
'User-Agent': 'Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.116 Safari/537.36',
'Accept': 'text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8',
'Accept-Encoding': 'gzip, deflate, sdch',
'Accept-Language': 'en-US,en;q=0.8',
'Host':'www.finishline.com',
'Connection': 'keep-alive',
'Cache-Control': 'max-age=0',
}
requests.get('http://www.finishline.com/', headers=headers, timeout=5, verify=False)
当我运行此脚本时,当我期待200响应代码时,我收到读取超时错误。网址在浏览器中也能正常工作,所以我可以确认它不是服务器。
我使用fiddler从浏览器中嗅探http请求以查看最新情况。使用fiddler的作曲家,当我删除 Connection:keep-alive 标题时,我能够重现读取超时错误。
这是一个请求错误还是我在这里做错了什么?