我正在使用以下代码使用MQTT协议连接到云,但是我不知道如何使用SSL \ TLS属性进行连接。
var mqtt = require('mqtt');
var options = {
port: 8083,
host: 'wss://ovs.kontakt.io',
clientId: 'mqttjs_' + Math.random().toString(16).substr(2, 8),
username: 'test',
password: '*******',
rejectUnauthorized: false
};
var client = mqtt.connect('wss://ovs.kontakt.io', options);
client.on('connect', function() { // When connected
console.log('connected');
// subscribe to a topic
// publish a message to a topic
});
client.on('error', function(err) {
console.log(err);
});
答案 0 :(得分:0)
从doc看,kontakt似乎不支持Websocket上的MQTT。
将连接行中的URI更改为以mqtts://
而非wss://
开头
var client = mqtt.connect('mqtts://ovs.kontakt.io', options);