3

I'm little confused by using Azure IoT Hub. I can't figure out how is it possible to trigger api function of sending push notifications for iOS/Android stored on Azure by IoT device using IoT Hub?

Any help would be appreciated!

George Trifonov
  • 1,971
  • 17
  • 20
Dmitriy Stupivtsev
  • 832
  • 1
  • 8
  • 17

1 Answers1

3

Azure IoT Hub has an Event Hub endpoint which you can connect to process device messages. Once you receive a message you can utilize Azure Notification Hub to send notifications to android/iOS.

Here's a link to a tutorial on processing device to cloud messages.

Casey
  • 805
  • 4
  • 10
  • Thank you for response! Is there any tutorial of how to connect IoT Hub with Event Hub? – Dmitriy Stupivtsev Jun 26 '16 at 06:45
  • 1
    @DmitriyStupivtsev checkout the link in the answer now for a tutorial on processing messages from a device. – Casey Jun 26 '16 at 09:05
  • Thank you, I will try this and check your answer as solution if it will be helpful. – Dmitriy Stupivtsev Jun 26 '16 at 17:09
  • steps for route data of IoT-Hub to Event hub, 1: login to your azure portal.
    2: configure IOT-HUB. 3: configure Event-HUB
    4: select own configured IOT-HUB and create devcie
    5: select End Point.
    6: Add new End point and while creating end point, please select Event-Hub.
    7: select Routes option into IOT-HUB
    8: create route fallowed by data source and end point.
    Now you have to subscript event-hub and now you are able to ingest data of IOT-HUB
    – Maneesh Singh Jul 28 '18 at 16:00