请求。例外。连接错误:(';连接已中止。';,远程断开连接(';远程端关闭的连接无响应';,)
问题描述
我正在尝试连接到https://apis.digital.gob.cl/fl/feriados/2020,但在与其他URL完美配合的脚本上遇到requests.exceptions.ConnectionError: ('Connection aborted.', RemoteDisconnected('Remote end closed connection without response',))
错误。
代码:
import requests
response = requests.get('https://apis.digital.gob.cl/fl/feriados/2020')
print(response.status_code)
解决方案
问题是网站没有正确的User-Agent
过滤请求,所以只使用mdn:
requests.get("https://apis.digital.gob.cl/fl/feriados/2020", headers={
"User-Agent" : "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36"
})
相关文章