python的httplib注意事项

httplib注意事项
1.使用httplib进行post请求时遇到错误:

Exception happened during processing of request from ('192.168.8.23', 58164)
Traceback (most recent call last):
  File "C:\Python27\lib\SocketServer.py", line 284, in _handle_request_noblock
    self.process_request(request, client_address)
  File "C:\Python27\lib\SocketServer.py", line 310, in process_request
    self.finish_request(request, client_address)
  File "C:\Python27\lib\SocketServer.py", line 323, in finish_request
    self.RequestHandlerClass(request, client_address, self)
  File "d:\svn dir\pms\trunk\eggs\django-1.3.1-py2.7.egg\django\core\servers\bas
ehttp.py", line 570, in __init__
    BaseHTTPRequestHandler.__init__(self, *args, **kwargs)
  File "C:\Python27\lib\SocketServer.py", line 640, in __init__
    self.finish()
  File "C:\Python27\lib\SocketServer.py", line 693, in finish
    self.wfile.flush()
  File "C:\Python27\lib\socket.py", line 303, in flush
    self._sock.sendall(view[write_offset:write_offset+buffer_size])
error: [Errno 10053]


 

错误原因是url的问题:

        conn = httplib.HTTPConnection(ip,8080,timeout=20)
        conn.request(method='post',url='/npm',body=simplejson.dumps(list(data)),headers = {'Content-Type': 

'application/json'})
        response = conn.getresponse()
        conn.close()



这个url在我的应用里找不到,我的应用中的地址是/npm/,没有这个斜杠会导致请求重定向。post请求就报错了,get请求却不会受影响。

转载于:https://www.cnblogs.com/chenjianhong/archive/2013/05/06/4144794.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值