我已经成功配置了我的 Azure IoT 开发工具包 MXChip,并且能够将数据发送到 IoT 中心。我还创建了一个逻辑应用程序,其中包含一个路由器,用于在温度高于预期时接收邮件,并创建一个 SQL 服务器来保存流分析作业数据。基本上,我按照教程进行操作,到目前为止,一切正常,现在我正在创建一个模拟器设备,我可以在其中模拟本教程中提到的事件。但是每当我运行应用程序时,我总是会收到如下错误。
Microsoft.Azure.Devices.Client.Exceptions.UnauthorizedException:“连接失败:拒绝未授权”
虽然我知道这是一个身份验证问题,但我不确定我在这里缺少什么,并且我已经更改了我的 Hub Uri 和设备密钥,如教程中所述。
private readonly static string s_iotHubUri = "";
// This is the primary key for the device. This is in the portal.
// Find your IoT hub in the portal > IoT devices > select your device > copy the key.
private readonly static string s_deviceKey = "";