gpt4 book ai didi

c# - 使用 Azure 事件网格和 Blob 存储

转载 作者:行者123 更新时间:2023-12-03 04:46:29 24 4
gpt4 key购买 nike

我是 Azure 事件网格和 Webhooks 的新手。

如何将我的 .net mvc Web api 应用程序绑定(bind)到 Microsoft Azure 事件网格?

简而言之,我希望,每当将新文件添加到 blob 存储时,Azure 事件网格都应该通知我的 Web api 应用程序。

我尝试了以下文章,但没有成功 https://learn.microsoft.com/en-us/azure/storage/blobs/storage-blob-event-quickstart

最佳答案

How can I bind my .net mvc web api application to Microsoft Azure Event Grid? In short I want, whenever a new file is added to blob storage, Azure Event grid should notify my web api application.

我为此做了一个演示,它在我这边工作正常。您可以引用以下步骤:

1.创建一个仅包含函数的演示RestAPI项目

 public string Post([FromBody] object value) //Post
{
return $"value:{value}";
}

2.如果我们想将Azure存储与Azure事件网格集成,我们需要创建一个blob storage account位于美国西部2美国中西部位置。更多细节可以引用屏幕截图。

enter image description here

2.创建存储帐户类型事件订阅并绑定(bind)自定义API端点

enter image description here

enter image description here

3.将 Blob 上传到 Blob 存储并从 Rest API 进行检查。

enter image description here

关于c# - 使用 Azure 事件网格和 Blob 存储,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47145799/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com