报错:
Bad request for Register service. Request info(IP:127.0.0.1, Request Buffer:GET / HTTP/1.1). See http://doc2.workerman.net/register-auth-timeout.html
浏览器里报错就是
thinkphp5.1,代码都是用的示例代码,events也能触发了我看。以前我在centos部署过,但是这回我想本地调试,html连接总是失败报错1006。
websocket = new WebSocket("ws://127.0.0.1:1238");
// 连接成功建立时触发
websocket.onopen = function () {
};
// 接收到服务器消息时触发
websocket.onmessage = function (event) {
};
// 连接关闭时触发
websocket.onclose = function (event) {
console.log("onclose",event)
};
// 发生错误时触发
websocket.onerror = function (error) {
console.log("onerror",error)
};
win10,wamp,php是7.3,看了提示里的网址,端口号也换过,都不行
实在找不到办法了.感谢老大支持!!!
workerman 的ws端口8282你看下,
在看下你客户端的连接端口 1238
感谢,真的是端口弄错了