(Feed on Azure Artifacts private)
Azure Functions Custom Bindings for MS Teams.
- add Incoming Webhook and get webhook url. See official document.
more detail: my blog post
Functions App use environment valiable "TeamsWebhookUri", so need to set it.
- add
local.settings.json
file. - add following json
{
"IsEncrypted": false,
"Values": {
"AzureWebJobsStorage": "UseDevelopmentStorage=true",
"FUNCTIONS_WORKER_RUNTIME": "dotnet",
"TeamsWebhookUri": "<teams webhook url !!!! >"
}
}
- Set "TeamsWebhookUri" key and value to Application settings.
WIP: add description
WIP: add description