我正在尝试使用 Microsoft Azure IOT Hub 来演示将我的设备连接到 IOT Hub 并使用 mqtt 协议发送消息。我有一个帐户并根据需要创建了带有 TTL 的设备和 SAS。我正在使用 microsoft azure 提供的 java 客户端 SDK 进行连接,但我的连接未经授权。我已按照以下 URL 中给出的所有步骤进行操作: https ://azure.microsoft.com/en-us/documentation/articles/iot-hub-mqtt-support/ 请在这方面帮助我。我的日志如下:
日志:
MqttIotHubConnection.open() connectionOptions=
============== Connection options ==============
CleanSession : false
SocketFactory : null
MqttVersion : 4
KeepAliveInterval : 20
ConTimeout : 30
UserName : PCSIOTHub.azure-devices.net/MQ...
SSLProperties : null
WillDestination : null
Exception in thread "main" java.io.IOException: Error initializing MQTT connection:Not authorized to connect
at com.microsoft.azure.iothub.transport.mqtt.MqttIotHubConnection.open(MqttIotHubConnection.java:142)
at com.microsoft.azure.iothub.transport.mqtt.MqttTransport.open(MqttTransport.java:83)
at com.microsoft.azure.iothub.DeviceClient.open(DeviceClient.java:163)
at samples.com.microsoft.azure.iothub.SendReceive.main(SendReceive.java:210)