Bạn nào có code mẫu về react native + https + ssl + socket io. Kết nối với https server bỏ đi chứng thực ssl được không?
Mình làm thử rồi mà nó không phải hồi gì hết
const connectionOptions = {
jsonp : false,
secure : true,
transports: ['websocket']
};
socketCon.on('connect', () => {
console.log(socket.id); // 'G5p5...'
});
this.socket = io("https://192.168.1.2:8080", connectionOptions)
console.log(this.socket.id); // undefined
this.socket.on('connect', () => {
console.log(socket.id); // 'G5p5...'
});