gpt4 book ai didi

azure - 从自定义终结点读取 Azure IoT 中心消息

转载 作者:行者123 更新时间:2023-12-03 02:55:58 25 4
gpt4 key购买 nike

按照 instruction 进行操作使用以下代码:

const { EventHubClient } = require('@azure/event-hubs');

async function main() {
const client = await EventHubClient.createFromIotHubConnectionString(process.env["IOTHUB_CONNECTION_STRING"]);
const hubInfo = await client.getHubRuntimeInformation();
console.log(hubInfo);
await client.close();
}

main().catch((err) => {
console.log(err);
});

我可以从内置端点读取 Azure IoT 中心消息。但是,当我将消息路由到自定义终结点(例如 Azure 存储容器、事件中心)时,我无法再读取该消息。

是否有任何工具或 SDK 可以帮助我读取到达 IoT 中心的所有消息,无论消息将路由到何处?

最佳答案

请注意,一旦创建了路由,数据就会停止流向内置端点,除非创建了到该端点的路由。

这是一个Device Explorer tool ,我们可以用来监控来自您设备的消息,并向您的设备发送消息

如果您想读取到达 IoT Hub 的所有消息,无论消息将路由到何处,只需将内置端点添加到路由中,然后您就可以使用该工具监控数据。 Device Explorer

关于azure - 从自定义终结点读取 Azure IoT 中心消息,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52810051/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com