我正在使用python为elgg编写REST客户端,即使请求成功,我也会得到以下响应:

Traceback (most recent call last):
  File "testclient.py", line 94, in <module>
    result = sendMessage(token, h1)
  File "testclient.py", line 46, in sendMessage
    res = h1.getresponse().read()
  File "C:\Python25\lib\httplib.py", line 918, in getresponse
    raise ResponseNotReady()
httplib.ResponseNotReady

看着标题,我看到了('content-length','5749'),所以我知道那里有一个页面,但是由于出现异常,所以我无法使用.read()来查看它。 ResponseNotReady是什么意思,为什么我看不到返回的内容?

最佳答案

确保不重用先前连接中的同一对象。服务器保持 Activity 状态结束并且套接字关闭后,您将点击此按钮。

09-18 00:43