curl方式测试websocket连接
·
请求
curl -i -N -H "Connection: Upgrade" -H "Upgrade: websocket" -H "Host: 192.168.10.74" -H "Origin: http://192.168.10.74" -H "Sec-WebSocket-Key: 1" 192.168.10.74/xxx
响应
HTTP/1.1 101 Web Socket Protocol Handshake
Server: nginx
Date: Tue, 08 Apr 2025 10:20:05 GMT
Connection: upgrade
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-Content-Type-Options: nosniff
X-Frame-Options: DENY
X-XSS-Protection: 1 ; mode=block
Referrer-Policy: no-referrer
upgrade: websocket
websocket-origin: http://192.168.10.74
websocket-location: /xxx
更多推荐

所有评论(0)