Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have an application on google-app-engine written in python. I want to fetch url via proxy from my application. I found two ways to fetch remote url from appengine:

  1. Using urlfetch
  2. Using python built-in urllib2

Looking in documentation for urlfetch, i didn't found any way to set proxy. So i started to play with urllib2. I've tried this:

class MainHandler(webapp.RequestHandler):
    def get(self):
        proxy_handler = urllib2.ProxyHandler({'http': "210.246.88.46:8080",})
        opener = urllib2.build_opener(proxy_handler)
        resp = opener.open("http://whatsmyuseragent.com/", timeout=20)
        self.response.out.write(resp.read())

But looks like appengine ignores proxy and fetches url with its own ip. In result page ip of application is shown, and not ip of proxy. In documentation it is said, that ip cannot be changed. I thought, that it means i can't change manually ip in HTTP header somehow, but i still can use proxy.

However, i want to know exactly, is it possible to fetch url via proxy on appengine or not and stop breaking my head :).

share|improve this question
possible duplicate of URLFetch behind a Proxy Server on App Engine Production – Wooble Jun 18 '12 at 16:22
@Wooble thanks for link. But i think it doesn't answers my question. I don't have access to proxy and can't modify its behavior. – stalk Jun 18 '12 at 16:32

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.