我正在使用每 X 分钟执行一次的 Azure 函数(定时器触发函数)。我已经使用 BotFramework 制作了一个机器人,并且我希望每 x 分钟触发一次 azure 函数。当它被触发时,我的机器人必须得到通知。
我有一个输出 Bot Framework :
这是我的 JSON 文件:
{
"bindings": [
{
"name": "myTimer",
"type": "timerTrigger",
"direction": "in",
"schedule": "0 */1 * * * *"
},
{
"type": "bot",
"name": "message",
"botId": "Azurefunction",
"secret": "h3VkHcc_PXU.cwA.XXXXXX.XXXXXXXX-XXX",
"direction": "out"
}
],
"disabled": false
}
我的功能是:
using System;
using System.Net;
using System.Net.Http;
using Microsoft.Azure.WebJobs.Host;
public class BotMessage
{
public string Source { get; set; }
public string Message { get; set; }
}
public static BotMessage Run(TimerInfo myTimer ,TraceWriter log)
{
BotMessage message = new BotMessage()
{
Source = "AzureFunction",
Message = "Testing"
};
return message;
}
我仍然有一个警告,我不知道为什么(可能是问题所在)...警告 AF004:缺少名为“消息”的绑定参数。不匹配的绑定参数名称可能会导致函数索引错误。
有了这些东西,Azure 功能运行良好,但似乎我的机器人没有收到通知。我忘了什么吗?
2017-03-03T13:05:00.001 Function started (Id=a5be778e-da6d-4957-a7b5-d9c8f58bd396)
2017-03-03T13:05:00.001 Function completed (Success, Id=a5be778e-da6d-4957-a7b5-d9c8f58bd396)
感谢您的阅读。