简体   繁体   中英

Cannot connect to secure socket.io server : ERR_SSL_PROTOCOL_ERROR

I'm trying to use socket.io with existing application. My application runs on https://somedomain.com . Its using this code to connect to socket io server:

 var socket = io('https://localhost:3456/');
  socket.on('connect', function () {
    socket.send('hi');

    socket.on('message', function (msg) {
      // my msg
    });
  });

My socket.io server has this code to listen to incoming connections:

var io = require('socket.io').listen(3456);

io.sockets.on('connection', function(socket) {
    console.log("dupa");
    socket.on('message', function() {});
    socket.on('disconnect', function() {});
});

dupa is never displayed on server side and in Chrome browser console I receive:

GET https://localhost:3456/socket.io/?EIO=3&transport=polling&t=1412901063154-0 net::ERR_SSL_PROTOCOL_ERROR 

How can I get this possibly working?

将 https 更改为 http

var socket = io.connect("http://localhost:4000");

Your socket server is not using SSL.

First, add the secure parameter to your client (maybe redundant with the https but SSL+socket.io does weird stuff sometimes):

var socket = io.connect('https://localhost', {secure: true});

Then, you need your socket to be secure too :

var privateKey = fs.readFileSync('YOUR SSL KEY').toString();
var certificate = fs.readFileSync('YOUR SSL CRT').toString();
var ca = fs.readFileSync('YOUR SSL CA').toString();

var io = require('socket.io').listen(3456,{key:privateKey,cert:certificate,ca:ca});

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM