【问题标题】:python httplib timeout to localhostpython httplib超时到本地主机
【发布时间】:2011-04-18 14:09:21
【问题描述】:

我有一个本地服务器在端口 6868 上运行。从技术上讲,它是使用 express 构建的 node.js 驱动的微型站点。它实际上有一个“/push”控制器读取一些数据并写入控制台(+ 一些特定的与问题无关的操作)。

使用 curl 时

h100:~ eugenemirotin$ curl -i http://127.0.0.1:6868/push -d password=pwd
HTTP/1.1 200 OK
X-Powered-By: Express
Connection: keep-alive
Transfer-Encoding: chunked

并且 node.js 会按预期进行控制台。

使用python和httplib时:

h100:~ eugenemirotin$ python
Python 2.7.1 (r271:86832, Jan  6 2011, 00:55:07) 
[GCC 4.2.1 (Apple Inc. build 5664)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import httplib, urllib
>>> params = {'password': 'pwd', 'type': 'msg', 'channel': 'chat', 'client_id': '', 'body': {'text': 'test test'}}
>>> params
{'body': {'text': 'test test'}, 'password': 'pwd', 'type': 'msg', 'client_id': '', 'channel': 'chat'}
>>> params = urllib.urlencode(params)
>>> params
'body=%7B%27text%27%3A+%27test+test%27%7D&password=pwd&type=msg&client_id=&channel=chat'
>>> conn = httplib.HTTPConnection('http://127.0.0.1:6868')
>>> conn.request("POST", "/push", params)
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File    "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/httplib.py", line 941, in request
    self._send_request(method, url, body, headers)
  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/httplib.py", line 975, in _send_request
    self.endheaders(body)
  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/httplib.py", line 937, in endheaders
    self._send_output(message_body)
  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/httplib.py", line 797, in _send_output
    self.send(msg)
  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/httplib.py", line 759, in send
    self.connect()
  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/httplib.py", line 740, in connect
    self.timeout, self.source_address)
  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/socket.py", line 571, in create_connection
    raise err
socket.error: [Errno 60] Operation timed out
>>> quit()

参数的差异并不重要 - 请求甚至没有到达 node.js 服务器。

是 httplib 的 bug,还是我做错了什么?

【问题讨论】:

    标签: python node.js timeout httplib


    【解决方案1】:

    从地址中删除http://

    这个:

    conn = httplib.HTTPConnection('http://127.0.0.1:6868')
    

    应该是:

    conn = httplib.HTTPConnection('127.0.0.1:6868')
    

    【讨论】:

      【解决方案2】:

      你可以大大简化你的代码:

      import urllib, urllib2
      params = {'password': 'pwd', 'type': 'msg', 'channel': 'chat', 'client_id': '', 'body': {'text': 'test test'}}    
      params = urllib.urlencode(params)
      res = urllib2.urlopen('http://127.0.0.1:6868/push/', params)
      data = res.read()
      res.close()
      

      【讨论】:

      • @Guard:不,它不会,它会执行 POST。阅读文档:the HTTP request will be a POST instead of a GET when the data parameter is provided
      猜你喜欢
      • 2020-12-18
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2011-03-09
      • 2019-03-19
      • 2011-08-13
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多