vote up 0 vote down star

A normal urllib2 works fine:

>>> import urllib2
>>> r = urllib2.urlopen(u"http://bit.ly/4ovTZw")
>>> r.geturl()
'http://www.writing.com/main/handler/action/show_document/item_id/933413.mp3'
>>> r.headers.get("Content-Type")
'audio/mpeg'

But in appengine, the same code shows text/html.

def get(self):
    r = urllib2.urlopen(u"http://bit.ly/4ovTZw")
    self.response.out.write( r.geturl() )
    self.response.out.write( r.headers.get("Content-Type") )
    return

Can I get around this? Why is this happening?

flag

1 Answer

vote up 0 vote down

I know for a fact that AppEngine blacklists some addresses - check your response body for a hint.

It might also be the other way around - some services blacklist AppEngine... I am not sure. I remember in the early days of GAE, accessing Delicious was not possible through AppEngine.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.