How to provide proxy information to Twilio API with Python
问题 It looks like the Twilio API was updated and they no longer have the ability to import from twilio.rest.resources import Connection which means that the docs/answers that show you how to set the proxy with the Connection class no longer work. ie: from twilio.rest.resources import Connection from twilio.rest.resources.connection import PROXY_TYPE_HTTP Connection.set_proxy_info( "proxy.server", 3128, proxy_type=PROXY_TYPE_HTTP )` Does not work, since there is no resources class to import from.