只要更改以下属性,是否有可能发送事件或通知,并且理想情况下可以将事件路由到Azure Service Bus或类似对象?
{
"tags": {
"A": "Test",
"B": true
},
"properties": {
"desired": {
"C": 1,
"D": 2,
"E": 3
}
}
}
答案 0 :(得分:2)
您的问题属于Azure IoT中心设备双胞胎服务。 正如@Roman Kiss指出的那样,您需要在 IoTHub->消息路由->自定义端点中创建一个自定义端点,您可以在其中选择服务总线队列:
image -> Custom endpoints Service Bus Queues
此后,通过选择“设备双胞胎更改事件”作为数据源和新的服务总线端点,在 IoTHub->消息路由处创建新路由:
image -> Message Routing to Service Bus endpoint
供参考: