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 am creating an app on App Engine which needs me to retrieve the entire html of a site. I started trying the urlfetch API, but that only allows you to read the information under the body header, so I tried urllib2. The application runs fine locally, however when I run it on appspot, I get the HTTP 404 Error. The relevant code in the program is here:

temp = urllib2.urlopen(url)
raw = temp.read()
logging.debug(raw)
self.response.out.write(raw)

The url variable has already been defined. If urllib2 doesn't work on App Engine, then is there a way to get the urlfetch API to do what I want?

share|improve this question
2  
The call you are making to urllib2 is supported developers.google.com/appengine/docs/python/urlfetch/overview so you need to catch the URLError exception and log its contents so you can see what is going wrong. Without that information no one can answer this question. – msw Jul 30 '12 at 2:33
1  
The urlfetch api does support reading contents before the body, such as the headers, status_code, final_url. See developers.google.com/appengine/docs/python/urlfetch/… for details. – Sebastian Kreft Jul 30 '12 at 13:37

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.