如何正确设置和配置IoTHubTrigger以触发IoTHub消息的Azure功能(C#)?我在哪里以及如何插入IoTHub的连接字符串?
最佳答案
使用Visual Studio 2017的步骤:
{
"IsEncrypted": false,
"Values": {
"AzureWebJobsStorage": "UseDevelopmentStorage=true",
"AzureWebJobsDashboard": "UseDevelopmentStorage=true",
"ConnectionString": "<your connection string>"
}
}
重要
如果使用功能V1,请使用从门户网站从此处获得的IoTHub连接字符串:
如果使用Functions V2,请使用从门户网站从此处获得的与IoTHub兼容的EventHub端点:
使用Azure门户的步骤
创建IoTHub触发Azure函数的更多选项
a)将VS Code与Azure Functions Extension一起使用
b)从命令行使用Azure Functions Core Tools