我看不到WebHookType的任何示例或文档。在UI中,我可以将其设置为“Not a WebHook”,并希望在functions.js中执行此操作,所有示例似乎都是“genericJson”。
"webHookType": "genericJson"
答案 0 :(得分:1)
好的,所以我进入了Azure功能的功能应用程序设置,然后转到应用程序服务设置,然后打开工具并转到Kudu。我可以导航到functions.js文件,看看文件看起来是什么。
{
"bindings": [
{
"webHookType": "",
"type": "httpTrigger",
"direction": "in",
"name": "req"
},
{
"type": "http",
"direction": "out",
"name": "res"
}
],
"disabled": false
}