Failed to provide proxy info to twilio pythonanywhere
问题 I am trying to use Twilio in pythonanywhere and I know I need a proxy to make it work. My code looks like this: class ProxiedTwilioHttpClient(HttpClient): """ General purpose HTTP Client for interacting with the Twilio API """ def request(self, method, url, params=None, data=None, headers=None, auth=None, timeout=None, allow_redirects=False): session = Session() session.verify = get_cert_file() session.proxies = { "https" : "https://52.14.161.178:3128" } request = Request(method.upper(), url,