我正在尝试通过Swift连接到ios上使用的mqtt服务器。 我尝试使用通过CocoaPods安装的SwiftMQTT。
mqttSession = MQTTSession(
host: "url",
port: 3004,
clientID: "101",
cleanSession: true,
keepAlive: 30,
useSSL: false
)
mqttSession.connect { error in
if error == .none {
print("Connected!")
} else {
print("DAAAMN")
print(error.description)
}
}
但是,连接时出现以下错误:
SocketStream写错误[0x60400016d080]:1 32
关于如何解决此问题的任何建议,或用于连接的替代方法?我只需要订阅功能。