Reputation: 412
Does the Azure IoT Hub support the CoAP protocol? I've only found external references like this one but nothing on their website.
Upvotes: 2
Views: 3584
Reputation: 9700
Like @Rajan Bhayana said, CoAP is not supported by Azure IoT Hub natively.
Maybe you can extend IoT Hub to provide support for CoAP protocol by:
- Creating a field gateway with the Azure IoT Gateway SDK that converts your custom protocol to one of the three protocols understood by IoT Hub.
- Customizing the Azure IoT protocol gateway, an open source component that runs in the cloud.
Upvotes: 4
Reputation: 155
Azure IoT Hub natively supports communication over the MQTT, AMQP, and HTTP protocols.
more here: https://learn.microsoft.com/en-us/azure/iot-hub/iot-hub-protocol-gateway
Upvotes: 3