Git Product home page Git Product logo

Comments (5)

GoogleCodeExporter avatar GoogleCodeExporter commented on July 23, 2024
Accepting.  This will be addressed post-0.6 with the HTTP layer rewrite.

Original comment by dclinton on 21 Feb 2009 at 5:29

  • Changed state: Accepted

from python-twitter.

GoogleCodeExporter avatar GoogleCodeExporter commented on July 23, 2024
I have python-twitter 0.6;  how does one setup using an HTTP proxy and 
authentication?

Original comment by [email protected] on 8 Dec 2009 at 2:03

from python-twitter.

GoogleCodeExporter avatar GoogleCodeExporter commented on July 23, 2024

Original comment by bear42 on 16 May 2010 at 11:40

  • Added labels: milestone-dev

from python-twitter.

GoogleCodeExporter avatar GoogleCodeExporter commented on July 23, 2024
Change _GetOpener function in twitter.py with :

  def _GetOpener(self, url, username=None, password=None):
    proxies = {'http': 'http://USERNAME:PASSWORD@PROXY_SERVER:80/'}
    proxyHandler = self._urllib.ProxyHandler(proxies)
    if username and password:
      self._AddAuthorizationHeader(username, password)
      handler = self._urllib.HTTPBasicAuthHandler()
      (scheme, netloc, path, params, query, fragment) = urlparse.urlparse(url)
      handler.add_password(Api._API_REALM, netloc, username, password)
      opener = self._urllib.build_opener(handler, proxyHandler)
    else:
      opener = self._urllib.build_opener(proxyHandler)
    opener.addheaders = self._request_headers.items()
    return opener

for non http proxies, replace http with respective proxy

Original comment by [email protected] on 28 Jun 2010 at 11:07

from python-twitter.

GoogleCodeExporter avatar GoogleCodeExporter commented on July 23, 2024
Here is the final twitter.py, look into documentation (of Api class) to see how 
to use it with proxy.

Original comment by [email protected] on 28 Jun 2010 at 8:13

Attachments:

from python-twitter.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.