Python requests API using proxy for https request get 407 Proxy Authentication Required

前端 未结 3 917
佛祖请我去吃肉
佛祖请我去吃肉 2020-12-15 11:04

I\'ve been struggling with my company proxy to make an https request.

import requests
from requests.auth import HTTPProxyAuth

proxy_string = \'http://user:         


        
3条回答
  •  刺人心
    刺人心 (楼主)
    2020-12-15 11:58

    I personally solved the above problem on my system by updating the environment variables http_proxy,https_proxy,socks_proxy,ftp_proxy.

    First enter the command on your terminal : printenv

    This should show you the environment variables on your system.

    In my case intially: http_proxy=http://proxyserver:port/

    I changed it to : http_proxy=http://username:password@proxy:port/

    using the command export http_proxy="http://username:password@proxy:port/"

    Similarly for https_proxy,socks_proxy,ftp_proxy

提交回复
热议问题