【发布时间】:2017-04-21 00:02:51
【问题描述】:
Azure IoT 中心是否支持 CoAP 协议?我只找到了像 this one 这样的外部参考,但在他们的网站上没有。
【问题讨论】:
标签: azure iot azure-iot-hub
Azure IoT 中心是否支持 CoAP 协议?我只找到了像 this one 这样的外部参考,但在他们的网站上没有。
【问题讨论】:
标签: azure iot azure-iot-hub
就像@Rajan Bhayana 所说,Azure IoT Hub 本身不支持 CoAP。
也许您可以通过以下方式扩展 IoT Hub 以提供对 CoAP 协议的支持:
- 使用Azure IoT Gateway SDK 创建一个现场网关,将您的自定义协议转换为可理解的三种协议之一 物联网中心。
- 自定义Azure IoT protocol gateway,这是一个在云中运行的开源组件。
【讨论】:
Azure IoT Hub 原生支持通过 MQTT、AMQP 和 HTTP 协议进行通信。
更多: https://docs.microsoft.com/en-us/azure/iot-hub/iot-hub-protocol-gateway
【讨论】: