错误索引方法 FunctionName 未解析为值
Error indexing method FunctionName does not resolve to a value
有谁知道我为什么会收到此错误?
这是我的 SendGrid 输出绑定:
{
"bindings": [
{
"name": "docId",
"type": "queueTrigger",
"direction": "in",
"queueName": "movedocument",
"connection": "cpoffice365_STORAGE"
},
{
"type": "sendGrid",
"name": "message",
"apiKey": "<MYSENDGRIDKEY>",
"from": "<MYFROMEMAIL>",
"direction": "out"
}
],
"disabled": false
}
我的代码可以编译,但随后会在日志中抛出此错误:
Microsoft.Azure.WebJobs.Host: Error indexing method 'Functions.<MYFUNCTIONAME>'. Microsoft.Azure.WebJobs.Host: '<MYSENDGRIDKEY>' does not resolve to a value.
状态,
请确保您定义的应用设置(函数应用设置 > 应用设置)的名称与您用于绑定配置的名称相匹配,其中值是您的 Sendgrid 键。
绑定配置要求它是一个应用程序设置名称,而不是实际的密钥。
谢谢!
有谁知道我为什么会收到此错误? 这是我的 SendGrid 输出绑定:
{
"bindings": [
{
"name": "docId",
"type": "queueTrigger",
"direction": "in",
"queueName": "movedocument",
"connection": "cpoffice365_STORAGE"
},
{
"type": "sendGrid",
"name": "message",
"apiKey": "<MYSENDGRIDKEY>",
"from": "<MYFROMEMAIL>",
"direction": "out"
}
],
"disabled": false
}
我的代码可以编译,但随后会在日志中抛出此错误:
Microsoft.Azure.WebJobs.Host: Error indexing method 'Functions.<MYFUNCTIONAME>'. Microsoft.Azure.WebJobs.Host: '<MYSENDGRIDKEY>' does not resolve to a value.
状态,
请确保您定义的应用设置(函数应用设置 > 应用设置)的名称与您用于绑定配置的名称相匹配,其中值是您的 Sendgrid 键。
绑定配置要求它是一个应用程序设置名称,而不是实际的密钥。
谢谢!