使用的tornado版本为4.0+
后台:
PS D:\CodeHouse\tornado\websocket> python .\ws_app.py
WARNING:tornado.access:403 GET /ws (::1) 1.00ms
WARNING:tornado.access:403 GET /ws (::1) 1.00ms
前台:
WebSocket connection to ‘ws://localhost:8080/ws‘ failed: Error during WebSocket handshake: Unexpected response code: 403
修改方法:
针对websocket处理类重写同源检查的方法:
class WebSocketHandler(tornado.websocket.WebSocketHandler): def check_origin(self, origin): return True ....
这个据说是tornado 4.0版本以后新增加的一个特性。
本文出自 “orangleliu笔记本”博客,转载请务必保留此出处http://blog.csdn.net/orangleliu/article/details/42008423
作者orangleliu 采用署名-非商业性使用-相同方式共享协议
时间: 2024-10-07 13:30:57