我无法在Azure事件网格中添加新的WebHook订阅。有人可以帮忙吗?添加webhook端点时出现以下错误。
{
"status": "Failed",
"error": {
"code": "ResourceDeploymentFailure",
"message": "The resource operation completed with terminal provisioning state 'Failed'.",
"details": [
{
"code": "Url validation",
"message": "The attempt to validate the provided endpoint https://webapplication120180427035159.azurewebsites.net/api/values?id=AMif5RXS+Bs0bgsbHnNP8RUcn8ZacH8ETUzHXZ5YlNM= failed. For more details, visit https://aka.ms/esvalidation."
}
]
}
最佳答案
在Azure事件网格中注册Webhook时,您的代码必须处理validation call。您可以按照this sample显示如何接收验证码并回信以确保订阅者已正确注册。
目前,这是通过处理所有常规(非验证)事件的代码执行验证的唯一方法。
如果使用的是Azure Functions,则可以使用 EventGridTrigger
而不是HttpTrigger
。它将为您处理validation handshake,而您的Function仅专注于“正常”事件。
关于azure - 无法将Webhook订阅添加到Azure事件网格,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/50102988/