[]websocket连接, ws 时没问题,改成 wss 没反应

我完全按官网文档的示例,连接 ws 时没任何问题,但是改用 wss 时没任何反应。
请问是哪里的问题?应该怎么改?或者哪里有连接 wss 的代码片段?谢谢!

    this.byte = new Laya.Byte();
    this.byte.endian = Laya.Byte.LITTLE_ENDIAN;  //这里我们采用小端
    this.socket = new Laya.Socket();
    this.socket.endian = Laya.Byte.LITTLE_ENDIAN;  //这里我们采用小端
    //建立连接
    this.socket.connectByUrl("wss://192.168.1.250:5000/websocket/");
    this.socket.on(Laya.Event.OPEN, this, this.openHandler);
    this.socket.on(Laya.Event.MESSAGE, this, this.receiveHandler);
    this.socket.on(Laya.Event.CLOSE, this, this.closeHandler);
    this.socket.on(Laya.Event.ERROR, this, this.errorHandler);

private openHandler(event: any = null): void 
{
    //正确建立连接;
    this.gameInfo.info("Connected !");  // 显示已经连接
}
已邀请:

王大发

赞同来自:

必须要用域名访问,并且服务器上要安装好相应的安全证书。

Aar0n

赞同来自:

更新至最新版native1.0.x 或 native2.0.x 即可连接wss

该问题目前已经被锁定, 无法添加新回复

商务合作
商务合作