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:
- Using urlfetch
- 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 :).