I have a NodeJS
app that can successfully send data to the Azure IoT Hub
, which in turn sends the data to the Azure Blob Storage
.
That all works fine.
I can also manually send a message with the Message to device
tool of the Azure Devices
portal and I can receive this message in my NodeJS app.
What I want to do now, is to send a confirmation message back to the NodeJS app when the blob has been created or deleted.
Can someone please guide me on how to do that? There is little information out there to send messages back to the Azure Client
.
I see that I can create a subscription to the Azure Blob Storage
but I don't know how to hook it up to the Azure IoT Hub
.
Cheers