Azure Functions - how to set up IoTHubTrigger for my IoTHub messages?

纵然是瞬间 提交于 2020-01-11 05:43:08

问题


How do I setup and configure an IoTHubTrigger correctly to trigger an Azure Function (C#) for my IoTHub messages? Where and how do I plug in my IoTHub's connection string?


回答1:


Steps using Visual Studio 2017:

  1. First make sure you have the latest version of the Azure Functions and Web Jobs Tools

  1. Go to File->New->Project->Azure Functions and select "IoT Hub Trigger"

  2. Select Functions V1 or V2 (learn about there differences here). And enter an arbitrary name that will serve as key for your connection string configuration.

  3. Open local.settings.json and enter a key/value pair for your connection string:

{
    "IsEncrypted": false,
    "Values": {
        "AzureWebJobsStorage": "UseDevelopmentStorage=true",
        "AzureWebJobsDashboard": "UseDevelopmentStorage=true",
        "ConnectionString":  "<your connection string>"
    }
}

IMPORTANT

If using Functions V1, use your IoTHub connection string obtained in the portal from here:

If using Functions V2, use your IoTHub's EventHub compatible endpoint obtained in the portal from here:

  1. Now set a breakpoint in your function and hit F5. You will see your messages flowing from IoTHub to your Azure Function (assuming you have devices or simulators connected that are sending data)

Steps using the Azure Portal

  1. Create a new Function App resource and select the EventHub Trigger template

  2. Hit "New" for EventHub Connection and select IotHub and your desired hub

  3. Edit and save your function code - you are now up and running!

  4. Switch to "Monitor" see your events flowing in

More options to create IoTHub Trigger Azure Functions

a) Using VS Code with the Azure Functions Extension
b) From the command line using Azure Functions Core Tools



来源:https://stackoverflow.com/questions/52743156/azure-functions-how-to-set-up-iothubtrigger-for-my-iothub-messages

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!