I have every time this error If I use this code
import requests
proxy_list = [
{"https": "45.14.173.23"},
]
for proxy in proxy_list:
requests.get('https://iplogger.org/1QMwp7', proxies=proxy)
.
Error code: requests.exceptions.ProxyError: HTTPSConnectionPool(host='iplogger.org', port=443): Max retries exceeded with url: /1QMwp7 (Caused by ProxyError('Cannot connect to proxy.', OSError('Tunnel connection failed: 400 Bad Request')))
I am sure that my proxy is working. But what's the problem?