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 writing a python script to test URLs with Python 2.7.3 on Window XP. My script works well with other URLs but always crashes with URL http://75418.zumba.com The error message is urllib2.URLError urlopen error Errno 11001 getaddrinfo failed

Put this URL to Firefox and the real URL is https://www.zumba.com/en-US/profiles/75418/

Your comments are much appreciated.

Here is my script

import httplib,urllib2
httplib.HTTPConnection.debuglevel = 1
request = urllib2.Request("http://75418.zumba.com")
request.add_header("Accept", "text/html,*/*")
request.add_header("Connection", "Keep-Alive")
request.add_header( 'Referer', "http://75418.zumba.com" )
opener = urllib2.build_opener()
f = opener.open(request)
print f.url
share|improve this question
Cannot reproduce; this script works for me using Python 2.7.2 on Mac OS 10.7.3. – David Robinson Jul 11 '12 at 2:43
Can't reproduce aswell, it works with Python 2.7.3 on Win8 RP – Ruel Jul 11 '12 at 2:48

1 Answer

It works for me. It must have something to do with the DNS servers you are using. (Mine is Google's - 8.8.8.8/8.8.4.4)

>>> import httplib,urllib2
>>> httplib.HTTPConnection.debuglevel = 1
>>> request = urllib2.Request("http://75418.zumba.com")
>>> request.add_header("Accept", "text/html,*/*")
>>> request.add_header("Connection", "Keep-Alive")
>>> request.add_header( 'Referer', "http://75418.zumba.com" )
>>> opener = urllib2.build_opener()
>>> print f.url
https://www.zumba.com/en-US/profiles/75418/
share|improve this answer
Thank you guys. Could you direct me to check DNS? – user1516432 Jul 11 '12 at 3:02
if you are using Linux - sudo vi /etc/resolv.conf – Mayur Jul 11 '12 at 5:11
Go to the Properties of your Network Connection. Choose the IPv4 Settings, then click on Properties button. – Ruel Jul 11 '12 at 11:09

Your Answer

 
discard

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

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