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'm getting this error:

socket.error: [Errno 54] Connection reset by peer

All I'm trying to do is the following in python:

data = urllib.urlencode(values)
req = urllib2.Request(url, data)
response = urllib2.urlopen(req)
id = response.read()

Some previous related questions suggested using time.sleep to fiddle with the threads. I didn't have any success with that, but would appreciate any suggestions.

share|improve this question
1  
Often "connection reset by peer" means that the target machine has a firewall that is actively blocking access to that port number. Are you sure you have the right port number (e.g. if it's not the default of port 80)? – ewall Jul 16 '10 at 20:20
Have you tried the url value in a browser (or wget, or...) to see if you can access the page from your test system? – Al G Jul 16 '10 at 20:23

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.