标签: azure iot azureservicebus azure-iot-hub
我正在尝试在满足路由标准时将从IoT中心传入的数据发送到Service Bus。例如,如果温度水平达到某个水平。我的设备会发送JSON格式“ alert”:true。
当我将路由查询设置为$ body.alert = true时。它什么也不做,也不会路由到服务总线进行通知。
任何帮助将不胜感激。
谢谢
答案 0 :(得分:0)
尝试以下操作:
message.ContentType = "application/json"; message.ContentEncoding = "utf-8";
查看更多详细信息here